Custom Post Type UI - Version 1.2.0

Version Description

  • Added: Support for show_in_nav_menus parameter for post types.
  • Added: Support for taxonomy descriptions.
  • Added: Message on listings page if no post types or taxonomies are available.
  • Added: Note regarding 'public' parameter not being true by default for WordPress but is for CPTUI.
  • Added: Individual post type and taxonomy output for "Get Code" area.
  • Added: Fallback values for post type/taxonomy select input and get code area if no plural label provided.
  • Added: Support for custom query_var strings for post types.
  • Added: Support for show_in_rest and rest_base for post types and taxonomies for the upcoming WordPress REST API.
  • Added: Template hierarchy files to listings tables for user reference.
  • Added: Form labels in more areas to help with accessibility and usability.
  • Added: Fieldset method to Admin UI class for easily adding fieldset output.
  • Added: Debugging tab for use with CPTUI support.
  • Updated: Minimum version required. Now WordPress 4.2.
  • Updated: Heading tags match accessibility changes in WordPress 4.3.
  • Updated: Moved page title for some pages above tabs.
  • Updated: Textdomain now matches WordPress.org repo slug.
  • Updated: Added Visual Composer questions/answers to support section.
  • Updated: Added question/answer regarding spaces in post type slugs
  • Updated: Changed help icons to a Dashicon help icon.
  • Fixed: Support for YARPP plugin.
  • Fixed: Prevent potential issues with AJAX requests and our scripts/styles
Download this release

Release Info

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

Code changes from version 1.1.3 to 1.2.0

classes/class.cptui_admin_ui.php CHANGED
@@ -11,7 +11,7 @@ class cptui_admin_ui {
11
  /**
12
  * Return an opening <tr> tag.
13
  *
14
- * @since 1.0
15
  *
16
  * @return string $value Opening <tr> tag with attributes.
17
  */
@@ -22,7 +22,7 @@ class cptui_admin_ui {
22
  /**
23
  * Return a closing </tr> tag.
24
  *
25
- * @since 1.0
26
  *
27
  * @return string $value Closing </tr> tag.
28
  */
@@ -33,7 +33,7 @@ class cptui_admin_ui {
33
  /**
34
  * Return an opening <th> tag.
35
  *
36
- * @since 1.0
37
  *
38
  * @return string $value Opening <th> tag with attributes.
39
  */
@@ -44,7 +44,7 @@ class cptui_admin_ui {
44
  /**
45
  * Return a closing </th> tag.
46
  *
47
- * @since 1.0
48
  *
49
  * @return string $value Closing </th> tag.
50
  */
@@ -55,7 +55,7 @@ class cptui_admin_ui {
55
  /**
56
  * Return an opening <td> tag.
57
  *
58
- * @since 1.0
59
  *
60
  * @return string $value Opening <td> tag.
61
  */
@@ -66,7 +66,7 @@ class cptui_admin_ui {
66
  /**
67
  * Return a closing </td> tag.
68
  *
69
- * @since 1.0
70
  *
71
  * @return string $value Closing </td> tag.
72
  */
@@ -74,13 +74,34 @@ class cptui_admin_ui {
74
  return '</td>';
75
  }
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  /**
78
  * Return string wrapped in a <p> tag.
79
  *
80
- * @since 1.0
81
  *
82
  * @param string $text Content to wrap in a <p> tag.
83
- *
84
  * @return string $value Content wrapped in a <p> tag.
85
  */
86
  public function get_p( $text = '' ) {
@@ -90,11 +111,10 @@ class cptui_admin_ui {
90
  /**
91
  * Return a form <label> with for attribute.
92
  *
93
- * @since 1.0
94
  *
95
  * @param string $label_for Form input to associate <label> with.
96
  * @param string $label_text Text to display in the <label> tag.
97
- *
98
  * @return string $value <label> tag with filled out parts.
99
  */
100
  public function get_label( $label_for = '', $label_text = '' ) {
@@ -104,7 +124,7 @@ class cptui_admin_ui {
104
  /**
105
  * Return a <span> to indicate required status, with class attribute.
106
  *
107
- * @since 1.0
108
  *
109
  * @return string span tag.
110
  */
@@ -115,21 +135,21 @@ class cptui_admin_ui {
115
  /**
116
  * Return an <a> tag with title attribute holding help text.
117
  *
118
- * @since 1.0
119
  *
120
  * @param string $help_text Text to use in the title attribute.
121
- *
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
  /**
129
  * Return a maxlength HTML attribute with a specified length.
130
  *
131
- * @param string $length How many characters the max length should be set to.
132
  *
 
133
  * @return string $value Maxlength HTML attribute.
134
  */
135
  public function get_maxlength( $length = '' ) {
@@ -139,8 +159,9 @@ class cptui_admin_ui {
139
  /**
140
  * Return a onblur HTML attribute for a specified value.
141
  *
142
- * @param string $text Text to place in the onblur attribute.
143
  *
 
144
  * @return string $value Onblur HTML attribute.
145
  */
146
  public function get_onblur( $text = '' ) {
@@ -150,10 +171,9 @@ class cptui_admin_ui {
150
  /**
151
  * Return a populated <select> input.
152
  *
153
- * @since 1.0
154
  *
155
  * @param array $args Arguments to use with the <select> input.
156
- *
157
  * @return string $value Complete <select> input with options and selected attribute.
158
  */
159
  public function get_select_input( $args = array() ) {
@@ -219,10 +239,9 @@ class cptui_admin_ui {
219
  /**
220
  * Return a text input.
221
  *
222
- * @since 1.0
223
  *
224
  * @param array $args Arguments to use with the text input.
225
- *
226
  * @return string Complete text <input> with proper attributes.
227
  */
228
  public function get_text_input( $args = array() ) {
@@ -278,10 +297,9 @@ class cptui_admin_ui {
278
  /**
279
  * Return a <textarea> input.
280
  *
281
- * @since 1.0
282
  *
283
  * @param array $args Arguments to use with the textarea input.
284
- *
285
  * @return string $value Complete <textarea> input with proper attributes.
286
  */
287
  public function get_textarea_input( $args = array() ) {
@@ -321,10 +339,9 @@ class cptui_admin_ui {
321
  /**
322
  * Return a checkbox <input>.
323
  *
324
- * @since 1.0
325
  *
326
  * @param array $args Arguments to use with the checkbox input.
327
- *
328
  * @return string $value Complete checkbox <input> with proper attributes.
329
  */
330
  public function get_check_input( $args = array() ) {
@@ -369,10 +386,9 @@ class cptui_admin_ui {
369
  /**
370
  * Return some array_merged default arguments for all input types.
371
  *
372
- * @since 1.0
373
  *
374
  * @param array $additions Arguments array to merge with our defaults.
375
- *
376
  * @return array $value Merged arrays for our default parameters.
377
  */
378
  public function get_default_input_parameters( $additions = array() ) {
11
  /**
12
  * Return an opening <tr> tag.
13
  *
14
+ * @since 1.0.0
15
  *
16
  * @return string $value Opening <tr> tag with attributes.
17
  */
22
  /**
23
  * Return a closing </tr> tag.
24
  *
25
+ * @since 1.0.0
26
  *
27
  * @return string $value Closing </tr> tag.
28
  */
33
  /**
34
  * Return an opening <th> tag.
35
  *
36
+ * @since 1.0.0
37
  *
38
  * @return string $value Opening <th> tag with attributes.
39
  */
44
  /**
45
  * Return a closing </th> tag.
46
  *
47
+ * @since 1.0.0
48
  *
49
  * @return string $value Closing </th> tag.
50
  */
55
  /**
56
  * Return an opening <td> tag.
57
  *
58
+ * @since 1.0.0
59
  *
60
  * @return string $value Opening <td> tag.
61
  */
66
  /**
67
  * Return a closing </td> tag.
68
  *
69
+ * @since 1.0.0
70
  *
71
  * @return string $value Closing </td> tag.
72
  */
74
  return '</td>';
75
  }
76
 
77
+ /**
78
+ * Return an opening <fieldset> tag.
79
+ *
80
+ * @since 1.2.0
81
+ *
82
+ * @return string $value Opening <fieldset> tag.
83
+ */
84
+ public function get_fieldset_start() {
85
+ return '<fieldset>';
86
+ }
87
+
88
+ /**
89
+ * Return an closing <fieldset> tag.
90
+ *
91
+ * @since 1.2.0
92
+ *
93
+ * @return string $value Closing <fieldset> tag.
94
+ */
95
+ public function get_fieldset_end() {
96
+ return '</fieldset>';
97
+ }
98
+
99
  /**
100
  * Return string wrapped in a <p> tag.
101
  *
102
+ * @since 1.0.0
103
  *
104
  * @param string $text Content to wrap in a <p> tag.
 
105
  * @return string $value Content wrapped in a <p> tag.
106
  */
107
  public function get_p( $text = '' ) {
111
  /**
112
  * Return a form <label> with for attribute.
113
  *
114
+ * @since 1.0.0
115
  *
116
  * @param string $label_for Form input to associate <label> with.
117
  * @param string $label_text Text to display in the <label> tag.
 
118
  * @return string $value <label> tag with filled out parts.
119
  */
120
  public function get_label( $label_for = '', $label_text = '' ) {
124
  /**
125
  * Return a <span> to indicate required status, with class attribute.
126
  *
127
+ * @since 1.0.0
128
  *
129
  * @return string span tag.
130
  */
135
  /**
136
  * Return an <a> tag with title attribute holding help text.
137
  *
138
+ * @since 1.0.0
139
  *
140
  * @param string $help_text Text to use in the title attribute.
 
141
  * @return string <a> tag with filled out parts.
142
  */
143
  public function get_help( $help_text = '' ) {
144
+ return '<a href="#" class="cptui-help dashicons-before dashicons-editor-help" title="' . esc_attr( $help_text ) . '"></a>';
145
  }
146
 
147
  /**
148
  * Return a maxlength HTML attribute with a specified length.
149
  *
150
+ * @since 1.0.0
151
  *
152
+ * @param string $length How many characters the max length should be set to.
153
  * @return string $value Maxlength HTML attribute.
154
  */
155
  public function get_maxlength( $length = '' ) {
159
  /**
160
  * Return a onblur HTML attribute for a specified value.
161
  *
162
+ * @since 1.0.0
163
  *
164
+ * @param string $text Text to place in the onblur attribute.
165
  * @return string $value Onblur HTML attribute.
166
  */
167
  public function get_onblur( $text = '' ) {
171
  /**
172
  * Return a populated <select> input.
173
  *
174
+ * @since 1.0.0
175
  *
176
  * @param array $args Arguments to use with the <select> input.
 
177
  * @return string $value Complete <select> input with options and selected attribute.
178
  */
179
  public function get_select_input( $args = array() ) {
239
  /**
240
  * Return a text input.
241
  *
242
+ * @since 1.0.0
243
  *
244
  * @param array $args Arguments to use with the text input.
 
245
  * @return string Complete text <input> with proper attributes.
246
  */
247
  public function get_text_input( $args = array() ) {
297
  /**
298
  * Return a <textarea> input.
299
  *
300
+ * @since 1.0.0
301
  *
302
  * @param array $args Arguments to use with the textarea input.
 
303
  * @return string $value Complete <textarea> input with proper attributes.
304
  */
305
  public function get_textarea_input( $args = array() ) {
339
  /**
340
  * Return a checkbox <input>.
341
  *
342
+ * @since 1.0.0
343
  *
344
  * @param array $args Arguments to use with the checkbox input.
 
345
  * @return string $value Complete checkbox <input> with proper attributes.
346
  */
347
  public function get_check_input( $args = array() ) {
386
  /**
387
  * Return some array_merged default arguments for all input types.
388
  *
389
+ * @since 1.0.0
390
  *
391
  * @param array $additions Arguments array to merge with our defaults.
 
392
  * @return array $value Merged arrays for our default parameters.
393
  */
394
  public function get_default_input_parameters( $additions = array() ) {
classes/class.cptui_debug_info.php ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class CPTUI_Debug_Info {
4
+
5
+ public function tab_site_info() {
6
+ ?>
7
+ <p><?php _e( 'If you have sought support for Custom Post Type UI on the forums, you may be requested to send the information below to the plugin developer. Simply insert the email they provided in the input field at the bottom and click the "Send debug info" button. Only the data below will be sent to them.', 'custom-post-type-ui' ); ?></p>
8
+ <label for="cptui_audit_textarea">
9
+ <textarea readonly="readonly" id="cptui-audit-textarea" name="cptui_audit_textarea" rows="20" cols="100">
10
+ <?php echo $this->system_status(); ?>
11
+ </textarea></label>
12
+ <?php
13
+ }
14
+
15
+ private function system_status() {
16
+ if ( ! current_user_can( 'manage_options' ) ) {
17
+ return '';
18
+ }
19
+
20
+ global $wpdb;
21
+
22
+ if ( get_bloginfo( 'version' ) < '3.4' ) {
23
+ $theme_data = get_theme_data( get_stylesheet_directory() . '/style.css' );
24
+ $theme = $theme_data['Name'] . ' ' . $theme_data['Version'];
25
+ } else {
26
+ $theme_data = wp_get_theme();
27
+ $theme = $theme_data->Name . ' ' . $theme_data->Version;
28
+ }
29
+
30
+ ob_start();
31
+ ?>
32
+
33
+ ### Begin Custom Post Type UI Debug Info ###
34
+
35
+ Multisite: <?php echo is_multisite() ? 'Yes' . "\n" : 'No' . "\n" ?>
36
+
37
+ SITE_URL: <?php echo site_url() . "\n"; ?>
38
+ HOME_URL: <?php echo home_url() . "\n"; ?>
39
+
40
+ WordPress Version: <?php echo get_bloginfo( 'version' ) . "\n"; ?>
41
+ Permalink Structure: <?php echo get_option( 'permalink_structure' ) . "\n"; ?>
42
+ Active Theme: <?php echo $theme . "\n"; ?>
43
+
44
+ Registered Post Types: <?php echo implode( ', ', get_post_types( '', 'names' ) ) . "\n"; ?>
45
+
46
+ PHP Version: <?php echo PHP_VERSION . "\n"; ?>
47
+ MySQL Version: <?php echo $wpdb->db_version() . "\n"; ?>
48
+ Web Server Info: <?php echo $_SERVER['SERVER_SOFTWARE'] . "\n"; ?>
49
+
50
+ Show On Front: <?php echo get_option( 'show_on_front' ) . "\n" ?>
51
+ Page On Front: <?php $id = get_option( 'page_on_front' );
52
+ echo get_the_title( $id ) . ' (#' . $id . ')' . "\n" ?>
53
+ Page For Posts: <?php $id = get_option( 'page_for_posts' );
54
+ echo get_the_title( $id ) . ' (#' . $id . ')' . "\n" ?>
55
+
56
+ WordPress Memory Limit: <?php echo ( $this->num_convt( WP_MEMORY_LIMIT ) / ( 1024 ) ) . "MB"; ?><?php echo "\n"; ?>
57
+
58
+ <?php
59
+ $plugins = get_plugins();
60
+ $pg_count = count( $plugins );
61
+ echo 'TOTAL PLUGINS: ' . $pg_count . "\n\n";
62
+ // MU plugins
63
+ $mu_plugins = get_mu_plugins();
64
+
65
+ if ( $mu_plugins ) :
66
+ $mu_count = count( $mu_plugins );
67
+
68
+ echo 'MU PLUGINS: (' . $mu_count . ')' . "\n\n";
69
+
70
+ foreach ( $mu_plugins as $mu_path => $mu_plugin ) {
71
+
72
+ echo $mu_plugin['Name'] . ': ' . $mu_plugin['Version'] . "\n";
73
+ }
74
+ endif;
75
+ // standard plugins - active
76
+ echo "\n";
77
+
78
+ $active = get_option( 'active_plugins', array() );
79
+ $ac_count = count( $active );
80
+ $ic_count = $pg_count - $ac_count;
81
+
82
+ echo 'ACTIVE PLUGINS: (' . $ac_count . ')' . "\n\n";
83
+
84
+ foreach ( $plugins as $plugin_path => $plugin ) {
85
+ // If the plugin isn't active, don't show it.
86
+ if ( ! in_array( $plugin_path, $active ) ) {
87
+ continue;
88
+ }
89
+
90
+ echo $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
91
+ }
92
+ // standard plugins - inactive
93
+ echo "\n";
94
+ echo 'INACTIVE PLUGINS: (' . $ic_count . ')' . "\n\n";
95
+
96
+ foreach ( $plugins as $plugin_path => $plugin ) {
97
+ // If the plugin isn't active, show it here.
98
+ if ( in_array( $plugin_path, $active ) ) {
99
+ continue;
100
+ }
101
+
102
+ echo $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
103
+ }
104
+
105
+ // if multisite, grab network as well
106
+ if ( is_multisite() ) :
107
+
108
+ $net_plugins = wp_get_active_network_plugins();
109
+ $net_active = get_site_option( 'active_sitewide_plugins', array() );
110
+
111
+ echo "\n";
112
+ echo 'NETWORK ACTIVE PLUGINS: (' . count( $net_plugins ) . ')' . "\n\n";
113
+
114
+ foreach ( $net_plugins as $plugin_path ) {
115
+ $plugin_base = plugin_basename( $plugin_path );
116
+
117
+ // If the plugin isn't active, don't show it.
118
+ if ( ! array_key_exists( $plugin_base, $net_active ) ) {
119
+ continue;
120
+ }
121
+
122
+ $plugin = get_plugin_data( $plugin_path );
123
+
124
+ echo $plugin['Name'] . ' :' . $plugin['Version'] . "\n";
125
+ }
126
+
127
+ endif;
128
+
129
+ echo "\n";
130
+ $cptui_post_types = get_option( 'cptui_post_types', array() );
131
+ echo 'Post Types: ' . "\n";
132
+ echo esc_html( json_encode( $cptui_post_types ) ) . "\n";
133
+
134
+ echo "\n\n";
135
+
136
+ $cptui_taxonomies = get_option( 'cptui_taxonomies', array() );
137
+ echo 'Taxonomies: ' . "\n";
138
+ echo esc_html( json_encode( $cptui_taxonomies ) ) . "\n";
139
+ echo "\n";
140
+ ?>
141
+ ### End Debug Info ###
142
+ <?php
143
+
144
+ return ob_get_clean();
145
+ }
146
+
147
+ /**
148
+ * helper function for number conversions
149
+ * @access public
150
+ *
151
+ * @param mixed $v
152
+ * @return int
153
+ */
154
+ public function num_convt( $v ) {
155
+ $l = substr( $v, - 1 );
156
+ $ret = substr( $v, 0, - 1 );
157
+
158
+ switch ( strtoupper( $l ) ) {
159
+ case 'P': // fall-through
160
+ case 'T': // fall-through
161
+ case 'G': // fall-through
162
+ case 'M': // fall-through
163
+ case 'K': // fall-through
164
+ $ret *= 1024;
165
+ break;
166
+ default:
167
+ break;
168
+ }
169
+
170
+ return $ret;
171
+ }
172
+
173
+ public function send_email( $args ) {
174
+
175
+ if ( ! isset( $args['email'] ) || ! is_email( $args['email'] ) ) {
176
+ return false;
177
+ }
178
+
179
+ stripslashes_deep( $args );
180
+
181
+ $args['email'] = sanitize_email( $args['email'] );
182
+
183
+ $message = $this->system_status();
184
+
185
+ $subject = sprintf(
186
+ __( 'CPTUI debug information for %s'),
187
+ home_url( '/' )
188
+ );
189
+
190
+ wp_mail( $args['email'], $subject, $message );
191
+ }
192
+ }
193
+
css/cptui.css CHANGED
@@ -1,12 +1,3 @@
1
- .cptui-help {
2
- border-radius: 50%;
3
- display: inline-block;
4
- height: 15px;
5
- margin-left: 2px;
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.outter { vertical-align: top; width: 50%; }
@@ -108,3 +99,21 @@
108
  .js #cptui_select_taxonomy input[type='submit'] {
109
  display: none;
110
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  .required { color: rgb(255,0,0); }
2
  .cptui-table #excerpt { height: 16px; margin-right: 4px; width: auto; }
3
  .cptui-table td.outter { vertical-align: top; width: 50%; }
99
  .js #cptui_select_taxonomy input[type='submit'] {
100
  display: none;
101
  }
102
+ .cptui-help {
103
+ color: #424242;
104
+ margin-left: 4px;
105
+ opacity: 0.5;
106
+ text-decoration: none;
107
+ width: 16px;
108
+ }
109
+ fieldset .cptui-help {
110
+ position: relative;
111
+ top: 4px;
112
+ }
113
+ .cptui-help:hover {
114
+ color: #0074a2;
115
+ opacity: 1;
116
+ }
117
+ .cptui-help:focus {
118
+ box-shadow: none;
119
+ }
custom-post-type-ui.php CHANGED
@@ -4,9 +4,9 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
- Version: 1.1.3
8
  Author URI: http://webdevstudios.com/
9
- Text Domain: cpt-plugin
10
  Domain Path: /languages
11
  License: GPLv2
12
  */
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  exit;
17
  }
18
 
19
- define( 'CPT_VERSION', '1.1.3' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
@@ -26,6 +26,7 @@ define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
26
  */
27
  function cptui_load_ui_class() {
28
  require_once( plugin_dir_path( __FILE__ ) . 'classes/class.cptui_admin_ui.php' );
 
29
  }
30
  add_action( 'init', 'cptui_load_ui_class' );
31
 
@@ -45,7 +46,7 @@ register_deactivation_hook( __FILE__, 'cptui_deactivation' );
45
  * @since 0.8.0
46
  */
47
  function cptui_load_textdomain() {
48
- load_plugin_textdomain( 'cpt-plugin', false, basename( dirname( __FILE__ ) ) . '/languages' );
49
  }
50
  add_action( 'init', 'cptui_load_textdomain' );
51
 
@@ -57,16 +58,16 @@ add_action( 'init', 'cptui_load_textdomain' );
57
  * @since 0.1.0
58
  */
59
  function cptui_plugin_menu() {
60
- add_menu_page( __( 'Custom Post Types', 'cpt-plugin' ), __( 'CPT UI', 'cpt-plugin' ), 'manage_options', 'cptui_main_menu', 'cptui_settings' );
61
- add_submenu_page( 'cptui_main_menu', __( 'Add/Edit Post Types', 'cpt-plugin' ), __( 'Add/Edit Post Types', 'cpt-plugin' ), 'manage_options', 'cptui_manage_post_types', 'cptui_manage_post_types' );
62
- add_submenu_page( 'cptui_main_menu', __( 'Add/Edit Taxonomies', 'cpt-plugin' ), __( 'Add/Edit Taxonomies', 'cpt-plugin' ), 'manage_options', 'cptui_manage_taxonomies', 'cptui_manage_taxonomies' );
63
- add_submenu_page( 'cptui_main_menu', __( 'Registered Types and Taxes', 'cpt-plugin' ), __( 'Registered Types/Taxes', 'cpt-plugin' ), 'manage_options', 'cptui_listings', 'cptui_listings' );
64
- add_submenu_page( 'cptui_main_menu', __( 'Import/Export', 'cpt-plugin' ), __( 'Import/Export', 'cpt-plugin' ), 'manage_options', 'cptui_importexport', 'cptui_importexport' );
65
- add_submenu_page( 'cptui_main_menu', __( 'Help/Support', 'cpt-plugin' ), __( 'Help/Support', 'cpt-plugin' ), 'manage_options', 'cptui_support', 'cptui_support' );
66
 
67
  # Remove the default one so we can add our customized version.
68
  remove_submenu_page('cptui_main_menu', 'cptui_main_menu');
69
- add_submenu_page( 'cptui_main_menu', __( 'About CPT UI', 'cpt-plugin' ), __( 'About CPT UI', 'cpt-plugin' ), 'manage_options', 'cptui_main_menu', 'cptui_settings' );
70
  }
71
  add_action( 'admin_menu', 'cptui_plugin_menu' );
72
 
@@ -85,6 +86,10 @@ function cptui_create_submenus() {
85
  add_action( 'init', 'cptui_create_submenus' );
86
 
87
  function cptui_add_styles() {
 
 
 
 
88
  wp_enqueue_style( 'cptui-css', plugins_url( 'css/cptui.css', __FILE__ ) );
89
  }
90
  add_action( 'admin_enqueue_scripts', 'cptui_add_styles' );
@@ -143,9 +148,15 @@ function cptui_register_single_post_type( $post_type = array() ) {
143
  $post_type['supports'] = array_merge( $post_type['supports'], $user_supports_params );
144
  }
145
 
 
146
  if ( ! empty( $post_type['custom_supports'] ) ) {
147
  $custom = explode( ',', $post_type['custom_supports'] );
148
  foreach( $custom as $part ) {
 
 
 
 
 
149
  $post_type['supports'][] = $part;
150
  }
151
  }
@@ -192,26 +203,46 @@ function cptui_register_single_post_type( $post_type = array() ) {
192
  if ( in_array( $post_type['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
193
  $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
194
  }
 
 
 
195
 
196
  $menu_position = null;
197
  if ( !empty( $post_type['menu_position'] ) ) {
198
  $menu_position = (int) $post_type['menu_position'];
199
  }
200
 
 
201
  if ( ! empty( $post_type['exclude_from_search'] ) ) {
202
  $exclude_from_search = get_disp_boolean( $post_type['exclude_from_search'] );
203
  } else {
204
- $public = get_disp_boolean( $post_type['public'] );
205
  $exclude_from_search = ( false === $public ) ? true : false;
206
  }
207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  $args = array(
209
  'labels' => $labels,
210
  'description' => $post_type['description'],
211
  'public' => get_disp_boolean( $post_type['public'] ),
212
  'show_ui' => get_disp_boolean( $post_type['show_ui'] ),
 
213
  'has_archive' => $has_archive,
214
  'show_in_menu' => $show_in_menu,
 
 
215
  'exclude_from_search' => $exclude_from_search,
216
  'capability_type' => $post_type['capability_type'],
217
  'map_meta_cap' => $post_type['map_meta_cap'],
@@ -224,6 +255,10 @@ function cptui_register_single_post_type( $post_type = array() ) {
224
  'taxonomies' => $post_type['taxonomies']
225
  );
226
 
 
 
 
 
227
  /**
228
  * Filters the arguments used for a post type right before registering.
229
  *
@@ -294,14 +329,22 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
294
 
295
  $show_admin_column = ( !empty( $taxonomy['show_admin_column'] ) && false !== get_disp_boolean( $taxonomy['show_admin_column'] ) ) ? true : false;
296
 
 
 
 
 
 
297
  $args = array(
298
  'labels' => $labels,
299
  'label' => $taxonomy['label'],
 
300
  'hierarchical' => get_disp_boolean( $taxonomy['hierarchical'] ),
301
  'show_ui' => get_disp_boolean( $taxonomy['show_ui'] ),
302
  'query_var' => $taxonomy['query_var'],
303
  'rewrite' => $rewrite,
304
- 'show_admin_column' => $show_admin_column
 
 
305
  );
306
 
307
  $object_type = ( !empty( $taxonomy['object_types'] ) ) ? $taxonomy['object_types'] : '';
@@ -336,57 +379,74 @@ function cptui_settings() { ?>
336
  * @since 1.0.0
337
  */
338
  do_action( 'cptui_main_page_start' ); ?>
339
- <h1><?php _e( 'Custom Post Type UI', 'cpt-plugin' ); ?> <?php echo CPT_VERSION; ?></h1>
340
 
341
  <div class="about-text cptui-about-text">
342
- <?php _e( 'Thank you for choosing Custom Post Type UI. We hope that your experience with our plugin provides efficiency and speed in creating post types and taxonomies, to better organize your content, without having to touch code.', 'cpt-plugin' ); ?>
343
  </div>
344
-
345
  <div class="changelog about-integrations">
346
  <div class="cptui-feature feature-section col three-col">
 
347
  <div>
348
- <h4><?php _e( 'Post type migration', 'cpt-plugin' ); ?></h4>
349
- <p><?php _e( 'In the past, if you changed your post type slug, you would lose immediate access to the posts in the post type and need to recover another way. We have now added support for migrating all posts within the old post type to the new post type you renamed it to.', 'cpt-plugin' ); ?></p>
350
  </div>
351
  <div>
352
- <h4><?php _e( 'UI Refinement', 'cpt-plugin' ); ?></h4>
353
- <p><?php _e( 'After receiving feedback regarding the 1.0.x changes, we have further simplified the UI to reduce the amount of clicking necessary to manage your post types and taxonomies.', 'cpt-plugin' ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  </div>
355
  <div class="last-feature">
356
- <h4><?php _e( 'Registered Post Type and Taxonomy Listings', 'cpt-plugin' ); ?></h4>
357
- <p><?php _e( 'We are bringing back the listing of all CPTUI-registered post types and taxonomies for easier quick view of what you have going.', 'cpt-plugin' ); ?></p>
358
  </div>
359
  </div>
360
  </div>
361
 
362
- <h2><?php _e( 'Help Support This Plugin!', 'cpt-plugin' ); ?></h2>
363
  <table border="0">
364
  <tr>
365
  <td class="one-third valign">
366
- <h3><?php _e( 'Professional WordPress<br />Third Edition', 'cpt-plugin' ); ?></h3>
367
  <a href="http://bit.ly/prowp3" target="_blank">
368
- <img src="<?php echo plugins_url( '/images/professional-wordpress-thirdedition.jpg', __FILE__ ); ?>" width="200">
369
  </a>
370
  <br />
371
- <p><?php _e( 'The leading book on WordPress design and development! Brand new third edition!', 'cpt-plugin' ); ?></p>
372
  </td>
373
  <td class="one-third valign">
374
- <h3><?php _e( 'Professional WordPress<br />Plugin Development', 'cpt-plugin' ); ?></h3>
375
  <a href="http://amzn.to/plugindevbook" target="_blank">
376
- <img src="<?php echo plugins_url( '/images/professional-wordpress-plugin-development.png', __FILE__ ); ?>" width="200">
377
  </a>
378
  <br />
379
- <p><?php _e( 'Highest rated WordPress development book on Amazon!', 'cpt-plugin' ); ?></p>
380
  </td>
381
  <td class="one-third valign">
382
- <h3><?php _e( 'PayPal Donation', 'cpt-plugin' ); ?></h3>
383
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
384
  <input type="hidden" name="cmd" value="_s-xclick">
385
  <input type="hidden" name="hosted_button_id" value="YJEDXPHE49Q3U">
386
- <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="<?php esc_attr_e( 'PayPal - The safer, easier way to pay online!', 'cpt-plugin' ); ?>">
387
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
388
  </form>
389
- <p><?php _e( 'Please donate to the development of Custom Post Type UI:', 'cpt-plugin' ); ?></p>
390
  </td>
391
  </tr>
392
  </table>
@@ -412,10 +472,10 @@ function cptui_footer( $original = '' ) {
412
  }
413
 
414
  return sprintf(
415
- __( '%s version %s by %s', 'cpt-plugin' ),
416
  sprintf(
417
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
418
- __( 'Custom Post Type UI', 'cpt-plugin' )
419
  ),
420
  CPT_VERSION,
421
  '<a href="http://webdevstudios.com" target="_blank">WebDevStudios</a>'
@@ -423,10 +483,10 @@ function cptui_footer( $original = '' ) {
423
  ' - '.
424
  sprintf(
425
  '<a href="https://github.com/WebDevStudios/custom-post-type-ui/issues" target="_blank">%s</a>',
426
- __( 'Please Report Bugs', 'cpt-plugin' )
427
  ).
428
  ' '.
429
- __( 'Follow on Twitter:', 'cpt-plugin' ).
430
  sprintf(
431
  ' %s &middot; %s &middot; %s',
432
  '<a href="http://twitter.com/tw2113" target="_blank">Michael</a>',
@@ -484,17 +544,17 @@ function disp_boolean( $booText ) {
484
  function cptui_settings_tab_menu( $page = 'post_types' ) {
485
 
486
  # initiate our arrays with default classes
487
- $tab1 = $tab2 = $tab3 = array( 'nav-tab' );
488
  $has = false;
489
 
490
  if ( 'importexport' == $page ) :
491
- $title = __( 'Import/Export', 'cpt-plugin' );
492
  elseif ( 'taxonomies' == $page ) :
493
- $title = __( 'Manage Taxonomies', 'cpt-plugin' );
494
  $taxes = get_option( 'cptui_taxonomies' );
495
  $has = ( !empty( $taxes ) ) ? true : false;
496
  else :
497
- $title = __( 'Manage Post Types', 'cpt-plugin' );
498
  $types = get_option( 'cptui_post_types' );
499
  $has = ( !empty( $types ) ) ? true : false;
500
  endif;
@@ -504,39 +564,42 @@ function cptui_settings_tab_menu( $page = 'post_types' ) {
504
  $tab2[] = 'nav-tab-active';
505
  } elseif ( 'get_code' == $_GET['action'] ) {
506
  $tab3[] = 'nav-tab-active';
 
 
507
  }
508
  } else {
509
  $tab1[] = 'nav-tab-active';
510
  }
511
 
512
  # implode our arrays for class attributes
513
- $tab1 = implode( ' ', $tab1 ); $tab2 = implode( ' ', $tab2 ); $tab3 = implode( ' ', $tab3 );
514
 
515
  ?>
 
516
  <h2 class="nav-tab-wrapper">
517
- <?php echo $title;
518
-
519
  # Import/Export area is getting different tabs, so we need to separate out.
520
  if ( 'importexport' != $page ) {
521
  if ( 'post_types' == $page ) {
522
  ?>
523
- <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New Post Type', 'cpt-plugin' ); ?></a>
524
  <?php
525
  if ( $has ) { ?>
526
- <a class="<?php echo $tab2; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ) ); ?>"><?php _e( 'Edit Post Types', 'cpt-plugin' ); ?></a>
527
  <?php }
528
  } elseif ( 'taxonomies' == $page ) {
529
  ?>
530
- <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New Taxonomy', 'cpt-plugin' ); ?></a>
531
  <?php
532
  if ( $has ) { ?>
533
- <a class="<?php echo $tab2; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ) ); ?>"><?php _e( 'Edit Taxonomies', 'cpt-plugin' ); ?></a>
534
  <?php }
535
  }
536
  } else { ?>
537
- <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_' . $page ); ?>"><?php _e( 'Post Types', 'cpt-plugin' ); ?></a>
538
- <a class="<?php echo $tab2; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'taxonomies' ), admin_url( 'admin.php?page=cptui_' . $page ) ) ); ?>"><?php _e( 'Taxonomies', 'cpt-plugin' ); ?></a>
539
- <a class="<?php echo $tab3; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'get_code' ), admin_url( 'admin.php?page=cptui_' . $page ) ) ); ?>"><?php _e( 'Get Code', 'cpt-plugin' ); ?></a>
 
540
  <?php
541
  }
542
 
@@ -619,7 +682,7 @@ function cptui_edit_plugin_list_links( $links ) {
619
 
620
  # Add our custom links to the returned array value.
621
  return array_merge( array(
622
- '<a href="' . admin_url( 'admin.php?page=cptui_main_menu' ) . '">' . __( 'Settings', 'cpt-plugin' ) . '</a>', '<a href="' . admin_url( 'admin.php?page=cptui_support' ) . '">' . __( 'Help', 'cpt-plugin' ) . '</a>'
623
  ), $links );
624
  }
625
  add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'cptui_edit_plugin_list_links' );
@@ -648,27 +711,27 @@ function cptui_admin_notices( $action = '', $object_type = '', $success = true ,
648
 
649
  if ( 'add' == $action ) {
650
  if ( $success ) {
651
- $message .= sprintf( __( '%s has been successfully added', 'cpt-plugin' ), $object_type );
652
  } else {
653
- $message .= sprintf( __( '%s has failed to be added', 'cpt-plugin' ), $object_type );
654
  }
655
  } elseif ( 'update' == $action ) {
656
  if ( $success ) {
657
- $message .= sprintf( __( '%s has been successfully updated', 'cpt-plugin' ), $object_type );
658
  } else {
659
- $message .= sprintf( __( '%s has failed to be updated', 'cpt-plugin' ), $object_type );
660
  }
661
  } elseif ( 'delete' == $action ) {
662
  if ( $success ) {
663
- $message .= sprintf( __( '%s has been successfully deleted', 'cpt-plugin' ), $object_type );
664
  } else {
665
- $message .= sprintf( __( '%s has failed to be deleted', 'cpt-plugin' ), $object_type );
666
  }
667
  } elseif ( 'import' == $action ) {
668
  if ( $success ) {
669
- $message .= sprintf( __( '%s has been successfully imported', 'cpt-plugin' ), $object_type );
670
  } else {
671
- $message .= sprintf( __( '%s has failed to be imported', 'cpt-plugin' ), $object_type );
672
  }
673
  } elseif ( 'error' == $action ) {
674
  if ( !empty( $custom ) ) {
@@ -751,30 +814,41 @@ function cptui_get_preserved_label( $type = '', $key = '', $plural = '', $singul
751
 
752
  $preserved_labels = array(
753
  'post_types' => array(
754
- 'add_new_item' => sprintf( __( 'Add new %s', 'cpt-plugin' ), $singular ),
755
- 'edit_item' => sprintf( __( 'Edit %s', 'cpt-plugin' ), $singular ),
756
- 'new_item' => sprintf( __( 'New %s', 'cpt-plugin' ), $singular ),
757
- 'view_item' => sprintf( __( 'View %s', 'cpt-plugin' ), $singular ),
758
- 'all_items' => sprintf( __( 'All %s', 'cpt-plugin' ), $plural ),
759
- 'search_items' => sprintf( __( 'Search %s', 'cpt-plugin' ), $plural ),
760
- 'not_found' => sprintf( __( 'No %s found.', 'cpt-plugin' ), $plural ),
761
- 'not_found_in_trash' => sprintf( __( 'No %s found in trash.', 'cpt-plugin' ), $plural )
762
  ),
763
  'taxonomies' => array(
764
- 'search_items' => sprintf( __( 'Search %s', 'cpt-plugin' ), $plural ),
765
- 'popular_items' => sprintf( __( 'Popular %s', 'cpt-plugin' ), $plural ),
766
- 'all_items' => sprintf( __( 'All %s', 'cpt-plugin' ), $plural ),
767
- 'parent_item' => sprintf( __( 'Parent %s', 'cpt-plugin' ), $singular ),
768
- 'parent_item_colon' => sprintf( __( 'Parent %s:', 'cpt-plugin' ), $singular ),
769
- 'edit_item' => sprintf( __( 'Edit %s', 'cpt-plugin' ), $singular ),
770
- 'update_item' => sprintf( __( 'Update %s', 'cpt-plugin' ), $singular ),
771
- 'add_new_item' => sprintf( __( 'Add new %s', 'cpt-plugin' ), $singular ),
772
- 'new_item_name' => sprintf( __( 'New %s name', 'cpt-plugin' ), $singular ),
773
- 'separate_items_with_commas' => sprintf( __( 'Separate %s with commas', 'cpt-plugin' ), $plural ),
774
- 'add_or_remove_items' => sprintf( __( 'Add or remove %s', 'cpt-plugin' ), $plural ),
775
- 'choose_from_most_used' => sprintf( __( 'Choose from the most used %s', 'cpt-plugin' ), $plural )
776
  )
777
  );
778
 
779
  return $preserved_labels[ $type ][ $key ];
780
  }
 
 
 
 
 
 
 
 
 
 
 
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
+ Version: 1.2.0
8
  Author URI: http://webdevstudios.com/
9
+ Text Domain: custom-post-type-ui
10
  Domain Path: /languages
11
  License: GPLv2
12
  */
16
  exit;
17
  }
18
 
19
+ define( 'CPT_VERSION', '1.2.0' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
26
  */
27
  function cptui_load_ui_class() {
28
  require_once( plugin_dir_path( __FILE__ ) . 'classes/class.cptui_admin_ui.php' );
29
+ require_once( plugin_dir_path( __FILE__ ) . 'classes/class.cptui_debug_info.php' );
30
  }
31
  add_action( 'init', 'cptui_load_ui_class' );
32
 
46
  * @since 0.8.0
47
  */
48
  function cptui_load_textdomain() {
49
+ load_plugin_textdomain( 'custom-post-type-ui', false, basename( dirname( __FILE__ ) ) . '/languages' );
50
  }
51
  add_action( 'init', 'cptui_load_textdomain' );
52
 
58
  * @since 0.1.0
59
  */
60
  function cptui_plugin_menu() {
61
+ add_menu_page( __( 'Custom Post Types', 'custom-post-type-ui' ), __( 'CPT UI', 'custom-post-type-ui' ), 'manage_options', 'cptui_main_menu', 'cptui_settings', cptui_menu_icon() );
62
+ add_submenu_page( 'cptui_main_menu', __( 'Add/Edit Post Types', 'custom-post-type-ui' ), __( 'Add/Edit Post Types', 'custom-post-type-ui' ), 'manage_options', 'cptui_manage_post_types', 'cptui_manage_post_types' );
63
+ add_submenu_page( 'cptui_main_menu', __( 'Add/Edit Taxonomies', 'custom-post-type-ui' ), __( 'Add/Edit Taxonomies', 'custom-post-type-ui' ), 'manage_options', 'cptui_manage_taxonomies', 'cptui_manage_taxonomies' );
64
+ add_submenu_page( 'cptui_main_menu', __( 'Registered Types and Taxes', 'custom-post-type-ui' ), __( 'Registered Types/Taxes', 'custom-post-type-ui' ), 'manage_options', 'cptui_listings', 'cptui_listings' );
65
+ add_submenu_page( 'cptui_main_menu', __( 'Import/Export', 'custom-post-type-ui' ), __( 'Import/Export', 'custom-post-type-ui' ), 'manage_options', 'cptui_importexport', 'cptui_importexport' );
66
+ add_submenu_page( 'cptui_main_menu', __( 'Help/Support', 'custom-post-type-ui' ), __( 'Help/Support', 'custom-post-type-ui' ), 'manage_options', 'cptui_support', 'cptui_support' );
67
 
68
  # Remove the default one so we can add our customized version.
69
  remove_submenu_page('cptui_main_menu', 'cptui_main_menu');
70
+ add_submenu_page( 'cptui_main_menu', __( 'About CPT UI', 'custom-post-type-ui' ), __( 'About CPT UI', 'custom-post-type-ui' ), 'manage_options', 'cptui_main_menu', 'cptui_settings' );
71
  }
72
  add_action( 'admin_menu', 'cptui_plugin_menu' );
73
 
86
  add_action( 'init', 'cptui_create_submenus' );
87
 
88
  function cptui_add_styles() {
89
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
90
+ return;
91
+ }
92
+
93
  wp_enqueue_style( 'cptui-css', plugins_url( 'css/cptui.css', __FILE__ ) );
94
  }
95
  add_action( 'admin_enqueue_scripts', 'cptui_add_styles' );
148
  $post_type['supports'] = array_merge( $post_type['supports'], $user_supports_params );
149
  }
150
 
151
+ $yarpp = false; # Prevent notices.
152
  if ( ! empty( $post_type['custom_supports'] ) ) {
153
  $custom = explode( ',', $post_type['custom_supports'] );
154
  foreach( $custom as $part ) {
155
+ # We'll handle YARPP separately.
156
+ if ( in_array( $part, array( 'YARPP', 'yarpp' ) ) ) {
157
+ $yarpp = true;
158
+ continue;
159
+ }
160
  $post_type['supports'][] = $part;
161
  }
162
  }
203
  if ( in_array( $post_type['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
204
  $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
205
  }
206
+ if ( ! empty( $post_type['query_var_slug'] ) ) {
207
+ $post_type['query_var'] = $post_type['query_var_slug'];
208
+ }
209
 
210
  $menu_position = null;
211
  if ( !empty( $post_type['menu_position'] ) ) {
212
  $menu_position = (int) $post_type['menu_position'];
213
  }
214
 
215
+ $public = get_disp_boolean( $post_type['public'] );
216
  if ( ! empty( $post_type['exclude_from_search'] ) ) {
217
  $exclude_from_search = get_disp_boolean( $post_type['exclude_from_search'] );
218
  } else {
 
219
  $exclude_from_search = ( false === $public ) ? true : false;
220
  }
221
 
222
+ if ( empty( $post_type['show_in_nav_menus'] ) ) {
223
+ // Defaults to value of public.
224
+ $post_type['show_in_nav_menus'] = $public;
225
+ }
226
+
227
+ if ( empty( $post_type['show_in_rest'] ) ) {
228
+ $post_type['show_in_rest'] = false;
229
+ }
230
+
231
+ $rest_base = null;
232
+ if ( ! empty( $post_type['rest_base'] ) ) {
233
+ $rest_base = $post_type['rest_base'];
234
+ }
235
+
236
  $args = array(
237
  'labels' => $labels,
238
  'description' => $post_type['description'],
239
  'public' => get_disp_boolean( $post_type['public'] ),
240
  'show_ui' => get_disp_boolean( $post_type['show_ui'] ),
241
+ 'show_in_nav_menus' => get_disp_boolean( $post_type['show_in_nav_menus'] ),
242
  'has_archive' => $has_archive,
243
  'show_in_menu' => $show_in_menu,
244
+ 'show_in_rest' => get_disp_boolean( $post_type['show_in_rest'] ),
245
+ 'rest_base' => $rest_base,
246
  'exclude_from_search' => $exclude_from_search,
247
  'capability_type' => $post_type['capability_type'],
248
  'map_meta_cap' => $post_type['map_meta_cap'],
255
  'taxonomies' => $post_type['taxonomies']
256
  );
257
 
258
+ if ( true === $yarpp ) {
259
+ $args['yarpp_support'] = $yarpp;
260
+ }
261
+
262
  /**
263
  * Filters the arguments used for a post type right before registering.
264
  *
329
 
330
  $show_admin_column = ( !empty( $taxonomy['show_admin_column'] ) && false !== get_disp_boolean( $taxonomy['show_admin_column'] ) ) ? true : false;
331
 
332
+ $rest_base = null;
333
+ if ( ! empty( $taxonomy['rest_base'] ) ) {
334
+ $rest_base = $taxonomy['rest_base'];
335
+ }
336
+
337
  $args = array(
338
  'labels' => $labels,
339
  'label' => $taxonomy['label'],
340
+ 'description' => $taxonomy['description'],
341
  'hierarchical' => get_disp_boolean( $taxonomy['hierarchical'] ),
342
  'show_ui' => get_disp_boolean( $taxonomy['show_ui'] ),
343
  'query_var' => $taxonomy['query_var'],
344
  'rewrite' => $rewrite,
345
+ 'show_admin_column' => $show_admin_column,
346
+ 'show_in_rest' => get_disp_boolean( $taxonomy['show_in_rest'] ),
347
+ 'rest_base' => $rest_base,
348
  );
349
 
350
  $object_type = ( !empty( $taxonomy['object_types'] ) ) ? $taxonomy['object_types'] : '';
379
  * @since 1.0.0
380
  */
381
  do_action( 'cptui_main_page_start' ); ?>
382
+ <h1><?php _e( 'Custom Post Type UI', 'custom-post-type-ui' ); ?> <?php echo CPT_VERSION; ?></h1>
383
 
384
  <div class="about-text cptui-about-text">
385
+ <?php _e( 'Thank you for choosing Custom Post Type UI. We hope that your experience with our plugin provides efficiency and speed in creating post types and taxonomies, to better organize your content, without having to touch code.', 'custom-post-type-ui' ); ?>
386
  </div>
387
+ <h2><?php printf( __( 'What\'s new in version %s', 'custom-post-type-ui' ), CPT_VERSION ); ?></h2>
388
  <div class="changelog about-integrations">
389
  <div class="cptui-feature feature-section col three-col">
390
+
391
  <div>
392
+ <h2><?php _e( 'Updated internationalization', 'custom-post-type-ui' ); ?></h2>
393
+ <p><?php _e( 'Our textdomain now matches the plugin slug from our WordPress.org repository to help aid in translating Custom Post Type UI', 'custom-post-type-ui' ); ?></p>
394
  </div>
395
  <div>
396
+ <h2><?php _e( 'Debugging information', 'custom-post-type-ui' ); ?></h2>
397
+ <p><?php _e( 'We have added a new "Debug Info" tab to the Import/Export area to aid in debugging issues with Custom Post Type UI.', 'custom-post-type-ui' ); ?></p>
398
+ </div>
399
+ <div>
400
+ <h2><?php _e( 'Improved accessibility', 'custom-post-type-ui' ); ?></h2>
401
+ <p><?php _e( 'A lot of work was done in the areas of accessibility to help aid users who need it. If you have feedback on where it could be further improved, let us know.', 'custom-post-type-ui' ); ?></p>
402
+ </div>
403
+ <div>
404
+ <h2><?php _e( 'WP REST API support', 'custom-post-type-ui' ); ?></h2>
405
+ <p><?php _e( 'We now have support for the required fields for the WP REST API. Now you can add your Custom Post Type UI post types and taxonomies to the available REST API lists.', 'custom-post-type-ui' ); ?></p>
406
+ </div>
407
+ <div>
408
+ <h2><?php _e( 'More parameter support', 'custom-post-type-ui' ); ?></h2>
409
+ <p><?php _e( 'We have added more parameters for greater customization of your post type and taxonomy settings.', 'custom-post-type-ui' ); ?></p>
410
+ </div>
411
+ <div>
412
+ <h2><?php _e( 'New individual "Get Code" sections', 'custom-post-type-ui' ); ?></h2>
413
+ <p><?php _e( 'The "Get Code" area now has support for copy/paste of individual post types and taxonomies.', 'custom-post-type-ui' ); ?></p>
414
  </div>
415
  <div class="last-feature">
416
+ <h2><?php _e( 'Template hierarchy reference', 'custom-post-type-ui' ); ?></h2>
417
+ <p><?php _e( 'To help aid your development with post types and taxonomies, we have added a quick reference list of common template files you can use in your theme. They will be listed on the "Registered Types/Taxes" screen.', 'custom-post-type-ui' ); ?></p>
418
  </div>
419
  </div>
420
  </div>
421
 
422
+ <h1><?php _e( 'Help Support This Plugin!', 'custom-post-type-ui' ); ?></h1>
423
  <table border="0">
424
  <tr>
425
  <td class="one-third valign">
426
+ <h2><?php _e( 'Professional WordPress<br />Third Edition', 'custom-post-type-ui' ); ?></h2>
427
  <a href="http://bit.ly/prowp3" target="_blank">
428
+ <img src="<?php echo plugins_url( '/images/professional-wordpress-thirdedition.jpg', __FILE__ ); ?>" width="200" alt="<?php esc_attr_e( 'Professional WordPress Design and Development book cover.', 'custom-post-type-ui' ); ?>">
429
  </a>
430
  <br />
431
+ <p><?php _e( 'The leading book on WordPress design and development! Brand new third edition!', 'custom-post-type-ui' ); ?></p>
432
  </td>
433
  <td class="one-third valign">
434
+ <h2><?php _e( 'Professional WordPress<br />Plugin Development', 'custom-post-type-ui' ); ?></h2>
435
  <a href="http://amzn.to/plugindevbook" target="_blank">
436
+ <img src="<?php echo plugins_url( '/images/professional-wordpress-plugin-development.png', __FILE__ ); ?>" width="200" alt="<?php esc_attr_e( 'Professional WordPress Pluing Development book cover.', 'custom-post-type-ui' ); ?>">
437
  </a>
438
  <br />
439
+ <p><?php _e( 'Highest rated WordPress development book on Amazon!', 'custom-post-type-ui' ); ?></p>
440
  </td>
441
  <td class="one-third valign">
442
+ <h2><?php _e( 'PayPal Donation', 'custom-post-type-ui' ); ?></h2>
443
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
444
  <input type="hidden" name="cmd" value="_s-xclick">
445
  <input type="hidden" name="hosted_button_id" value="YJEDXPHE49Q3U">
446
+ <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="<?php esc_attr_e( 'PayPal - The safer, easier way to pay online!', 'custom-post-type-ui' ); ?>">
447
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
448
  </form>
449
+ <p><?php _e( 'Please donate to the development of Custom Post Type UI:', 'custom-post-type-ui' ); ?></p>
450
  </td>
451
  </tr>
452
  </table>
472
  }
473
 
474
  return sprintf(
475
+ __( '%s version %s by %s', 'custom-post-type-ui' ),
476
  sprintf(
477
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
478
+ __( 'Custom Post Type UI', 'custom-post-type-ui' )
479
  ),
480
  CPT_VERSION,
481
  '<a href="http://webdevstudios.com" target="_blank">WebDevStudios</a>'
483
  ' - '.
484
  sprintf(
485
  '<a href="https://github.com/WebDevStudios/custom-post-type-ui/issues" target="_blank">%s</a>',
486
+ __( 'Please Report Bugs', 'custom-post-type-ui' )
487
  ).
488
  ' '.
489
+ __( 'Follow on Twitter:', 'custom-post-type-ui' ).
490
  sprintf(
491
  ' %s &middot; %s &middot; %s',
492
  '<a href="http://twitter.com/tw2113" target="_blank">Michael</a>',
544
  function cptui_settings_tab_menu( $page = 'post_types' ) {
545
 
546
  # initiate our arrays with default classes
547
+ $tab1 = $tab2 = $tab3 = $tab4 = array( 'nav-tab' );
548
  $has = false;
549
 
550
  if ( 'importexport' == $page ) :
551
+ $title = __( 'Import/Export', 'custom-post-type-ui' );
552
  elseif ( 'taxonomies' == $page ) :
553
+ $title = __( 'Manage Taxonomies', 'custom-post-type-ui' );
554
  $taxes = get_option( 'cptui_taxonomies' );
555
  $has = ( !empty( $taxes ) ) ? true : false;
556
  else :
557
+ $title = __( 'Manage Post Types', 'custom-post-type-ui' );
558
  $types = get_option( 'cptui_post_types' );
559
  $has = ( !empty( $types ) ) ? true : false;
560
  endif;
564
  $tab2[] = 'nav-tab-active';
565
  } elseif ( 'get_code' == $_GET['action'] ) {
566
  $tab3[] = 'nav-tab-active';
567
+ } elseif ( 'debuginfo' == $_GET['action'] ) {
568
+ $tab4[] = 'nav-tab-active';
569
  }
570
  } else {
571
  $tab1[] = 'nav-tab-active';
572
  }
573
 
574
  # implode our arrays for class attributes
575
+ $tab1 = implode( ' ', $tab1 ); $tab2 = implode( ' ', $tab2 ); $tab3 = implode( ' ', $tab3 ); $tab4 = implode( ' ', $tab4 );
576
 
577
  ?>
578
+ <h1><?php echo $title; ?></h1>
579
  <h2 class="nav-tab-wrapper">
580
+ <?php
 
581
  # Import/Export area is getting different tabs, so we need to separate out.
582
  if ( 'importexport' != $page ) {
583
  if ( 'post_types' == $page ) {
584
  ?>
585
+ <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New Post Type', 'custom-post-type-ui' ); ?></a>
586
  <?php
587
  if ( $has ) { ?>
588
+ <a class="<?php echo $tab2; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ) ); ?>"><?php _e( 'Edit Post Types', 'custom-post-type-ui' ); ?></a>
589
  <?php }
590
  } elseif ( 'taxonomies' == $page ) {
591
  ?>
592
+ <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New Taxonomy', 'custom-post-type-ui' ); ?></a>
593
  <?php
594
  if ( $has ) { ?>
595
+ <a class="<?php echo $tab2; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ) ); ?>"><?php _e( 'Edit Taxonomies', 'custom-post-type-ui' ); ?></a>
596
  <?php }
597
  }
598
  } else { ?>
599
+ <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_' . $page ); ?>"><?php _e( 'Post Types', 'custom-post-type-ui' ); ?></a>
600
+ <a class="<?php echo $tab2; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'taxonomies' ), admin_url( 'admin.php?page=cptui_' . $page ) ) ); ?>"><?php _e( 'Taxonomies', 'custom-post-type-ui' ); ?></a>
601
+ <a class="<?php echo $tab3; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'get_code' ), admin_url( 'admin.php?page=cptui_' . $page ) ) ); ?>"><?php _e( 'Get Code', 'custom-post-type-ui' ); ?></a>
602
+ <a class="<?php echo $tab4; ?>" href="<?php echo esc_url( add_query_arg( array( 'action' => 'debuginfo' ), admin_url( 'admin.php?page=cptui_' . $page ) ) ); ?>"><?php _e( 'Debug Info', 'custom-post-type-ui' ); ?></a>
603
  <?php
604
  }
605
 
682
 
683
  # Add our custom links to the returned array value.
684
  return array_merge( array(
685
+ '<a href="' . admin_url( 'admin.php?page=cptui_main_menu' ) . '">' . __( 'Settings', 'custom-post-type-ui' ) . '</a>', '<a href="' . admin_url( 'admin.php?page=cptui_support' ) . '">' . __( 'Help', 'custom-post-type-ui' ) . '</a>'
686
  ), $links );
687
  }
688
  add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'cptui_edit_plugin_list_links' );
711
 
712
  if ( 'add' == $action ) {
713
  if ( $success ) {
714
+ $message .= sprintf( __( '%s has been successfully added', 'custom-post-type-ui' ), $object_type );
715
  } else {
716
+ $message .= sprintf( __( '%s has failed to be added', 'custom-post-type-ui' ), $object_type );
717
  }
718
  } elseif ( 'update' == $action ) {
719
  if ( $success ) {
720
+ $message .= sprintf( __( '%s has been successfully updated', 'custom-post-type-ui' ), $object_type );
721
  } else {
722
+ $message .= sprintf( __( '%s has failed to be updated', 'custom-post-type-ui' ), $object_type );
723
  }
724
  } elseif ( 'delete' == $action ) {
725
  if ( $success ) {
726
+ $message .= sprintf( __( '%s has been successfully deleted', 'custom-post-type-ui' ), $object_type );
727
  } else {
728
+ $message .= sprintf( __( '%s has failed to be deleted', 'custom-post-type-ui' ), $object_type );
729
  }
730
  } elseif ( 'import' == $action ) {
731
  if ( $success ) {
732
+ $message .= sprintf( __( '%s has been successfully imported', 'custom-post-type-ui' ), $object_type );
733
  } else {
734
+ $message .= sprintf( __( '%s has failed to be imported', 'custom-post-type-ui' ), $object_type );
735
  }
736
  } elseif ( 'error' == $action ) {
737
  if ( !empty( $custom ) ) {
814
 
815
  $preserved_labels = array(
816
  'post_types' => array(
817
+ 'add_new_item' => sprintf( __( 'Add new %s', 'custom-post-type-ui' ), $singular ),
818
+ 'edit_item' => sprintf( __( 'Edit %s', 'custom-post-type-ui' ), $singular ),
819
+ 'new_item' => sprintf( __( 'New %s', 'custom-post-type-ui' ), $singular ),
820
+ 'view_item' => sprintf( __( 'View %s', 'custom-post-type-ui' ), $singular ),
821
+ 'all_items' => sprintf( __( 'All %s', 'custom-post-type-ui' ), $plural ),
822
+ 'search_items' => sprintf( __( 'Search %s', 'custom-post-type-ui' ), $plural ),
823
+ 'not_found' => sprintf( __( 'No %s found.', 'custom-post-type-ui' ), $plural ),
824
+ 'not_found_in_trash' => sprintf( __( 'No %s found in trash.', 'custom-post-type-ui' ), $plural )
825
  ),
826
  'taxonomies' => array(
827
+ 'search_items' => sprintf( __( 'Search %s', 'custom-post-type-ui' ), $plural ),
828
+ 'popular_items' => sprintf( __( 'Popular %s', 'custom-post-type-ui' ), $plural ),
829
+ 'all_items' => sprintf( __( 'All %s', 'custom-post-type-ui' ), $plural ),
830
+ 'parent_item' => sprintf( __( 'Parent %s', 'custom-post-type-ui' ), $singular ),
831
+ 'parent_item_colon' => sprintf( __( 'Parent %s:', 'custom-post-type-ui' ), $singular ),
832
+ 'edit_item' => sprintf( __( 'Edit %s', 'custom-post-type-ui' ), $singular ),
833
+ 'update_item' => sprintf( __( 'Update %s', 'custom-post-type-ui' ), $singular ),
834
+ 'add_new_item' => sprintf( __( 'Add new %s', 'custom-post-type-ui' ), $singular ),
835
+ 'new_item_name' => sprintf( __( 'New %s name', 'custom-post-type-ui' ), $singular ),
836
+ 'separate_items_with_commas' => sprintf( __( 'Separate %s with commas', 'custom-post-type-ui' ), $plural ),
837
+ 'add_or_remove_items' => sprintf( __( 'Add or remove %s', 'custom-post-type-ui' ), $plural ),
838
+ 'choose_from_most_used' => sprintf( __( 'Choose from the most used %s', 'custom-post-type-ui' ), $plural )
839
  )
840
  );
841
 
842
  return $preserved_labels[ $type ][ $key ];
843
  }
844
+
845
+ /**
846
+ * Returns SVG icon for custom menu icon
847
+ *
848
+ * @since 1.2.0
849
+ *
850
+ * @return string
851
+ */
852
+ function cptui_menu_icon() {
853
+ return 'data:image/svg+xml;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABC9pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wUmlnaHRzPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvcmlnaHRzLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wUmlnaHRzOk1hcmtlZD0iVHJ1ZSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5NkE3NTc5MUJCOTIxMUU0QUVENDlFMUYwOEMyRDgwQyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5NkE3NTc5MEJCOTIxMUU0QUVENDlFMUYwOEMyRDgwQyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNCAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmRpZDo5NjMzOTU2ODgyMjhFMDExOTg5Q0MwQTFBRDAyQjVDMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5NjMzOTU2ODgyMjhFMDExOTg5Q0MwQTFBRDAyQjVDMiIvPiA8ZGM6cmlnaHRzPiA8cmRmOkFsdD4gPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ij5DcmVhdGl2ZSBDb21tb25zIEF0dHJpYnV0aW9uIE5vbi1Db21tZXJjaWFsIE5vIERlcml2YXRpdmVzPC9yZGY6bGk+IDwvcmRmOkFsdD4gPC9kYzpyaWdodHM+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+hXhu9wAAAjdJREFUeNrcWYFtwjAQBNQB0g3oBukEDRPUnYCwQRmhE8AGhgnKBh0h2YBuQDZIbclI6GXH7/c7cfrSCxEcuHv+7x3/su/7xZxttZi5/XsChfJP5Y3ynskFKwNdAw4Xym89r9UDv0dy1wd1z2/s4F0ERGbgC+WN8iuGQJFZ2tzB303ANbCIa1O4XLZTfiLeq3H8KC8frr3BRU/g/dbzpRflZ+Wd8ta8pjAbeG2VT4VGL0JE2kArXClUeCJ/GqEvuSL/aGtKJz5nAv5oUtdKYCifuwzAa+Bf8OIS7EZdW9PnCQoWBnADox+SQhjwtQcEFby2vQ18iAr5lEOadboJlkxqczcZspWgEJBgLYYEFnwDZZObgHSsHyKBBY/6N2MISEL0sODRjZNK4IAEocGuzT1lAHiJ7dxYGV0CtZEJe0JrJBMl2xQCN+YdK0rvHSYoD/WXhNHfB4DXmfBNrQGZ4KlNBuxYaxcwThUKsYYCPpZAiCT69H5NAR9LgIuEoILnIBBL4hCQOlajyGjMrhLq/WvIGVzKs9FQ/dbrP3I73A0hoY9bfnM8ncaQOHI2Q64awNZEaN6PVgOYf4It78cacEASG668HyOFUlhUClUTg69iU6hYZGpYAtuJcb5jZ2Q5nE5DL4eGLrCIG89+Zqz5QPUQ+aGhSwsJ6JHqYUZj4j0koJlecy5a0GdeVpaLu5lEX+PsVo48380A/MWmQqkn9RzPz2LoZM7WwGrTB8oJI94a9TtB5fsTYABOp6Z0XZr87gAAAABJRU5ErkJggg==';
854
+ }
inc/import_export.php CHANGED
@@ -20,6 +20,8 @@ function cptui_importexport() {
20
  $tab = 'taxonomies';
21
  } elseif ( !empty( $_GET['action'] ) && 'get_code' == $_GET['action'] ) {
22
  $tab = 'get_code';
 
 
23
  } else {
24
  $tab = 'post_types';
25
  }
@@ -37,82 +39,7 @@ function cptui_importexport() {
37
  # Create our tabs.
38
  cptui_settings_tab_menu( $page = 'importexport' );
39
 
40
- if ( isset( $tab ) && ( 'post_types' == $tab || 'taxonomies' == $tab ) ) {
41
- ?>
42
- <p><?php _e( 'If you are wanting to migrate registered post types or taxonomies from this site to another, that will also use Custom Post Type UI, use the import and export functionality. If you are moving away from Custom Post Type UI, use the information in the "Get Code" tab.', 'cpt-plugin' ); ?></p>
43
-
44
- <p><?php printf( '<strong>%s</strong>: %s',
45
- __( 'NOTE', 'cpt-plugin' ),
46
- __( 'This will not export the associated posts, just the settings.', 'cpt-plugin' )
47
- ); ?>
48
- </p>
49
- <table class="form-table cptui-table">
50
- <?php if ( !empty( $_GET ) && empty( $_GET['action'] ) ) { ?>
51
- <tr>
52
- <td class="outter">
53
- <h3><?php _e( 'Import Post Types', 'cpt-plugin' ); ?></h3>
54
- <form method="post">
55
- <textarea class="cptui_post_import" placeholder="<?php esc_attr_e( 'Paste content here.', 'cpt-plugin' ); ?>" name="cptui_post_import"></textarea>
56
- <p class="wp-ui-highlight"><strong><?php _e( 'Note:', 'cpt-plugin' ); ?></strong> <?php _e( 'Importing will overwrite previous registered settings.', 'cpt-plugin' ); ?></p>
57
- <p><strong><?php _e( 'To import post types from a different WordPress site, paste the exported content from that site and click the "Import" button.', 'cpt-plugin' ); ?></strong></p>
58
- <p><input class="button button-primary" type="submit" value="<?php esc_attr_e( 'Import', 'cpt-plugin' ); ?>"/></p>
59
- </form>
60
- </td>
61
- <td class="outter">
62
- <h3><?php _e( 'Export Post Types', 'cpt-plugin' ); ?></h3>
63
- <?php
64
- $cptui_post_types = get_option( 'cptui_post_types', array() );
65
- if ( !empty( $cptui_post_types ) ) {
66
- $content = esc_html( json_encode( $cptui_post_types ) );
67
- } else {
68
- $content = __( 'No post types registered yet.', 'cpt-plugin' );
69
- }
70
- ?>
71
- <textarea title="<?php esc_attr_e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'cpt-plugin' ); ?>" onclick="this.focus();this.select()" readonly="readonly" class="cptui_post_import"><?php echo $content; ?></textarea>
72
- <p><strong><?php _e( 'Use the content above to import current post types into a different WordPress site. You can also use this to simply back up your post type settings.', 'cpt-plugin' ); ?></strong></p>
73
- </td>
74
- </tr>
75
- <?php } elseif ( !empty( $_GET ) && 'taxonomies' == $_GET['action'] ) { ?>
76
- <tr>
77
- <td class="outter">
78
- <h3><?php _e( 'Import Taxonomies', 'cpt-plugin' ); ?></h3>
79
- <form method="post">
80
- <textarea class="cptui_tax_import" placeholder="<?php esc_attr_e( 'Paste content here.', 'cpt-plugin' ); ?>" name="cptui_tax_import"></textarea>
81
- <p class="wp-ui-highlight"><strong><?php _e( 'Note:', 'cpt-plugin' ); ?></strong> <?php _e( 'Importing will overwrite previous registered settings.', 'cpt-plugin' ); ?></p>
82
- <p><strong><?php _e( 'To import taxonomies from a different WordPress site, paste the exported content from that site and click the "Import" button.', 'cpt-plugin' ); ?></strong></p>
83
- <p><input class="button button-primary" type="submit" value="<?php esc_attr_e( 'Import', 'cpt-plugin' ); ?>"/></p>
84
- </form>
85
- </td>
86
- <td class="outter">
87
- <h3><?php _e( 'Export Taxonomies', 'cpt-plugin' ); ?></h3>
88
- <?php
89
- $cptui_taxonomies = get_option( 'cptui_taxonomies', array() );
90
- if ( !empty( $cptui_taxonomies ) ) {
91
- $content = esc_html( json_encode( $cptui_taxonomies ) );
92
- } else {
93
- $content = __( 'No taxonomies registered yet.', 'cpt-plugin' );
94
- }
95
- ?>
96
- <textarea title="<?php esc_attr_e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'cpt-plugin' ); ?>" onclick="this.focus();this.select()" readonly="readonly" class="cptui_tax_import"><?php echo $content; ?></textarea>
97
- <p><strong><?php _e( 'Use the content above to import current taxonomies into a different WordPress site. You can also use this to simply back up your taxonomy settings.', 'cpt-plugin' ); ?></strong></p>
98
- </td>
99
- </tr>
100
- <?php } ?>
101
- </table>
102
-
103
- <?php
104
- } else { ?>
105
- <h2><?php _e( 'Get Post Type and Taxonomy Code', 'cpt-plugin' ); ?></h2>
106
-
107
- <h3><?php _e( 'All CPT UI Post Types', 'cpt-plugin' ); ?></h3>
108
- <label for="cptui_post_type_get_code"><?php _e( 'Copy/paste the code below into your functions.php file.', 'cpt-plugin' ); ?></label>
109
- <textarea name="cptui_post_type_get_code" id="cptui_post_type_get_code" class="cptui_post_type_get_code" onclick="this.focus();this.select()" readonly="readonly"><?php cptui_get_post_type_code(); ?></textarea>
110
-
111
- <h3><?php _e( 'All CPT UI Taxonomies', 'cpt-plugin' ); ?></h3>
112
- <label for="cptui_tax_get_code"><?php _e( 'Copy/paste the code below into your functions.php file.', 'cpt-plugin' ); ?></label>
113
- <textarea name="cptui_tax_get_code" id="cptui_tax_get_code" class="cptui_tax_get_code" onclick="this.focus();this.select()" readonly="readonly"><?php cptui_get_taxonomy_code(); ?></textarea>
114
- <?php
115
- }
116
 
117
  echo '</div><!-- End .wrap -->';
118
  }
@@ -121,25 +48,33 @@ function cptui_importexport() {
121
  * Display our copy-able code for registered taxonomies.
122
  *
123
  * @since 1.0.0
 
 
 
 
 
124
  *
125
  * @return string Taxonomy registration text for use elsewhere.
126
  */
127
- function cptui_get_taxonomy_code() {
128
-
129
- $cptui_taxonomies = get_option( 'cptui_taxonomies' );
130
  if ( !empty( $cptui_taxonomies ) ) {
 
 
 
 
 
131
  ?>
132
- add_action( 'init', 'cptui_register_my_taxes' );
133
- function cptui_register_my_taxes() {
134
  <?php
135
  foreach( $cptui_taxonomies as $tax ) {
136
  echo cptui_get_single_taxonomy_registery( $tax ) . "\n";
137
  } ?>
138
- // End cptui_register_my_taxes
139
  }
140
  <?php
141
  } else {
142
- _e( 'No taxonomies to display at this time', 'cpt-plugin' );
143
  }
144
  }
145
 
@@ -168,6 +103,7 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
168
  $rewrite_slug = ' \'slug\' => \'' . $taxonomy['rewrite_slug'] . '\',';
169
  }
170
 
 
171
  $withfront = disp_boolean( $taxonomy['rewrite_withfront'] );
172
  if ( !empty( $withfront ) ) {
173
  $rewrite_withfront = ' \'with_front\' => ' . $withfront . ' ';
@@ -218,27 +154,34 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
218
  * Display our copy-able code for registered post types.
219
  *
220
  * @since 1.0.0
 
 
 
 
 
221
  *
222
  * @return string Post type registration text for use elsewhere.
223
  */
224
- function cptui_get_post_type_code() {
225
-
226
- $cptui_post_types = get_option( 'cptui_post_types' );
227
-
228
  # Whitespace very much matters here, thus why it's all flush against the left side
229
  if ( !empty( $cptui_post_types ) ) {
 
 
 
 
 
230
  ?>
231
- add_action( 'init', 'cptui_register_my_cpts' );
232
- function cptui_register_my_cpts() {
233
  <?php #space before this line reflects in textarea
234
  foreach( $cptui_post_types as $type ) {
235
  echo cptui_get_single_post_type_registery( $type ) . "\n";
236
  } ?>
237
- // End of cptui_register_my_cpts()
238
  }
239
  <?php
240
  } else {
241
- _e( 'No post types to display at this time', 'cpt-plugin' );
242
  }
243
  }
244
 
@@ -256,11 +199,26 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
256
  /** This filter is documented in custom-post-type-ui/custom-post-type-ui.php */
257
  $post_type['map_meta_cap'] = apply_filters( 'cptui_map_meta_cap', 'true', $post_type['name'], $post_type );
258
 
 
259
  $user_supports_params = apply_filters( 'cptui_user_supports_params', array(), $post_type['name'], $post_type );
260
  if ( is_array( $user_supports_params ) ) {
261
  $post_type['supports'] = array_merge( $post_type['supports'], $user_supports_params );
262
  }
263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  $rewrite = get_disp_boolean( $post_type['rewrite' ] );
265
  if ( false !== $rewrite ) {
266
  $rewrite = disp_boolean( $post_type['rewrite'] );
@@ -302,7 +260,14 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
302
  }
303
 
304
  if ( in_array( $post_type['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
305
- $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
 
 
 
 
 
 
 
306
  }
307
 
308
  $post_type['description'] = addslashes( $post_type['description'] );
@@ -321,6 +286,7 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
321
  "description" => "<?php echo $post_type['description']; ?>",
322
  "public" => <?php echo disp_boolean( $post_type['public'] ); ?>,
323
  "show_ui" => <?php echo disp_boolean( $post_type['show_ui'] ); ?>,
 
324
  "has_archive" => <?php echo disp_boolean( $post_type['has_archive'] ); ?>,
325
  "show_in_menu" => <?php echo disp_boolean( $post_type['show_in_menu'] ); ?>,
326
  "exclude_from_search" => <?php echo disp_boolean( $post_type['exclude_from_search'] ); ?>,
@@ -328,10 +294,11 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
328
  "map_meta_cap" => <?php echo disp_boolean( $post_type['map_meta_cap'] ); ?>,
329
  "hierarchical" => <?php echo disp_boolean( $post_type['hierarchical'] ); ?>,
330
  "rewrite" => <?php echo $rewrite; ?>,
331
- "query_var" => <?php echo disp_boolean( $post_type['query_var'] ); ?>,
332
  <?php if ( !empty( $post_type['menu_position'] ) ) { ?>"menu_position" => <?php echo $post_type['menu_position']; ?>,<?php } ?><?php if ( !empty( $post_type['menu_icon'] ) ) { ?>"menu_icon" => "<?php echo $post_type['menu_icon']; ?>",<?php } ?>
333
  <?php if ( !empty( $supports ) ) { echo "\n\t\t" ?>"supports" => <?php echo $supports; ?>,<?php } ?>
334
- <?php if ( !empty( $taxonomies ) ) { echo "\n\t\t" ?>"taxonomies" => <?php echo $taxonomies; ?><?php } echo "\n"?>
 
335
  );
336
  register_post_type( "<?php echo $post_type['name']; ?>", $args );
337
  <?php
@@ -353,9 +320,47 @@ function cptui_import_types_taxes_settings( $postdata = array() ) {
353
 
354
  $success = false;
355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  if ( !empty( $postdata['cptui_post_import'] ) ) {
357
- $data = stripslashes_deep( trim( $postdata['cptui_post_import'] ) );
358
- $settings = json_decode( $data, true );
 
 
 
 
 
 
 
 
359
 
360
  if ( $settings ) {
361
  if ( false !== get_option( 'cptui_post_types' ) ) {
@@ -364,11 +369,19 @@ function cptui_import_types_taxes_settings( $postdata = array() ) {
364
 
365
  $success = update_option( 'cptui_post_types', $settings );
366
  }
367
- return cptui_admin_notices( 'import', __( 'Post types', 'cpt-plugin' ), $success );
368
 
369
  } elseif ( !empty( $postdata['cptui_tax_import'] ) ) {
370
- $data = stripslashes_deep( trim( $postdata['cptui_tax_import'] ) );
371
- $settings = json_decode( $data, true );
 
 
 
 
 
 
 
 
372
 
373
  if ( $settings ) {
374
  if ( false !== get_option( 'cptui_taxonomies' ) ) {
@@ -377,10 +390,181 @@ function cptui_import_types_taxes_settings( $postdata = array() ) {
377
 
378
  $success = update_option( 'cptui_taxonomies', $settings );
379
  }
380
- return cptui_admin_notices( 'import', __( 'Taxonomies', 'cpt-plugin' ), $success );
381
  }
382
 
383
  flush_rewrite_rules();
384
 
385
  return $success;
386
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  $tab = 'taxonomies';
21
  } elseif ( !empty( $_GET['action'] ) && 'get_code' == $_GET['action'] ) {
22
  $tab = 'get_code';
23
+ } elseif ( !empty( $_GET['action'] ) && 'debuginfo' == $_GET['action'] ) {
24
+ $tab = 'debuginfo';
25
  } else {
26
  $tab = 'post_types';
27
  }
39
  # Create our tabs.
40
  cptui_settings_tab_menu( $page = 'importexport' );
41
 
42
+ do_action( 'cptui_import_export_sections', $tab );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  echo '</div><!-- End .wrap -->';
45
  }
48
  * Display our copy-able code for registered taxonomies.
49
  *
50
  * @since 1.0.0
51
+ * @since 1.2.0 Added $cptui_taxonomies parameter.
52
+ * @since 1.2.0 Added $single parameter.
53
+ *
54
+ * @param array $cptui_taxonomies Array of taxonomies to render.
55
+ * @param bool $single Whether or not we are rendering a single taxonomy.
56
  *
57
  * @return string Taxonomy registration text for use elsewhere.
58
  */
59
+ function cptui_get_taxonomy_code( $cptui_taxonomies = array(), $single = false ) {
 
 
60
  if ( !empty( $cptui_taxonomies ) ) {
61
+ $callback = 'cptui_register_my_taxes';
62
+ if ( $single ) {
63
+ $key = key( $cptui_taxonomies );
64
+ $callback = 'cptui_register_my_taxes_' . str_replace('-', '_', $cptui_taxonomies[ $key ]['name'] );
65
+ }
66
  ?>
67
+ add_action( 'init', '<?php echo $callback; ?>' );
68
+ function <?php echo $callback; ?>() {
69
  <?php
70
  foreach( $cptui_taxonomies as $tax ) {
71
  echo cptui_get_single_taxonomy_registery( $tax ) . "\n";
72
  } ?>
73
+ // End <?php echo $callback; ?>()
74
  }
75
  <?php
76
  } else {
77
+ _e( 'No taxonomies to display at this time', 'custom-post-type-ui' );
78
  }
79
  }
80
 
103
  $rewrite_slug = ' \'slug\' => \'' . $taxonomy['rewrite_slug'] . '\',';
104
  }
105
 
106
+ $rewrite_withfront = '';
107
  $withfront = disp_boolean( $taxonomy['rewrite_withfront'] );
108
  if ( !empty( $withfront ) ) {
109
  $rewrite_withfront = ' \'with_front\' => ' . $withfront . ' ';
154
  * Display our copy-able code for registered post types.
155
  *
156
  * @since 1.0.0
157
+ * @since 1.2.0 Added $cptui_post_types parameter.
158
+ * @since 1.2.0 Added $single parameter.
159
+ *
160
+ * @param array $cptui_post_types Array of post types to render.
161
+ * @param bool $single Whether or not we are rendering a single post type.
162
  *
163
  * @return string Post type registration text for use elsewhere.
164
  */
165
+ function cptui_get_post_type_code( $cptui_post_types = array(), $single = false ) {
 
 
 
166
  # Whitespace very much matters here, thus why it's all flush against the left side
167
  if ( !empty( $cptui_post_types ) ) {
168
+ $callback = 'cptui_register_my_cpts';
169
+ if ( $single ) {
170
+ $key = key( $cptui_post_types );
171
+ $callback = 'cptui_register_my_cpts_' . str_replace( '-', '_', $cptui_post_types[ $key ]['name'] );
172
+ }
173
  ?>
174
+ add_action( 'init', '<?php echo $callback; ?>' );
175
+ function <?php echo $callback; ?>() {
176
  <?php #space before this line reflects in textarea
177
  foreach( $cptui_post_types as $type ) {
178
  echo cptui_get_single_post_type_registery( $type ) . "\n";
179
  } ?>
180
+ // End of <?php echo $callback; ?>()
181
  }
182
  <?php
183
  } else {
184
+ _e( 'No post types to display at this time', 'custom-post-type-ui' );
185
  }
186
  }
187
 
199
  /** This filter is documented in custom-post-type-ui/custom-post-type-ui.php */
200
  $post_type['map_meta_cap'] = apply_filters( 'cptui_map_meta_cap', 'true', $post_type['name'], $post_type );
201
 
202
+ /** This filter is documented in custom-post-type-ui/custom-post-type-ui.php */
203
  $user_supports_params = apply_filters( 'cptui_user_supports_params', array(), $post_type['name'], $post_type );
204
  if ( is_array( $user_supports_params ) ) {
205
  $post_type['supports'] = array_merge( $post_type['supports'], $user_supports_params );
206
  }
207
 
208
+ $yarpp = false; # Prevent notices.
209
+ if ( ! empty( $post_type['custom_supports'] ) ) {
210
+ $custom = explode( ',', $post_type['custom_supports'] );
211
+ foreach ( $custom as $part ) {
212
+ # We'll handle YARPP separately.
213
+ if ( in_array( $part, array( 'YARPP', 'yarpp' ) ) ) {
214
+ $yarpp = true;
215
+ continue;
216
+ }
217
+ $post_type['supports'][] = $part;
218
+ }
219
+ }
220
+
221
+ $rewrite_withfront = '';
222
  $rewrite = get_disp_boolean( $post_type['rewrite' ] );
223
  if ( false !== $rewrite ) {
224
  $rewrite = disp_boolean( $post_type['rewrite'] );
260
  }
261
 
262
  if ( in_array( $post_type['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
263
+ $post_type['query_var'] = disp_boolean( $post_type['query_var'] );
264
+ }
265
+ if ( !empty( $post_type['query_var_slug'] ) ) {
266
+ $post_type['query_var'] = '"' . $post_type['query_var_slug'] . '"';
267
+ }
268
+
269
+ if ( empty( $post_type['show_in_rest'] ) ) {
270
+ $post_type['show_in_rest'] = 'false';
271
  }
272
 
273
  $post_type['description'] = addslashes( $post_type['description'] );
286
  "description" => "<?php echo $post_type['description']; ?>",
287
  "public" => <?php echo disp_boolean( $post_type['public'] ); ?>,
288
  "show_ui" => <?php echo disp_boolean( $post_type['show_ui'] ); ?>,
289
+ "show_in_rest" => <?php echo disp_boolean( $post_type['show_in_rest'] ); ?>,
290
  "has_archive" => <?php echo disp_boolean( $post_type['has_archive'] ); ?>,
291
  "show_in_menu" => <?php echo disp_boolean( $post_type['show_in_menu'] ); ?>,
292
  "exclude_from_search" => <?php echo disp_boolean( $post_type['exclude_from_search'] ); ?>,
294
  "map_meta_cap" => <?php echo disp_boolean( $post_type['map_meta_cap'] ); ?>,
295
  "hierarchical" => <?php echo disp_boolean( $post_type['hierarchical'] ); ?>,
296
  "rewrite" => <?php echo $rewrite; ?>,
297
+ "query_var" => <?php echo $post_type['query_var']; ?>,
298
  <?php if ( !empty( $post_type['menu_position'] ) ) { ?>"menu_position" => <?php echo $post_type['menu_position']; ?>,<?php } ?><?php if ( !empty( $post_type['menu_icon'] ) ) { ?>"menu_icon" => "<?php echo $post_type['menu_icon']; ?>",<?php } ?>
299
  <?php if ( !empty( $supports ) ) { echo "\n\t\t" ?>"supports" => <?php echo $supports; ?>,<?php } ?>
300
+ <?php if ( !empty( $taxonomies ) ) { echo "\n\t\t" ?>"taxonomies" => <?php echo $taxonomies; ?>,<?php } ?>
301
+ <?php if ( true === $yarpp ) { echo "\n\t\t" ?>"yarpp_support" => <?php echo disp_boolean( $yarpp ); ?><?php } echo "\n";?>
302
  );
303
  register_post_type( "<?php echo $post_type['name']; ?>", $args );
304
  <?php
320
 
321
  $success = false;
322
 
323
+ /**
324
+ * Filters the post type data to import.
325
+ *
326
+ * Allows third parties to provide their own data dump and import instead of going through our UI.
327
+ *
328
+ * @since 1.2.0
329
+ *
330
+ * @param bool $value Default to no data.
331
+ */
332
+ $third_party_post_type_data = apply_filters( 'cptui_third_party_post_type_import', false );
333
+
334
+ /**
335
+ * Filters the taxonomy data to import.
336
+ *
337
+ * Allows third parties to provide their own data dump and import instead of going through our UI.
338
+ *
339
+ * @since 1.2.0
340
+ *
341
+ * @param bool $value Default to no data.
342
+ */
343
+ $third_party_taxonomy_data = apply_filters( 'cptui_third_party_taxonomy_import', false );
344
+
345
+ if ( false !== $third_party_post_type_data ) {
346
+ $postdata['cptui_post_import'] = $third_party_post_type_data;
347
+ }
348
+
349
+ if ( false !== $third_party_taxonomy_data ) {
350
+ $postdata['cptui_tax_import'] = $third_party_taxonomy_data;
351
+ }
352
+
353
  if ( !empty( $postdata['cptui_post_import'] ) ) {
354
+ $cpt_data = stripslashes_deep( trim( $postdata['cptui_post_import'] ) );
355
+ $settings = json_decode( $cpt_data, true );
356
+
357
+ # Add support to delete settings outright, without accessing database.
358
+ # Doing double check to protect.
359
+ if ( is_null( $settings ) && '{""}' === $cpt_data ) {
360
+ delete_option( 'cptui_post_types' );
361
+ # We're technically successful in a sense. Importing nothing.
362
+ $success = true;
363
+ }
364
 
365
  if ( $settings ) {
366
  if ( false !== get_option( 'cptui_post_types' ) ) {
369
 
370
  $success = update_option( 'cptui_post_types', $settings );
371
  }
372
+ return cptui_admin_notices( 'import', __( 'Post types', 'custom-post-type-ui' ), $success );
373
 
374
  } elseif ( !empty( $postdata['cptui_tax_import'] ) ) {
375
+ $tax_data = stripslashes_deep( trim( $postdata['cptui_tax_import'] ) );
376
+ $settings = json_decode( $tax_data, true );
377
+
378
+ # Add support to delete settings outright, without accessing database.
379
+ # Doing double check to protect.
380
+ if ( is_null( $settings ) && '{""}' === $tax_data ) {
381
+ delete_option( 'cptui_taxonomies' );
382
+ # We're technically successful in a sense. Importing nothing.
383
+ $success = true;
384
+ }
385
 
386
  if ( $settings ) {
387
  if ( false !== get_option( 'cptui_taxonomies' ) ) {
390
 
391
  $success = update_option( 'cptui_taxonomies', $settings );
392
  }
393
+ return cptui_admin_notices( 'import', __( 'Taxonomies', 'custom-post-type-ui' ), $success );
394
  }
395
 
396
  flush_rewrite_rules();
397
 
398
  return $success;
399
  }
400
+
401
+ function cptui_render_posttypes_taxonomies_section() {
402
+ ?>
403
+
404
+ <p><?php _e( 'If you are wanting to migrate registered post types or taxonomies from this site to another, that will also use Custom Post Type UI, use the import and export functionality. If you are moving away from Custom Post Type UI, use the information in the "Get Code" tab.', 'custom-post-type-ui' ); ?></p>
405
+
406
+ <p><?php printf( '<strong>%s</strong>: %s',
407
+ __( 'NOTE', 'custom-post-type-ui' ),
408
+ __( 'This will not export the associated posts or taxonomy terms, just the settings.', 'custom-post-type-ui' )
409
+ ); ?>
410
+ </p>
411
+ <table class="form-table cptui-table">
412
+ <?php if ( ! empty( $_GET ) && empty( $_GET['action'] ) ) { ?>
413
+ <tr>
414
+ <td class="outter">
415
+ <label for="cptui_post_import"><h2><?php _e( 'Import Post Types', 'custom-post-type-ui' ); ?></h2>
416
+ </label>
417
+
418
+ <form method="post">
419
+ <textarea class="cptui_post_import" placeholder="<?php esc_attr_e( 'Paste content here.', 'custom-post-type-ui' ); ?>" id="cptui_post_import" name="cptui_post_import"></textarea>
420
+
421
+ <p class="wp-ui-highlight">
422
+ <strong><?php _e( 'Note:', 'custom-post-type-ui' ); ?></strong> <?php _e( 'Importing will overwrite previous registered settings.', 'custom-post-type-ui' ); ?>
423
+ </p>
424
+
425
+ <p>
426
+ <strong><?php _e( 'To import post types from a different WordPress site, paste the exported content from that site and click the "Import" button.', 'custom-post-type-ui' ); ?></strong>
427
+ </p>
428
+
429
+ <p>
430
+ <input class="button button-primary" type="submit" value="<?php esc_attr_e( 'Import', 'custom-post-type-ui' ); ?>" />
431
+ </p>
432
+ </form>
433
+ </td>
434
+ <td class="outter">
435
+ <label for="cptui_post_export"><h2><?php _e( 'Export Post Types', 'custom-post-type-ui' ); ?></h2>
436
+ </label>
437
+ <?php
438
+ $cptui_post_types = get_option( 'cptui_post_types', array() );
439
+ if ( ! empty( $cptui_post_types ) ) {
440
+ $content = esc_html( json_encode( $cptui_post_types ) );
441
+ } else {
442
+ $content = __( 'No post types registered yet.', 'custom-post-type-ui' );
443
+ }
444
+ ?>
445
+ <textarea title="<?php esc_attr_e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'custom-post-type-ui' ); ?>" onclick="this.focus();this.select()" readonly="readonly" class="cptui_post_import" id="cptui_post_export" name="cptui_post_export"><?php echo $content; ?></textarea>
446
+
447
+ <p>
448
+ <strong><?php _e( 'Use the content above to import current post types into a different WordPress site. You can also use this to simply back up your post type settings.', 'custom-post-type-ui' ); ?></strong>
449
+ </p>
450
+ </td>
451
+ </tr>
452
+ <?php } elseif ( ! empty( $_GET ) && 'taxonomies' == $_GET['action'] ) { ?>
453
+ <tr>
454
+ <td class="outter">
455
+ <label for="cptui_tax_import"><h2><?php _e( 'Import Taxonomies', 'custom-post-type-ui' ); ?></h2>
456
+ </label>
457
+
458
+ <form method="post">
459
+ <textarea class="cptui_tax_import" placeholder="<?php esc_attr_e( 'Paste content here.', 'custom-post-type-ui' ); ?>" id="cptui_tax_import" name="cptui_tax_import"></textarea>
460
+
461
+ <p class="wp-ui-highlight">
462
+ <strong><?php _e( 'Note:', 'custom-post-type-ui' ); ?></strong> <?php _e( 'Importing will overwrite previous registered settings.', 'custom-post-type-ui' ); ?>
463
+ </p>
464
+
465
+ <p>
466
+ <strong><?php _e( 'To import taxonomies from a different WordPress site, paste the exported content from that site and click the "Import" button.', 'custom-post-type-ui' ); ?></strong>
467
+ </p>
468
+
469
+ <p>
470
+ <input class="button button-primary" type="submit" value="<?php esc_attr_e( 'Import', 'custom-post-type-ui' ); ?>" />
471
+ </p>
472
+ </form>
473
+ </td>
474
+ <td class="outter">
475
+ <label for="cptui_tax_export"><h2><?php _e( 'Export Taxonomies', 'custom-post-type-ui' ); ?></h2>
476
+ </label>
477
+ <?php
478
+ $cptui_taxonomies = get_option( 'cptui_taxonomies', array() );
479
+ if ( ! empty( $cptui_taxonomies ) ) {
480
+ $content = esc_html( json_encode( $cptui_taxonomies ) );
481
+ } else {
482
+ $content = __( 'No taxonomies registered yet.', 'custom-post-type-ui' );
483
+ }
484
+ ?>
485
+ <textarea title="<?php esc_attr_e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'custom-post-type-ui' ); ?>" onclick="this.focus();this.select()" readonly="readonly" class="cptui_tax_import" id="cptui_tax_export" name="cptui_tax_export"><?php echo $content; ?></textarea>
486
+
487
+ <p>
488
+ <strong><?php _e( 'Use the content above to import current taxonomies into a different WordPress site. You can also use this to simply back up your taxonomy settings.', 'custom-post-type-ui' ); ?></strong>
489
+ </p>
490
+ </td>
491
+ </tr>
492
+ <?php } ?>
493
+ </table>
494
+ <?php
495
+ }
496
+
497
+ function cptui_render_getcode_section() {
498
+ ?>
499
+ <h1><?php _e( 'Get Post Type and Taxonomy Code', 'custom-post-type-ui' ); ?></h1>
500
+
501
+ <h2><?php _e( 'All CPT UI Post Types', 'custom-post-type-ui' ); ?></h2>
502
+
503
+ <?php $cptui_post_types = get_option( 'cptui_post_types' ); ?>
504
+ <label for="cptui_post_type_get_code"><?php _e( 'Copy/paste the code below into your functions.php file.', 'custom-post-type-ui' ); ?></label>
505
+ <textarea name="cptui_post_type_get_code" id="cptui_post_type_get_code" class="cptui_post_type_get_code" onclick="this.focus();this.select()" readonly="readonly"><?php cptui_get_post_type_code( $cptui_post_types ); ?></textarea>
506
+
507
+ <?php
508
+ if ( !empty( $cptui_post_types ) ) {
509
+ foreach ( $cptui_post_types as $post_type ) { ?>
510
+ <h2><?php
511
+ $type = ( !empty( $post_type['label'] ) ) ? $post_type['label'] : $post_type['name'];
512
+ printf( __( '%s Post Type', 'custom-post-type-ui' ), $type ); ?></h2>
513
+ <label for="cptui_post_type_get_code_<?php echo $post_type['name']; ?>"><?php _e( 'Copy/paste the code below into your functions.php file.', 'custom-post-type-ui' ); ?></label>
514
+ <textarea name="cptui_post_type_get_code_<?php echo $post_type['name']; ?>" id="cptui_post_type_get_code_<?php echo $post_type['name']; ?>" class="cptui_post_type_get_code" onclick="this.focus();this.select()" readonly="readonly"><?php cptui_get_post_type_code( array( $post_type ), true ); ?></textarea>
515
+ <?php }
516
+ } ?>
517
+
518
+ <h2><?php _e( 'All CPT UI Taxonomies', 'custom-post-type-ui' ); ?></h2>
519
+
520
+ <?php $cptui_taxonomies = get_option( 'cptui_taxonomies' ); ?>
521
+ <label for="cptui_tax_get_code"><?php _e( 'Copy/paste the code below into your functions.php file.', 'custom-post-type-ui' ); ?></label>
522
+ <textarea name="cptui_tax_get_code" id="cptui_tax_get_code" class="cptui_tax_get_code" onclick="this.focus();this.select()" readonly="readonly"><?php cptui_get_taxonomy_code( $cptui_taxonomies ); ?></textarea>
523
+
524
+ <?php
525
+ if ( ! empty( $cptui_taxonomies ) ) {
526
+ foreach ( $cptui_taxonomies as $taxonomy ) { ?>
527
+ <h2><?php
528
+ $tax = ( ! empty( $taxonomy['label'] ) ) ? $taxonomy['label'] : $taxonomy['name'];
529
+ printf( __( '%s Taxonomy', 'custom-post-type-ui' ), $tax ); ?></h2>
530
+ <label for="cptui_tax_get_code_<?php echo $taxonomy['name']; ?>"><?php _e( 'Copy/paste the code below into your functions.php file.', 'custom-post-type-ui' ); ?></label>
531
+ <textarea name="cptui_tax_get_code_<?php echo $taxonomy['name']; ?>" id="cptui_tax_get_code_<?php echo $taxonomy['name']; ?>" class="cptui_tax_get_code" onclick="this.focus();this.select()" readonly="readonly"><?php cptui_get_taxonomy_code( array( $taxonomy ), true ); ?></textarea>
532
+ <?php }
533
+ } ?>
534
+ <?php
535
+ }
536
+
537
+ function cptui_render_debuginfo_section() {
538
+ $debuginfo = new CPTUI_Debug_Info();
539
+
540
+ echo '<form id="cptui_debug_info" method="post">';
541
+ $debuginfo->tab_site_info();
542
+
543
+ if ( ! empty( $_POST ) && isset( $_POST['cptui_debug_info_email'] ) ) {
544
+ $email_args = array();
545
+ $email_args['email'] = sanitize_text_field( $_POST['cptui_debug_info_email'] );
546
+ $debuginfo->send_email( $email_args );
547
+ }
548
+
549
+ echo '<p><label for="cptui_debug_info_email">' . __( 'Please provide an email address to send debug information to: ', 'custom-post-type-ui' ) . '</label><input type="email" id="cptui_debug_info_email" name="cptui_debug_info_email" value="" /></p>';
550
+
551
+ echo '<p><input type="submit" class="button-primary" name="cptui_send_debug_email" value="' . esc_attr( apply_filters( 'cptui_post_type_debug_email', __( 'Send debug info', 'custom-post-type-ui' ) ) ) . '" /></p>';
552
+ echo '</form>';
553
+ }
554
+
555
+ function cptui_render_importexportsections( $tab ) {
556
+ if ( isset( $tab ) ) {
557
+ if ( 'post_types' == $tab || 'taxonomies' == $tab ) {
558
+ cptui_render_posttypes_taxonomies_section();
559
+ }
560
+
561
+ if ( 'get_code' == $tab ) {
562
+ cptui_render_getcode_section();
563
+ }
564
+
565
+ if ( 'debuginfo' == $tab ) {
566
+ cptui_render_debuginfo_section();
567
+ }
568
+ }
569
+ }
570
+ add_action( 'cptui_import_export_sections', 'cptui_render_importexportsections' );
inc/listings.php CHANGED
@@ -7,18 +7,25 @@ function cptui_listings() {
7
  ?>
8
  <div class="wrap">
9
 
10
- <h1><?php _e( 'Post Types and Taxonomies registered by Custom Post Type UI.', 'cpt-plugin' ); ?></h1>
11
  <?php
12
  $post_types = get_option( 'cptui_post_types' );
13
-
14
  if ( !empty( $post_types ) ) {
15
-
16
- echo '<h2>' . __( 'Post Types', 'cpt-plugin' ) . '</h2>';
17
  ?>
18
- <p><?php printf( __( 'Total count: %d', 'cpt-plugin' ), count( $post_types ) ); ?></p>
19
 
20
  <?php
21
 
 
 
 
 
 
 
 
 
 
22
  /**
23
  * Fires before the listing of registered post type data.
24
  *
@@ -28,11 +35,9 @@ function cptui_listings() {
28
  ?>
29
  <table class="wp-list-table widefat">
30
  <tr>
31
- <th><?php _e( 'Post Type', 'cpt-plugin' ); ?></th>
32
- <th><?php _e( 'Settings', 'cpt-plugin' ); ?></th>
33
- <th><?php _e( 'Supports', 'cpt-plugin' ); ?></th>
34
- <th><?php _e( 'Taxonomies', 'cpt-plugin' ); ?></th>
35
- <th><?php _e( 'Labels', 'cpt-plugin' ); ?></th>
36
  </tr>
37
  <?php
38
  $counter = 1;
@@ -43,6 +48,7 @@ function cptui_listings() {
43
  $strings = array();
44
  $supports = array();
45
  $taxonomies = array();
 
46
  foreach( $post_type_settings as $settings_key => $settings_value ) {
47
  if ( 'labels' == $settings_key ) {
48
  continue;
@@ -68,11 +74,11 @@ function cptui_listings() {
68
  }
69
  ?>
70
  <tr class="<?php echo $rowclass; ?>">
71
- <td><a href="<?php echo admin_url( 'admin.php?page=cptui_manage_post_types&action=edit&cptui_post_type=' . $post_type ); ?>"><?php echo $post_type; ?></a><br/><hr/>
72
- <a href="<?php echo admin_url( 'admin.php?page=cptui_manage_post_types&action=edit&cptui_post_type=' . $post_type ); ?>"><?php _e( 'Edit', 'cpt-plugin' ); ?></a>
73
  <?php if ( $archive ) { ?>
74
  |
75
- <a href="<?php echo get_post_type_archive_link( $post_type ); ?>"><?php _e( 'View frontend archive', 'cpt-plugin' ); ?></a>
76
  <?php } ?>
77
  </td>
78
  <td>
@@ -105,10 +111,30 @@ function cptui_listings() {
105
  echo $key . ': ' . $value . '<br/>';
106
  }
107
  } else {
108
- _e( 'No custom labels to display', 'cpt-plugin' );
109
  }
110
  ?>
111
  </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  </tr>
113
 
114
  <?php
@@ -116,118 +142,153 @@ function cptui_listings() {
116
  }
117
  ?>
118
  <tr>
119
- <th><?php _e( 'Post Type', 'cpt-plugin' ); ?></th>
120
- <th><?php _e( 'Settings', 'cpt-plugin' ); ?></th>
121
- <th><?php _e( 'Supports', 'cpt-plugin' ); ?></th>
122
- <th><?php _e( 'Taxonomies', 'cpt-plugin' ); ?></th>
123
- <th><?php _e( 'Labels', 'cpt-plugin' ); ?></th>
124
  </tr>
125
  </table>
126
- <?php
 
 
 
 
 
 
 
127
  }
128
 
129
- $taxonomies = get_option( 'cptui_taxonomies' );
130
- if ( !empty( $taxonomies ) ) {
 
 
 
131
 
132
- echo '<h2>' . __( 'Taxonomies', 'cpt-plugin' ) . '</h2>';
133
- ?>
134
- <p><?php printf( __( 'Total count: %d', 'cpt-plugin' ), count( $taxonomies ) ); ?></p>
135
 
136
- <?php
 
 
 
 
 
 
137
 
138
- /**
139
- * Fires before the listing of registered taxonomy data.
140
- *
141
- * @since 1.1.0
142
- */
143
- do_action( 'cptui_before_taxonomy_listing' );
144
- ?>
145
- <table class="wp-list-table widefat">
146
- <tr>
147
- <th><?php _e( 'Taxonomy', 'cpt-plugin' ); ?></th>
148
- <th><?php _e( 'Settings', 'cpt-plugin' ); ?></th>
149
- <th><?php _e( 'Post Types', 'cpt-plugin' ); ?></th>
150
- <th><?php _e( 'Labels', 'cpt-plugin' ); ?></th>
151
- </tr>
152
- <?php
153
- $counter = 1;
154
- foreach ( $taxonomies as $taxonomy => $taxonomy_settings ) {
155
 
156
- $rowclass = ( $counter % 2 == 0 ) ? '' : 'alternate';
157
 
158
- $strings = array();
159
- $object_types = array();
160
- foreach( $taxonomy_settings as $settings_key => $settings_value ) {
161
- if ( 'labels' == $settings_key ) {
162
- continue;
163
- }
164
 
165
- if ( is_string( $settings_value ) ) {
166
- $strings[ $settings_key ] = $settings_value;
167
- } else {
168
- if ( 'object_types' === $settings_key ) {
169
- $object_types[ $settings_key ] = $settings_value;
170
 
171
- # In case they are not associated from the post type settings
172
- if ( empty( $object_types['taxonomies'] ) ) {
173
- $types = get_taxonomy( $taxonomy );
174
- $object_types['types'] = $types->object_type;
 
175
  }
176
  }
177
  }
178
- }
179
- ?>
180
- <tr class="<?php echo $rowclass; ?>">
181
- <td><a href="<?php echo admin_url( 'admin.php?page=cptui_manage_taxonomies&action=edit&cptui_taxonomy=' . $taxonomy ); ?>"><?php echo $taxonomy; ?></a><br/><hr/>
182
- <a href="<?php echo admin_url( 'admin.php?page=cptui_manage_taxonomies&action=edit&cptui_taxonomy=' . $taxonomy ); ?>"><?php _e( 'Edit', 'cpt-plugin' ); ?></a>
183
- </td>
184
- <td>
185
- <?php foreach ( $strings as $key => $value ) {
186
- printf( '<strong>%s:</strong> ', $key );
187
- if ( in_array( $value, array( '1', '0' ) ) ) {
188
- echo disp_boolean( $value );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  } else {
190
- echo $value;
191
- }
192
- echo '<br/>';
193
- } ?>
194
- </td>
195
- <td>
196
- <?php
197
- if ( !empty( $object_types['types'] ) ) {
198
- foreach ( $object_types['types'] as $type ) {
199
- echo $type . '<br/>';
200
- }
201
- } ?>
202
- </td>
203
- <td>
204
- <?php
205
- $maybe_empty = array_filter( $taxonomy_settings['labels'] );
206
- if ( !empty( $maybe_empty ) ) {
207
- foreach ( $taxonomy_settings['labels'] as $key => $value ) {
208
- echo $key . ': ' . $value . '<br/>';
209
  }
210
- } else {
211
- _e( 'No custom labels to display', 'cpt-plugin' );
212
- }
213
- ?>
214
- </td>
215
- </tr>
 
 
 
 
216
 
217
- <?php
218
- $counter++;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  }
220
- ?>
221
- <tr>
222
- <th><?php _e( 'Taxonomy', 'cpt-plugin' ); ?></th>
223
- <th><?php _e( 'Settings', 'cpt-plugin' ); ?></th>
224
- <th><?php _e( 'Post Types', 'cpt-plugin' ); ?></th>
225
- <th><?php _e( 'Labels', 'cpt-plugin' ); ?></th>
226
- </tr>
227
- </table>
228
- <?php
229
- }
230
- ?>
231
 
232
  </div>
233
  <?php
7
  ?>
8
  <div class="wrap">
9
 
10
+ <h1><?php _e( 'Post Types and Taxonomies registered by Custom Post Type UI.', 'custom-post-type-ui' ); ?></h1>
11
  <?php
12
  $post_types = get_option( 'cptui_post_types' );
13
+ echo '<h2>' . __( 'Post Types', 'custom-post-type-ui' ) . '</h2>';
14
  if ( !empty( $post_types ) ) {
 
 
15
  ?>
16
+ <p><?php printf( __( 'Total count: %d', 'custom-post-type-ui' ), count( $post_types ) ); ?></p>
17
 
18
  <?php
19
 
20
+ $post_type_table_heads = array(
21
+ __( 'Post Type', 'custom-post-type-ui' ),
22
+ __( 'Settings', 'custom-post-type-ui' ),
23
+ __( 'Supports', 'custom-post-type-ui' ),
24
+ __( 'Taxonomies', 'custom-post-type-ui' ),
25
+ __( 'Labels', 'custom-post-type-ui' ),
26
+ __( 'Template Hierarchy', 'custom-post-type-ui' )
27
+ );
28
+
29
  /**
30
  * Fires before the listing of registered post type data.
31
  *
35
  ?>
36
  <table class="wp-list-table widefat">
37
  <tr>
38
+ <?php foreach( $post_type_table_heads as $head ) {
39
+ echo '<th>' . $head . '</th>';
40
+ } ?>
 
 
41
  </tr>
42
  <?php
43
  $counter = 1;
48
  $strings = array();
49
  $supports = array();
50
  $taxonomies = array();
51
+ $archive = '';
52
  foreach( $post_type_settings as $settings_key => $settings_value ) {
53
  if ( 'labels' == $settings_key ) {
54
  continue;
74
  }
75
  ?>
76
  <tr class="<?php echo $rowclass; ?>">
77
+ <?php $post_type_link_url = admin_url( 'admin.php?page=cptui_manage_post_types&action=edit&cptui_post_type=' . $post_type ); ?>
78
+ <td><a href="<?php echo $post_type_link_url; ?>"><?php printf( __( 'Edit %s', 'custom-post-type-ui' ), $post_type ); ?></a>
79
  <?php if ( $archive ) { ?>
80
  |
81
+ <a href="<?php echo get_post_type_archive_link( $post_type ); ?>"><?php _e( 'View frontend archive', 'custom-post-type-ui' ); ?></a>
82
  <?php } ?>
83
  </td>
84
  <td>
111
  echo $key . ': ' . $value . '<br/>';
112
  }
113
  } else {
114
+ _e( 'No custom labels to display', 'custom-post-type-ui' );
115
  }
116
  ?>
117
  </td>
118
+ <td>
119
+ <p><strong><?php _e( 'Archives file name examples.', 'custom-post-type-ui' ); ?></strong><br/>
120
+ archive-<?php echo $post_type; ?>.php<br/>
121
+ archive.php<br/>
122
+ index.php
123
+ </p>
124
+
125
+ <p><strong><?php _e( 'Single Posts file name examples.', 'custom-post-type-ui' ); ?></strong><br/>
126
+ single-<?php echo $post_type; ?>.php<br/>
127
+ single.php<br/>
128
+ singular.php(WP 4.3+)<br/>
129
+ index.php
130
+ </p>
131
+
132
+ <p><?php printf(
133
+ '<a href="https://developer.wordpress.org/themes/basics/template-hierarchy/">%s</a>',
134
+ __( 'Template hierarchy Theme Handbook', 'custom-post-type-ui' )
135
+ ); ?>
136
+ </p>
137
+ </td>
138
  </tr>
139
 
140
  <?php
142
  }
143
  ?>
144
  <tr>
145
+ <?php foreach ( $post_type_table_heads as $head ) {
146
+ echo '<th>' . $head . '</th>';
147
+ } ?>
 
 
148
  </tr>
149
  </table>
150
+ <?php
151
+ } else {
152
+ echo '<p>' . sprintf( __( 'No post types registered for display. Visit %s to get started.', 'custom-post-type-ui' ),
153
+ sprintf( '<a href="%s">%s</a>',
154
+ admin_url( 'admin.php?page=cptui_manage_post_types' ),
155
+ __( 'Add/Edit Post Types', 'custom-post-type-ui' )
156
+ )
157
+ ) . '</p>';
158
  }
159
 
160
+ $taxonomies = get_option( 'cptui_taxonomies' );
161
+ echo '<h2>' . __( 'Taxonomies', 'custom-post-type-ui' ) . '</h2>';
162
+ if ( !empty( $taxonomies ) ) {
163
+ ?>
164
+ <p><?php printf( __( 'Total count: %d', 'custom-post-type-ui' ), count( $taxonomies ) ); ?></p>
165
 
166
+ <?php
 
 
167
 
168
+ $taxonomy_table_heads = array(
169
+ __( 'Taxonomy', 'custom-post-type-ui' ),
170
+ __( 'Settings', 'custom-post-type-ui' ),
171
+ __( 'Post Types', 'custom-post-type-ui' ),
172
+ __( 'Labels', 'custom-post-type-ui' ),
173
+ __( 'Template Hierarchy', 'custom-post-type-ui' )
174
+ );
175
 
176
+ /**
177
+ * Fires before the listing of registered taxonomy data.
178
+ *
179
+ * @since 1.1.0
180
+ */
181
+ do_action( 'cptui_before_taxonomy_listing' );
182
+ ?>
183
+ <table class="wp-list-table widefat">
184
+ <tr>
185
+ <?php foreach ( $taxonomy_table_heads as $head ) {
186
+ echo '<th>' . $head . '</th>';
187
+ } ?>
188
+ </tr>
189
+ <?php
190
+ $counter = 1;
191
+ foreach ( $taxonomies as $taxonomy => $taxonomy_settings ) {
 
192
 
193
+ $rowclass = ( $counter % 2 == 0 ) ? '' : 'alternate';
194
 
195
+ $strings = array();
196
+ $object_types = array();
197
+ foreach( $taxonomy_settings as $settings_key => $settings_value ) {
198
+ if ( 'labels' == $settings_key ) {
199
+ continue;
200
+ }
201
 
202
+ if ( is_string( $settings_value ) ) {
203
+ $strings[ $settings_key ] = $settings_value;
204
+ } else {
205
+ if ( 'object_types' === $settings_key ) {
206
+ $object_types[ $settings_key ] = $settings_value;
207
 
208
+ # In case they are not associated from the post type settings
209
+ if ( empty( $object_types['object_types'] ) ) {
210
+ $types = get_taxonomy( $taxonomy );
211
+ $object_types['object_types'] = $types->object_type;
212
+ }
213
  }
214
  }
215
  }
216
+ ?>
217
+ <tr class="<?php echo $rowclass; ?>">
218
+ <?php $taxonomy_link_url = admin_url( 'admin.php?page=cptui_manage_taxonomies&action=edit&cptui_taxonomy=' . $taxonomy ); ?>
219
+ <td><a href="<?php echo $taxonomy_link_url; ?>"><?php echo $taxonomy; ?></a><br/><hr/>
220
+ <a href="<?php echo $taxonomy_link_url; ?>"><?php printf( __( 'Edit %s', 'custom-post-type-ui' ), $taxonomy ); ?></a>
221
+ </td>
222
+ <td>
223
+ <?php foreach ( $strings as $key => $value ) {
224
+ printf( '<strong>%s:</strong> ', $key );
225
+ if ( in_array( $value, array( '1', '0' ) ) ) {
226
+ echo disp_boolean( $value );
227
+ } else {
228
+ echo $value;
229
+ }
230
+ echo '<br/>';
231
+ } ?>
232
+ </td>
233
+ <td>
234
+ <?php
235
+ if ( !empty( $object_types['object_types'] ) ) {
236
+ foreach ( $object_types['object_types'] as $type ) {
237
+ echo $type . '<br/>';
238
+ }
239
+ } ?>
240
+ </td>
241
+ <td>
242
+ <?php
243
+ $maybe_empty = array_filter( $taxonomy_settings['labels'] );
244
+ if ( !empty( $maybe_empty ) ) {
245
+ foreach ( $taxonomy_settings['labels'] as $key => $value ) {
246
+ echo $key . ': ' . $value . '<br/>';
247
+ }
248
  } else {
249
+ _e( 'No custom labels to display', 'custom-post-type-ui' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  }
251
+ ?>
252
+ </td>
253
+ <td>
254
+ <p><strong><?php _e( 'Archives', 'custom-post-type-ui' ); ?></strong><br />
255
+ taxonomy-<?php echo $taxonomy; ?>-term_slug.php *<br />
256
+ taxonomy-<?php echo $taxonomy; ?>.php<br />
257
+ taxonomy.php<br />
258
+ archive.php<br />
259
+ index.php
260
+ </p>
261
 
262
+ <p>
263
+ <?php _e( '*Replace "term_slug" with the slug of the actual taxonomy term.', 'custom-post-type-ui' ); ?>
264
+ </p>
265
+ <p><?php printf(
266
+ '<a href="https://developer.wordpress.org/themes/basics/template-hierarchy/">%s</a>',
267
+ __( 'Template hierarchy Theme Handbook', 'custom-post-type-ui' )
268
+ ); ?></p>
269
+ </td>
270
+ </tr>
271
+
272
+ <?php
273
+ $counter++;
274
+ }
275
+ ?>
276
+ <tr>
277
+ <?php foreach ( $taxonomy_table_heads as $head ) {
278
+ echo '<th>' . $head . '</th>';
279
+ } ?>
280
+ </tr>
281
+ </table>
282
+ <?php
283
+ } else {
284
+ echo '<p>' . sprintf( __( 'No taxonomies registered for display. Visit %s to get started.', 'custom-post-type-ui' ),
285
+ sprintf( '<a href="%s">%s</a>',
286
+ admin_url( 'admin.php?page=cptui_manage_taxonomies' ),
287
+ __( 'Add/Edit Taxonomies', 'custom-post-type-ui' )
288
+ )
289
+ ) . '</p>';
290
  }
291
+ ?>
 
 
 
 
 
 
 
 
 
 
292
 
293
  </div>
294
  <?php
inc/post-types.php CHANGED
@@ -19,6 +19,10 @@ function cptui_post_type_enqueue_scripts() {
19
  return;
20
  }
21
 
 
 
 
 
22
  /*$post_types = get_option( 'cptui_post_types' );
23
  foreach( $post_types as $type ) {
24
  $types[] = $type['name'];
@@ -27,9 +31,9 @@ function cptui_post_type_enqueue_scripts() {
27
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js', dirname(__FILE__) ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
28
  wp_localize_script( 'cptui', 'cptui_type_data',
29
  array(
30
- 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ),
31
  # 'post_types' => $types,
32
- #'post_change_name' => '<div class="typetax-rename">' . __( 'Changing this will rename the post type.', 'cpt-plugin' ) . '</div>'
33
  )
34
  );
35
  }
@@ -86,23 +90,32 @@ function cptui_manage_post_types() {
86
  # Will only be set if we're already on the edit screen
87
  if ( !empty( $post_types ) ) { ?>
88
  <form id="cptui_select_post_type" method="post">
89
- <p><?php _e( 'DO NOT EDIT the post type slug unless necessary. Changing that value registers a new post type entry for your install.', 'cpt-plugin' ); ?></p>
90
- <p><?php _e( 'Use appropriate checkbox above save/delete buttons if you wish to change slugs and update post types for existing posts.', 'cpt-plugin' ); ?></p>
91
- <?php _e( 'Select: ', 'cpt-plugin' );
 
92
  cptui_post_types_dropdown( $post_types );
 
 
 
 
 
 
 
 
93
  ?>
94
- <input type="submit" class="button-secondary" name="cptui_select_post_type_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_select', __( 'Select', 'cpt-plugin' ) ) ); ?>" />
95
  </form>
96
  <?php
97
 
98
- /**
99
- * Fires below the post type select input.
100
- *
101
- * @since 1.1.0
102
- *
103
- * @param string $value Current post type selected.
104
- */
105
- do_action( 'cptui_below_post_type_select', $current['name'] );
106
  } ?>
107
 
108
  <form method="post">
@@ -121,9 +134,9 @@ function cptui_manage_post_types() {
121
  'textvalue' => ( isset( $current['name'] ) ) ? esc_attr( $current['name'] ) : '',
122
  'maxlength' => '20',
123
  'onblur' => 'this.value=this.value.toLowerCase()',
124
- 'labeltext' => __( 'Post Type Slug', 'cpt-plugin' ),
125
- 'aftertext' => __( '(e.g. movie)', 'cpt-plugin' ),
126
- 'helptext' => esc_attr__( 'The post type name. Used to retrieve custom post type content. Should be short and unique', 'cpt-plugin'),
127
  'required' => true
128
  ) );
129
 
@@ -134,9 +147,9 @@ function cptui_manage_post_types() {
134
  'namearray' => 'cpt_custom_post_type',
135
  'name' => 'label',
136
  'textvalue' => ( isset( $current['label'] ) ) ? esc_attr( $current['label'] ) : '',
137
- 'labeltext' => __( 'Plural Label', 'cpt-plugin' ),
138
- 'aftertext' => __( '(e.g. Movies)', 'cpt-plugin' ),
139
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
140
  ) );
141
 
142
  /*
@@ -146,9 +159,9 @@ function cptui_manage_post_types() {
146
  'namearray' => 'cpt_custom_post_type',
147
  'name' => 'singular_label',
148
  'textvalue' => ( isset( $current['singular_label'] ) ) ? esc_attr( $current['singular_label'] ) : '',
149
- 'labeltext' => __( 'Singular Label', 'cpt-plugin' ),
150
- 'aftertext' => __( '(e.g. Movie)', 'cpt-plugin' ),
151
- 'helptext' => esc_attr__( 'Custom Post Type Singular label. Used in WordPress when a singular label is needed.', 'cpt-plugin' ),
152
  ) );
153
 
154
  /*
@@ -164,8 +177,8 @@ function cptui_manage_post_types() {
164
  'rows' => '4',
165
  'cols' => '40',
166
  'textvalue' => ( isset( $current['description'] ) ) ? esc_textarea( $current['description'] ) : '',
167
- 'labeltext' => __('Description', 'cpt-plugin'),
168
- 'helptext' => esc_attr__( 'Custom Post Type Description. Describe what your custom post type is used for.', 'cpt-plugin' )
169
  ) );
170
 
171
  /*
@@ -177,8 +190,8 @@ function cptui_manage_post_types() {
177
  'checked' => 'false',
178
  'name' => 'update_post_types',
179
  'namearray' => 'update_post_types',
180
- 'labeltext' => __( 'Migrate posts to newly renamed post type?', 'cpt-plugin' ),
181
- 'helptext' => esc_attr__( 'Check this to migrate posts if and when renaming your post type.', 'cpt-plugin' ),
182
  'default' => false
183
  ) );
184
  }
@@ -187,10 +200,40 @@ function cptui_manage_post_types() {
187
  <p class="submit">
188
  <?php wp_nonce_field( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
189
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
190
- <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_edit', __( 'Save Post Type', 'cpt-plugin' ) ) ); ?>" />
191
- <input type="submit" class="button-secondary" name="cpt_delete" id="cpt_submit_delete" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_delete', __( 'Delete Post Type', 'cpt-plugin' ) ) ); ?>" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  <?php } else { ?>
193
- <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_add', __( 'Add Post Type', 'cpt-plugin' ) ) ); ?>" />
 
 
 
 
 
 
 
 
 
 
194
  <?php } ?>
195
 
196
  <?php if ( !empty( $current ) ) { ?>
@@ -201,18 +244,18 @@ function cptui_manage_post_types() {
201
  </p>
202
 
203
  <?php if ( 'new' == $tab ) { ?>
204
- <h3><?php _e( 'Starter Notes', 'cpt-plugin' ); ?></h3>
205
  <div><ol>
206
  <?php
207
- echo '<li>' . sprintf( __( 'Post Type names should have %smax 20 characters%s, and only contain alphanumeric, lowercase characters, underscores in place of spaces and letters that do not have accents. Reserved names: post, page, attachment, revision, nav_menu_item.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' );
208
- echo '<li>' . sprintf( __( 'If you are unfamiliar with the advanced post type settings, just fill in the %sPost Type Name%s and %sLabel%s fields. Remaining settings will use default values. Labels, if left blank, will be automatically created based on the post type name. Hover over the question mark for more details.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>', '<strong class="wp-ui-highlight">', '</strong>' );
209
- echo '<li>' . sprintf( __( 'Deleting custom post types will %sNOT%s delete any content into the database or added to those post types. You can easily recreate your post types and the content will still exist.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
210
  </ol></div>
211
  <?php } ?>
212
  </td>
213
  <td class="outter">
214
  <div>
215
- <h3><?php _e( 'Labels', 'cpt-plugin' ); ?></h3>
216
  <div>
217
  <table>
218
  <?php
@@ -220,161 +263,161 @@ function cptui_manage_post_types() {
220
  * Post Admin Menu Name
221
  */
222
  echo $ui->get_text_input( array(
223
- 'labeltext' => __( 'Menu Name', 'cpt-plugin' ),
224
- 'helptext' => esc_attr__( 'Custom menu name for your custom post type.', 'cpt-plugin' ),
225
  'namearray' => 'cpt_labels',
226
  'name' => 'menu_name',
227
  'textvalue' => ( isset( $current['labels']['menu_name'] ) ) ? esc_attr( $current['labels']['menu_name'] ) : '',
228
- 'aftertext' => __( '(e.g. My Movies)', 'cpt-plugin' )
229
  ) );
230
 
231
  /*
232
  * Post All Items
233
  */
234
  echo $ui->get_text_input( array(
235
- 'labeltext' => __( 'All Items', 'cpt-plugin' ),
236
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
237
  'namearray' => 'cpt_labels',
238
  'name' => 'all_items',
239
  'textvalue' => ( isset( $current['labels']['all_items'] ) ) ? esc_attr( $current['labels']['all_items'] ) : '',
240
- 'aftertext' => __( '(e.g. All Movies)', 'cpt-plugin' )
241
  ) );
242
 
243
  /*
244
  * Add New Label
245
  */
246
  echo $ui->get_text_input( array(
247
- 'labeltext' => __( 'Add New', 'cpt-plugin' ),
248
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
249
  'namearray' => 'cpt_labels',
250
  'name' => 'add_new',
251
  'textvalue' => ( isset( $current['labels']['add_new'] ) ) ? esc_attr( $current['labels']['add_new'] ) : '',
252
- 'aftertext' => __( '(e.g. Add New)', 'cpt-plugin' )
253
  ) );
254
 
255
  /*
256
  * Add New Item Label
257
  */
258
  echo $ui->get_text_input( array(
259
- 'labeltext' => __( 'Add New Item', 'cpt-plugin' ),
260
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
261
  'namearray' => 'cpt_labels',
262
  'name' => 'add_new_item',
263
  'textvalue' => ( isset( $current['labels']['add_new_item'] ) ) ? esc_attr( $current['labels']['add_new_item'] ) : '',
264
- 'aftertext' => __( '(e.g. Add New Movie)', 'cpt-plugin' )
265
  ) );
266
 
267
  /*
268
  * Edit Label
269
  */
270
  echo $ui->get_text_input( array(
271
- 'labeltext' => __( 'Edit', 'cpt-plugin' ),
272
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
273
  'namearray' => 'cpt_labels',
274
  'name' => 'edit',
275
  'textvalue' => ( isset( $current['labels']['edit'] ) ) ? esc_attr( $current['labels']['edit'] ) : '',
276
- 'aftertext' => __( '(e.g. Edit)', 'cpt-plugin' )
277
  ) );
278
 
279
  /*
280
  * Edit Item Label
281
  */
282
  echo $ui->get_text_input( array(
283
- 'labeltext' => __( 'Edit Item', 'cpt-plugin' ),
284
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
285
  'namearray' => 'cpt_labels',
286
  'name' => 'edit_item',
287
  'textvalue' => ( isset( $current['labels']['edit_item'] ) ) ? esc_attr( $current['labels']['edit_item'] ) : '',
288
- 'aftertext' => __( '(e.g. Edit Movie)', 'cpt-plugin' )
289
  ) );
290
 
291
  /*
292
  * New Item Label
293
  */
294
  echo $ui->get_text_input( array(
295
- 'labeltext' => __( 'New Item', 'cpt-plugin' ),
296
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
297
  'namearray' => 'cpt_labels',
298
  'name' => 'new_item',
299
  'textvalue' => ( isset( $current['labels']['new_item'] ) ) ? esc_attr( $current['labels']['new_item'] ) : '',
300
- 'aftertext' => __( '(e.g. New Movie)', 'cpt-plugin' )
301
  ) );
302
 
303
  /*
304
  * View Label
305
  */
306
  echo $ui->get_text_input( array(
307
- 'labeltext' => __( 'View', 'cpt-plugin' ),
308
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
309
  'namearray' => 'cpt_labels',
310
  'name' => 'view',
311
  'textvalue' => ( isset( $current['labels']['view'] ) ) ? esc_attr( $current['labels']['view'] ) : '',
312
- 'aftertext' => __( '(e.g. View)', 'cpt-plugin' )
313
  ) );
314
 
315
  /*
316
  * View Item Label
317
  */
318
  echo $ui->get_text_input( array(
319
- 'labeltext' => __( 'View Item', 'cpt-plugin' ),
320
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
321
  'namearray' => 'cpt_labels',
322
  'name' => 'view_item',
323
  'textvalue' => ( isset( $current['labels']['view_item'] ) ) ? esc_attr( $current['labels']['view_item'] ) : '',
324
- 'aftertext' => __( '(e.g. View Movie)', 'cpt-plugin' )
325
  ) );
326
 
327
  /*
328
  * Search Item Label
329
  */
330
  echo $ui->get_text_input( array(
331
- 'labeltext' => __( 'Search Item', 'cpt-plugin' ),
332
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
333
  'namearray' => 'cpt_labels',
334
  'name' => 'search_items',
335
  'textvalue' => ( isset( $current['labels']['search_items'] ) ) ? esc_attr( $current['labels']['search_items'] ) : '',
336
- 'aftertext' => __( '(e.g. Search Movie)', 'cpt-plugin' )
337
  ) );
338
 
339
  /*
340
  * Not Found Label
341
  */
342
  echo $ui->get_text_input( array(
343
- 'labeltext' => __( 'Not Found', 'cpt-plugin' ),
344
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
345
  'namearray' => 'cpt_labels',
346
  'name' => 'not_found',
347
  'textvalue' => ( isset( $current['labels']['not_found'] ) ) ? esc_attr( $current['labels']['not_found'] ) : '',
348
- 'aftertext' => __( '(e.g. No Movies found)', 'cpt-plugin' )
349
  ) );
350
 
351
  /*
352
  * Not Found In Trash Label
353
  */
354
  echo $ui->get_text_input( array(
355
- 'labeltext' => __( 'Not Found in Trash', 'cpt-plugin' ),
356
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
357
  'namearray' => 'cpt_labels',
358
  'name' => 'not_found_in_trash',
359
  'textvalue' => ( isset( $current['labels']['not_found_in_trash'] ) ) ? esc_attr( $current['labels']['not_found_in_trash'] ) : '',
360
- 'aftertext' => __( '(e.g. No Movies found in Trash)', 'cpt-plugin' )
361
  ) );
362
 
363
  /*
364
  * Parent Label
365
  */
366
  echo $ui->get_text_input( array(
367
- 'labeltext' => __( 'Parent', 'cpt-plugin' ),
368
- 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'cpt-plugin' ),
369
  'namearray' => 'cpt_labels',
370
  'name' => 'parent',
371
  'textvalue' => ( isset( $current['labels']['parent'] ) ) ? esc_attr( $current['labels']['parent'] ) : '',
372
- 'aftertext' => __( '(e.g. Parent Movie)', 'cpt-plugin' )
373
  ) );
374
  ?>
375
  </table>
376
  </div>
377
- <h3><?php _e( 'Settings', 'cpt-plugin' ); ?></h3>
378
  <div>
379
  <table>
380
  <?php
@@ -383,8 +426,8 @@ function cptui_manage_post_types() {
383
  */
384
  $select = array(
385
  'options' => array(
386
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
387
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
388
  )
389
  );
390
  $selected = ( isset( $current ) ) ? disp_boolean( $current['public'] ) : '';
@@ -392,9 +435,9 @@ function cptui_manage_post_types() {
392
  echo $ui->get_select_input( array(
393
  'namearray' => 'cpt_custom_post_type',
394
  'name' => 'public',
395
- 'labeltext' => __( 'Public', 'cpt-plugin' ),
396
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
397
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI and is publicly queryable.', 'cpt-plugin' ),
398
  'selections' => $select
399
  ) );
400
 
@@ -403,8 +446,8 @@ function cptui_manage_post_types() {
403
  */
404
  $select = array(
405
  'options' => array(
406
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
407
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
408
  )
409
  );
410
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_ui'] ) : '';
@@ -412,25 +455,76 @@ function cptui_manage_post_types() {
412
  echo $ui->get_select_input( array(
413
  'namearray' => 'cpt_custom_post_type',
414
  'name' => 'show_ui',
415
- 'labeltext' => __( 'Show UI', 'cpt-plugin' ),
416
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
417
- 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this post type.', 'cpt-plugin' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  'selections' => $select
419
  ) );
420
 
 
 
 
 
 
 
 
 
 
 
 
421
  /*
422
  * Has Archive Boolean
423
  */
424
  echo $ui->get_tr_start() . $ui->get_th_start();
425
- echo $ui->get_label( 'has_archive', __( 'Has Archive', 'cpt-plugin' ) );
426
- echo $ui->get_help( esc_attr__( 'Whether the post type will have a post type archive URL.', 'cpt-plugin' ) );
427
- echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'cpt-plugin' ) );
428
  echo $ui->get_th_end() . $ui->get_td_start();
429
 
430
  $select = array(
431
  'options' => array(
432
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
433
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ) )
434
  )
435
  );
436
  $selected = ( isset( $current ) ) ? disp_boolean( $current['has_archive'] ) : '';
@@ -438,7 +532,7 @@ function cptui_manage_post_types() {
438
  echo $ui->get_select_input( array(
439
  'namearray' => 'cpt_custom_post_type',
440
  'name' => 'has_archive',
441
- 'aftertext' => __( '(default: False)', 'cpt-plugin' ),
442
  'selections' => $select,
443
  'wrap' => false
444
  ) );
@@ -450,7 +544,7 @@ function cptui_manage_post_types() {
450
  'namearray' => 'cpt_custom_post_type',
451
  'name' => 'has_archive_string',
452
  'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
453
- 'helptext' => esc_attr__( 'Slug to be used for archive URL.', 'cpt-plugin' ),
454
  'helptext_after'=> true,
455
  'wrap' => false
456
  ) );
@@ -461,8 +555,8 @@ function cptui_manage_post_types() {
461
  */
462
  $select = array(
463
  'options' => array(
464
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
465
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ) )
466
  )
467
  );
468
  $selected = ( isset( $current ) ) ? disp_boolean( $current['exclude_from_search'] ) : '';
@@ -470,9 +564,9 @@ function cptui_manage_post_types() {
470
  echo $ui->get_select_input( array(
471
  'namearray' => 'cpt_custom_post_type',
472
  'name' => 'exclude_from_search',
473
- 'labeltext' => __( 'Exclude From Search', 'cpt-plugin' ),
474
- 'aftertext' => __( '(default: False)', 'cpt-plugin' ),
475
- 'helptext' => esc_attr__( 'Whether to exclude posts with this post type from front end search results.', 'cpt-plugin' ),
476
  'selections' => $select
477
  ) );
478
 
@@ -483,8 +577,8 @@ function cptui_manage_post_types() {
483
  'namearray' => 'cpt_custom_post_type',
484
  'name' => 'capability_type',
485
  'textvalue' => ( isset( $current['capability_type'] ) ) ? esc_attr( $current['capability_type'] ) : 'post',
486
- 'labeltext' => __( 'Capability Type', 'cpt-plugin' ),
487
- 'helptext' => esc_attr__( 'The post type to use for checking read, edit, and delete capabilities', 'cpt-plugin' ),
488
  ) );
489
 
490
  /*
@@ -492,8 +586,8 @@ function cptui_manage_post_types() {
492
  */
493
  $select = array(
494
  'options' => array(
495
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
496
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ) )
497
  )
498
  );
499
  $selected = ( isset( $current ) ) ? disp_boolean( $current['hierarchical'] ) : '';
@@ -501,9 +595,9 @@ function cptui_manage_post_types() {
501
  echo $ui->get_select_input( array(
502
  'namearray' => 'cpt_custom_post_type',
503
  'name' => 'hierarchical',
504
- 'labeltext' => __( 'Hierarchical', 'cpt-plugin' ),
505
- 'aftertext' => __( '(default: False)', 'cpt-plugin' ),
506
- 'helptext' => esc_attr__( 'Whether the post type can have parent-child relationships', 'cpt-plugin' ),
507
  'selections' => $select
508
  ) );
509
 
@@ -512,8 +606,8 @@ function cptui_manage_post_types() {
512
  */
513
  $select = array(
514
  'options' => array(
515
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
516
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
517
  )
518
  );
519
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite'] ) : '';
@@ -521,9 +615,9 @@ function cptui_manage_post_types() {
521
  echo $ui->get_select_input( array(
522
  'namearray' => 'cpt_custom_post_type',
523
  'name' => 'rewrite',
524
- 'labeltext' => __( 'Rewrite', 'cpt-plugin' ),
525
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
526
- 'helptext' => esc_attr__( 'Whether or not WordPress should use rewrites for this post type', 'cpt-plugin' ),
527
  'selections' => $select
528
  ) );
529
 
@@ -534,9 +628,9 @@ function cptui_manage_post_types() {
534
  'namearray' => 'cpt_custom_post_type',
535
  'name' => 'rewrite_slug',
536
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
537
- 'labeltext' => __( 'Custom Rewrite Slug', 'cpt-plugin' ),
538
- 'aftertext' => __( '(default: post type slug)', 'cpt-plugin' ),
539
- 'helptext' => esc_attr__( 'Custom post type slug to use instead of the default.', 'cpt-plugin' ),
540
  ) );
541
 
542
  /*
@@ -544,8 +638,8 @@ function cptui_manage_post_types() {
544
  */
545
  $select = array(
546
  'options' => array(
547
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
548
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
549
  )
550
  );
551
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite_withfront'] ) : '';
@@ -553,9 +647,9 @@ function cptui_manage_post_types() {
553
  echo $ui->get_select_input( array(
554
  'namearray' => 'cpt_custom_post_type',
555
  'name' => 'rewrite_withfront',
556
- 'labeltext' => __( 'With Front', 'cpt-plugin' ),
557
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
558
- 'helptext' => esc_attr__( 'Should the permastruct be prepended with the front base.', 'cpt-plugin' ),
559
  'selections' => $select
560
  ) );
561
 
@@ -564,8 +658,8 @@ function cptui_manage_post_types() {
564
  */
565
  $select = array(
566
  'options' => array(
567
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
568
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
569
  )
570
  );
571
  $selected = ( isset( $current ) ) ? disp_boolean( $current['query_var'] ) : '';
@@ -573,19 +667,31 @@ function cptui_manage_post_types() {
573
  echo $ui->get_select_input( array(
574
  'namearray' => 'cpt_custom_post_type',
575
  'name' => 'query_var',
576
- 'labeltext' => __( 'Query Var', 'cpt-plugin' ),
577
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
578
- 'helptext' => esc_attr__( 'Sets the query_var key for this post type.', 'cpt-plugin' ),
579
  'selections' => $select
580
  ) );
581
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  /*
583
  * Menu Position Boolean
584
  */
585
  echo $ui->get_tr_start() . $ui->get_th_start();
586
- echo $ui->get_label( 'menu_position', __( 'Menu Position', 'cpt-plugin' ) );
587
- echo $ui->get_help( esc_attr__( 'The position in the menu order the post type should appear. show_in_menu must be true.', 'cpt-plugin' ) );
588
- echo $ui->get_p( __( 'See <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Parameters" target="_blank">Available options</a> in the "menu_position" section. Range of 5-100', 'cpt-plugin' ) );
589
 
590
  echo $ui->get_th_end() . $ui->get_td_start();
591
  echo $ui->get_text_input( array(
@@ -600,15 +706,15 @@ function cptui_manage_post_types() {
600
  * Show In Menu Boolean
601
  */
602
  echo $ui->get_tr_start() . $ui->get_th_start();
603
- echo $ui->get_label( 'show_in_menu', __( 'Show in Menu', 'cpt-plugin' ) );
604
- echo $ui->get_help( esc_attr__( 'Whether to show the post type in the admin menu and where to show that menu.', 'cpt-plugin' ) );
605
- echo $ui->get_p( __( '"Show UI" must be "true". If an existing top level page such as "tools.php" is indicated for second input, post type will be sub menu of that.', 'cpt-plugin' ) );
606
  echo $ui->get_th_end() . $ui->get_td_start();
607
 
608
  $select = array(
609
  'options' => array(
610
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
611
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
612
  )
613
  );
614
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_in_menu'] ) : '';
@@ -616,7 +722,7 @@ function cptui_manage_post_types() {
616
  echo $ui->get_select_input( array(
617
  'namearray' => 'cpt_custom_post_type',
618
  'name' => 'show_in_menu',
619
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
620
  'selections' => $select,
621
  'wrap' => false
622
  ) );
@@ -628,7 +734,7 @@ function cptui_manage_post_types() {
628
  'namearray' => 'cpt_custom_post_type',
629
  'name' => 'show_in_menu_string',
630
  'textvalue' => ( isset( $current['show_in_menu_string'] ) ) ? esc_attr( $current['show_in_menu_string'] ) : '',
631
- 'helptext' => esc_attr__( 'Top-level page file name to make post type a sub-menu of.', 'cpt-plugin' ),
632
  'helptext_after'=> true,
633
  'wrap' => false
634
  ) );
@@ -640,12 +746,12 @@ function cptui_manage_post_types() {
640
  'namearray' => 'cpt_custom_post_type',
641
  'name' => 'menu_icon',
642
  'textvalue' => ( isset( $current['menu_icon'] ) ) ? esc_attr( $current['menu_icon'] ) : '',
643
- 'labeltext' => __( 'Menu Icon', 'cpt-plugin' ),
644
- 'aftertext' => __( '(Full URL for icon or Dashicon class)', 'cpt-plugin' ),
645
- 'helptext' => esc_attr__( 'URL to image to be used as menu icon or Dashicon class to use instead.', 'cpt-plugin' ),
646
  ) );
647
 
648
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Supports', 'cpt-plugin' ) . $ui->get_th_end() . $ui->get_td_start();
649
  /*
650
  * Supports Title Checkbox
651
  */
@@ -655,8 +761,8 @@ function cptui_manage_post_types() {
655
  'name' => 'title',
656
  'namearray' => 'cpt_supports',
657
  'textvalue' => 'title',
658
- 'labeltext' => __( 'Title' , 'cpt-plugin' ),
659
- 'helptext' => esc_attr__( 'Adds the title meta box when creating content for this custom post type', 'cpt-plugin' ),
660
  'default' => true,
661
  'wrap' => false
662
  ) );
@@ -670,8 +776,8 @@ function cptui_manage_post_types() {
670
  'name' => 'editor',
671
  'namearray' => 'cpt_supports',
672
  'textvalue' => 'editor',
673
- 'labeltext' => __( 'Editor' , 'cpt-plugin' ),
674
- 'helptext' => esc_attr__( 'Adds the content editor meta box when creating content for this custom post type', 'cpt-plugin' ),
675
  'default' => true,
676
  'wrap' => false
677
  ) );
@@ -685,8 +791,8 @@ function cptui_manage_post_types() {
685
  'name' => 'excerpt',
686
  'namearray' => 'cpt_supports',
687
  'textvalue' => 'excerpt',
688
- 'labeltext' => __( 'Excerpt' , 'cpt-plugin' ),
689
- 'helptext' => esc_attr__( 'Adds the excerpt meta box when creating content for this custom post type', 'cpt-plugin' ),
690
  'default' => true,
691
  'wrap' => false
692
  ) );
@@ -700,8 +806,8 @@ function cptui_manage_post_types() {
700
  'name' => 'trackbacks',
701
  'namearray' => 'cpt_supports',
702
  'textvalue' => 'trackbacks',
703
- 'labeltext' => __( 'Trackbacks' , 'cpt-plugin' ),
704
- 'helptext' => esc_attr__( 'Adds the trackbacks meta box when creating content for this custom post type', 'cpt-plugin' ),
705
  'default' => true,
706
  'wrap' => false
707
  ) );
@@ -715,8 +821,8 @@ function cptui_manage_post_types() {
715
  'name' => 'custom-fields',
716
  'namearray' => 'cpt_supports',
717
  'textvalue' => 'custom-fields',
718
- 'labeltext' => __( 'Custom Fields' , 'cpt-plugin' ),
719
- 'helptext' => esc_attr__( 'Adds the custom fields meta box when creating content for this custom post type', 'cpt-plugin' ),
720
  'default' => true,
721
  'wrap' => false
722
  ) );
@@ -730,8 +836,8 @@ function cptui_manage_post_types() {
730
  'name' => 'comments',
731
  'namearray' => 'cpt_supports',
732
  'textvalue' => 'comments',
733
- 'labeltext' => __( 'Comments' , 'cpt-plugin' ),
734
- 'helptext' => esc_attr__( 'Adds the comments meta box when creating content for this custom post type', 'cpt-plugin' ),
735
  'default' => true,
736
  'wrap' => false
737
  ) );
@@ -745,8 +851,8 @@ function cptui_manage_post_types() {
745
  'name' => 'revisions',
746
  'namearray' => 'cpt_supports',
747
  'textvalue' => 'revisions',
748
- 'labeltext' => __( 'Revisions' , 'cpt-plugin' ),
749
- 'helptext' => esc_attr__( 'Adds the revisions meta box when creating content for this custom post type', 'cpt-plugin' ),
750
  'default' => true,
751
  'wrap' => false
752
  ) );
@@ -760,8 +866,8 @@ function cptui_manage_post_types() {
760
  'name' => 'thumbnail',
761
  'namearray' => 'cpt_supports',
762
  'textvalue' => 'thumbnail',
763
- 'labeltext' => __( 'Featured Image' , 'cpt-plugin' ),
764
- 'helptext' => esc_attr__( 'Adds the featured image meta box when creating content for this custom post type', 'cpt-plugin' ),
765
  'default' => true,
766
  'wrap' => false
767
  ) );
@@ -775,8 +881,8 @@ function cptui_manage_post_types() {
775
  'name' => 'author',
776
  'namearray' => 'cpt_supports',
777
  'textvalue' => 'author',
778
- 'labeltext' => __( 'Author' , 'cpt-plugin' ),
779
- 'helptext' => esc_attr__( 'Adds the author meta box when creating content for this custom post type', 'cpt-plugin' ),
780
  'default' => true,
781
  'wrap' => false
782
  ) );
@@ -790,8 +896,8 @@ function cptui_manage_post_types() {
790
  'name' => 'page-attributes',
791
  'namearray' => 'cpt_supports',
792
  'textvalue' => 'page-attributes',
793
- 'labeltext' => __( 'Page Attributes' , 'cpt-plugin' ),
794
- 'helptext' => esc_attr__( 'Adds the page attribute meta box when creating content for this custom post type', 'cpt-plugin' ),
795
  'default' => true,
796
  'wrap' => false
797
  ) );
@@ -805,13 +911,13 @@ function cptui_manage_post_types() {
805
  'name' => 'post-formats',
806
  'namearray' => 'cpt_supports',
807
  'textvalue' => 'post-formats',
808
- 'labeltext' => __( 'Post Formats' , 'cpt-plugin' ),
809
- 'helptext' => esc_attr__( 'Adds post format support', 'cpt-plugin' ),
810
  'default' => true,
811
  'wrap' => false
812
  ) );
813
 
814
- echo $ui->get_p( __( 'Use the option below to explicitly set "supports" to false.', 'cpt-plugin' ) );
815
 
816
  echo $ui->get_check_input( array(
817
  'checkvalue' => 'none',
@@ -819,27 +925,28 @@ function cptui_manage_post_types() {
819
  'name' => 'none',
820
  'namearray' => 'cpt_supports',
821
  'textvalue' => 'none',
822
- 'labeltext' => __( 'None' , 'cpt-plugin' ),
823
- 'helptext' => esc_attr__( 'Remove all support features', 'cpt-plugin' ),
824
  'default' => false,
825
  'wrap' => false
826
  ) );
827
- echo $ui->get_td_end() . $ui->get_tr_end();
828
 
829
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Custom "Supports"', 'cpt-plugin' );
830
- echo $ui->get_p( __( 'Use this input to register custom "supports" values, separated by commas.', 'cpt-plugin' ) );
 
 
831
  echo $ui->get_th_end() . $ui->get_td_start();
832
  echo $ui->get_text_input( array(
833
  'namearray' => 'cpt_custom_post_type',
834
  'name' => 'custom_supports',
835
  'textvalue' => ( isset( $current['custom_supports'] ) ) ? esc_attr( $current['custom_supports'] ) : '',
836
- 'helptext' => esc_attr__( 'Provide custom support slugs here.', 'cpt-plugin' ),
837
  'helptext_after'=> true,
838
  'wrap' => false
839
  ) );
840
  echo $ui->get_td_end() . $ui->get_tr_end();
841
 
842
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Built-in Taxonomies', 'cpt-plugin' ) . $ui->get_th_end() . $ui->get_td_start();
843
 
844
  /**
845
  * Filters the arguments for taxonomies to list for post type association.
@@ -868,12 +975,12 @@ function cptui_manage_post_types() {
868
  'namearray' => 'cpt_addon_taxes',
869
  'textvalue' => $add_tax->name,
870
  'labeltext' => $add_tax->label,
871
- 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'cpt-plugin' ), $add_tax->label ),
872
  'wrap' => false
873
  ) );
874
  }
875
 
876
- echo $ui->get_td_end() . $ui->get_tr_end(); ?>
877
  </table>
878
  </div>
879
  </div>
@@ -903,7 +1010,8 @@ function cptui_post_types_dropdown( $post_types = array() ) {
903
  $select['options'] = array();
904
 
905
  foreach( $post_types as $type ) {
906
- $select['options'][] = array( 'attr' => $type['name'], 'text' => $type['label'] );
 
907
  }
908
 
909
  $current = cptui_get_current_post_type();
@@ -974,7 +1082,7 @@ function cptui_delete_post_type( $data = array() ) {
974
  }
975
 
976
  if ( empty( $data['cpt_custom_post_type']['name'] ) || ! post_type_exists( $data['cpt_custom_post_type']['name'] ) ) {
977
- return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type to delete', 'cpt-plugin' ) );
978
  }
979
 
980
  /**
@@ -1034,7 +1142,7 @@ function cptui_update_post_type( $data = array() ) {
1034
 
1035
  # They need to provide a name
1036
  if ( empty( $data['cpt_custom_post_type']['name'] ) ) {
1037
- return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type name', 'cpt-plugin' ) );
1038
  }
1039
 
1040
  if ( !empty( $data['cpt_original'] ) && $data['cpt_original'] != $data['cpt_custom_post_type']['name'] ) {
@@ -1058,14 +1166,14 @@ function cptui_update_post_type( $data = array() ) {
1058
  false !== strpos( $data['cpt_custom_post_type']['rewrite_slug'], '\'' ) ||
1059
  false !== strpos( $data['cpt_custom_post_type']['rewrite_slug'], '\"' ) ) {
1060
 
1061
- return cptui_admin_notices( 'error', '', false, __( 'Please do not use quotes in post type names or rewrite slugs', 'cpt-plugin' ) );
1062
  }
1063
 
1064
  $post_types = get_option( 'cptui_post_types', array() );
1065
 
1066
  # Check if we already have a post type of that name.
1067
  if ( 'new' == $data['cpt_type_status'] && ( array_key_exists( strtolower( $data['cpt_custom_post_type']['name'] ), $post_types ) || in_array( $data['cpt_custom_post_type']['name'], cptui_reserved_post_types() ) ) ) {
1068
- return cptui_admin_notices( 'error', '', false, sprintf( __( 'Please choose a different post type name. %s is already registered.', 'cpt-plugin' ), $data['cpt_custom_post_type']['name'] ) );
1069
  }
1070
 
1071
  if ( empty( $data['cpt_addon_taxes'] ) || !is_array( $data['cpt_addon_taxes'] ) ) {
@@ -1099,9 +1207,11 @@ function cptui_update_post_type( $data = array() ) {
1099
 
1100
  $name = trim( $data['cpt_custom_post_type']['name'] );
1101
  $description = stripslashes_deep( $data['cpt_custom_post_type']['description'] );
 
1102
  $has_archive_string = trim( $data['cpt_custom_post_type']['has_archive_string'] );
1103
  $capability_type = trim( $data['cpt_custom_post_type']['capability_type'] );
1104
  $rewrite_slug = trim( $data['cpt_custom_post_type']['rewrite_slug'] );
 
1105
  $menu_position = trim( $data['cpt_custom_post_type']['menu_position'] );
1106
  $show_in_menu_string = trim( $data['cpt_custom_post_type']['show_in_menu_string'] );
1107
  $menu_icon = trim( $data['cpt_custom_post_type']['menu_icon'] );
@@ -1114,6 +1224,9 @@ function cptui_update_post_type( $data = array() ) {
1114
  'description' => $description,
1115
  'public' => disp_boolean( $data['cpt_custom_post_type']['public'] ),
1116
  'show_ui' => disp_boolean( $data['cpt_custom_post_type']['show_ui'] ),
 
 
 
1117
  'has_archive' => disp_boolean( $data['cpt_custom_post_type']['has_archive'] ),
1118
  'has_archive_string' => $has_archive_string,
1119
  'exclude_from_search' => disp_boolean( $data['cpt_custom_post_type']['exclude_from_search'] ),
@@ -1123,6 +1236,7 @@ function cptui_update_post_type( $data = array() ) {
1123
  'rewrite_slug' => $rewrite_slug,
1124
  'rewrite_withfront' => disp_boolean( $data['cpt_custom_post_type']['rewrite_withfront'] ),
1125
  'query_var' => disp_boolean( $data['cpt_custom_post_type']['query_var'] ),
 
1126
  'menu_position' => $menu_position,
1127
  'show_in_menu' => disp_boolean( $data['cpt_custom_post_type']['show_in_menu'] ),
1128
  'show_in_menu_string' => $show_in_menu_string,
@@ -1163,6 +1277,17 @@ function cptui_update_post_type( $data = array() ) {
1163
  */
1164
  function cptui_reserved_post_types() {
1165
 
 
 
 
 
 
 
 
 
 
 
 
1166
  /**
1167
  * Filters the list of reserved post types to check against.
1168
  *
@@ -1172,16 +1297,17 @@ function cptui_reserved_post_types() {
1172
  *
1173
  * @param array $value Array of post type slugs to forbid.
1174
  */
1175
- return apply_filters( 'cptui_reserved_post_types', array(
1176
- 'post',
1177
- 'page',
1178
- 'attachment',
1179
- 'revision',
1180
- 'nav_menu_item',
1181
- 'action',
1182
- 'order',
1183
- 'theme'
1184
- ) );
 
1185
  }
1186
 
1187
  /**
19
  return;
20
  }
21
 
22
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
23
+ return;
24
+ }
25
+
26
  /*$post_types = get_option( 'cptui_post_types' );
27
  foreach( $post_types as $type ) {
28
  $types[] = $type['name'];
31
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js', dirname(__FILE__) ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
32
  wp_localize_script( 'cptui', 'cptui_type_data',
33
  array(
34
+ 'confirm' => __( 'Are you sure you want to delete this?', 'custom-post-type-ui' ),
35
  # 'post_types' => $types,
36
+ #'post_change_name' => '<div class="typetax-rename">' . __( 'Changing this will rename the post type.', 'custom-post-type-ui' ) . '</div>'
37
  )
38
  );
39
  }
90
  # Will only be set if we're already on the edit screen
91
  if ( !empty( $post_types ) ) { ?>
92
  <form id="cptui_select_post_type" method="post">
93
+ <p><?php _e( 'DO NOT EDIT the post type slug unless necessary. Changing that value registers a new post type entry for your install.', 'custom-post-type-ui' ); ?></p>
94
+ <p><?php _e( 'Use appropriate checkbox above save/delete buttons if you wish to change slugs and update post types for existing posts.', 'custom-post-type-ui' ); ?></p>
95
+ <label for="post_type"><?php _e( 'Select: ', 'custom-post-type-ui' ); ?></label>
96
+ <?php
97
  cptui_post_types_dropdown( $post_types );
98
+
99
+ /**
100
+ * Filters the text value to use on the select post type button.
101
+ *
102
+ * @since 1.0.0
103
+ *
104
+ * @param string $value Text to use for the button.
105
+ */
106
  ?>
107
+ <input type="submit" class="button-secondary" name="cptui_select_post_type_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_select', __( 'Select', 'custom-post-type-ui' ) ) ); ?>" />
108
  </form>
109
  <?php
110
 
111
+ /**
112
+ * Fires below the post type select input.
113
+ *
114
+ * @since 1.1.0
115
+ *
116
+ * @param string $value Current post type selected.
117
+ */
118
+ do_action( 'cptui_below_post_type_select', $current['name'] );
119
  } ?>
120
 
121
  <form method="post">
134
  'textvalue' => ( isset( $current['name'] ) ) ? esc_attr( $current['name'] ) : '',
135
  'maxlength' => '20',
136
  'onblur' => 'this.value=this.value.toLowerCase()',
137
+ 'labeltext' => __( 'Post Type Slug', 'custom-post-type-ui' ),
138
+ 'aftertext' => __( '(e.g. movie)', 'custom-post-type-ui' ),
139
+ 'helptext' => esc_attr__( 'The post type name. Used to retrieve custom post type content. Should be short and unique', 'custom-post-type-ui'),
140
  'required' => true
141
  ) );
142
 
147
  'namearray' => 'cpt_custom_post_type',
148
  'name' => 'label',
149
  'textvalue' => ( isset( $current['label'] ) ) ? esc_attr( $current['label'] ) : '',
150
+ 'labeltext' => __( 'Plural Label', 'custom-post-type-ui' ),
151
+ 'aftertext' => __( '(e.g. Movies)', 'custom-post-type-ui' ),
152
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
153
  ) );
154
 
155
  /*
159
  'namearray' => 'cpt_custom_post_type',
160
  'name' => 'singular_label',
161
  'textvalue' => ( isset( $current['singular_label'] ) ) ? esc_attr( $current['singular_label'] ) : '',
162
+ 'labeltext' => __( 'Singular Label', 'custom-post-type-ui' ),
163
+ 'aftertext' => __( '(e.g. Movie)', 'custom-post-type-ui' ),
164
+ 'helptext' => esc_attr__( 'Custom Post Type Singular label. Used in WordPress when a singular label is needed.', 'custom-post-type-ui' ),
165
  ) );
166
 
167
  /*
177
  'rows' => '4',
178
  'cols' => '40',
179
  'textvalue' => ( isset( $current['description'] ) ) ? esc_textarea( $current['description'] ) : '',
180
+ 'labeltext' => __('Description', 'custom-post-type-ui'),
181
+ 'helptext' => esc_attr__( 'Custom Post Type Description. Describe what your custom post type is used for.', 'custom-post-type-ui' )
182
  ) );
183
 
184
  /*
190
  'checked' => 'false',
191
  'name' => 'update_post_types',
192
  'namearray' => 'update_post_types',
193
+ 'labeltext' => __( 'Migrate posts to newly renamed post type?', 'custom-post-type-ui' ),
194
+ 'helptext' => esc_attr__( 'Check this to migrate posts if and when renaming your post type.', 'custom-post-type-ui' ),
195
  'default' => false
196
  ) );
197
  }
200
  <p class="submit">
201
  <?php wp_nonce_field( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
202
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
203
+ <?php
204
+
205
+ /**
206
+ * Filters the text value to use on the button when editing.
207
+ *
208
+ * @since 1.0.0
209
+ *
210
+ * @param string $value Text to use for the button.
211
+ */
212
+ ?>
213
+ <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_edit', __( 'Save Post Type', 'custom-post-type-ui' ) ) ); ?>" />
214
+ <?php
215
+
216
+ /**
217
+ * Filters the text value to use on the button when deleting.
218
+ *
219
+ * @since 1.0.0
220
+ *
221
+ * @param string $value Text to use for the button.
222
+ */
223
+ ?>
224
+ <input type="submit" class="button-secondary" name="cpt_delete" id="cpt_submit_delete" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_delete', __( 'Delete Post Type', 'custom-post-type-ui' ) ) ); ?>" />
225
  <?php } else { ?>
226
+ <?php
227
+
228
+ /**
229
+ * Filters the text value to use on the button when adding.
230
+ *
231
+ * @since 1.0.0
232
+ *
233
+ * @param string $value Text to use for the button.
234
+ */
235
+ ?>
236
+ <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_add', __( 'Add Post Type', 'custom-post-type-ui' ) ) ); ?>" />
237
  <?php } ?>
238
 
239
  <?php if ( !empty( $current ) ) { ?>
244
  </p>
245
 
246
  <?php if ( 'new' == $tab ) { ?>
247
+ <h2><?php _e( 'Starter Notes', 'custom-post-type-ui' ); ?></h2>
248
  <div><ol>
249
  <?php
250
+ echo '<li>' . sprintf( __( 'Post Type names should have %smax 20 characters%s, and only contain alphanumeric, lowercase characters, underscores in place of spaces and letters that do not have accents. Reserved names: post, page, attachment, revision, nav_menu_item.', 'custom-post-type-ui' ), '<strong class="wp-ui-highlight">', '</strong>' );
251
+ echo '<li>' . sprintf( __( 'If you are unfamiliar with the advanced post type settings, just fill in the %sPost Type Name%s and %sLabel%s fields. Remaining settings will use default values. Labels, if left blank, will be automatically created based on the post type name. Hover over the question mark for more details.', 'custom-post-type-ui' ), '<strong class="wp-ui-highlight">', '</strong>', '<strong class="wp-ui-highlight">', '</strong>' );
252
+ echo '<li>' . sprintf( __( 'Deleting custom post types will %sNOT%s delete any content into the database or added to those post types. You can easily recreate your post types and the content will still exist.', 'custom-post-type-ui' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
253
  </ol></div>
254
  <?php } ?>
255
  </td>
256
  <td class="outter">
257
  <div>
258
+ <h2><?php _e( 'Labels', 'custom-post-type-ui' ); ?></h2>
259
  <div>
260
  <table>
261
  <?php
263
  * Post Admin Menu Name
264
  */
265
  echo $ui->get_text_input( array(
266
+ 'labeltext' => __( 'Menu Name', 'custom-post-type-ui' ),
267
+ 'helptext' => esc_attr__( 'Custom menu name for your custom post type.', 'custom-post-type-ui' ),
268
  'namearray' => 'cpt_labels',
269
  'name' => 'menu_name',
270
  'textvalue' => ( isset( $current['labels']['menu_name'] ) ) ? esc_attr( $current['labels']['menu_name'] ) : '',
271
+ 'aftertext' => __( '(e.g. My Movies)', 'custom-post-type-ui' )
272
  ) );
273
 
274
  /*
275
  * Post All Items
276
  */
277
  echo $ui->get_text_input( array(
278
+ 'labeltext' => __( 'All Items', 'custom-post-type-ui' ),
279
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
280
  'namearray' => 'cpt_labels',
281
  'name' => 'all_items',
282
  'textvalue' => ( isset( $current['labels']['all_items'] ) ) ? esc_attr( $current['labels']['all_items'] ) : '',
283
+ 'aftertext' => __( '(e.g. All Movies)', 'custom-post-type-ui' )
284
  ) );
285
 
286
  /*
287
  * Add New Label
288
  */
289
  echo $ui->get_text_input( array(
290
+ 'labeltext' => __( 'Add New', 'custom-post-type-ui' ),
291
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
292
  'namearray' => 'cpt_labels',
293
  'name' => 'add_new',
294
  'textvalue' => ( isset( $current['labels']['add_new'] ) ) ? esc_attr( $current['labels']['add_new'] ) : '',
295
+ 'aftertext' => __( '(e.g. Add New)', 'custom-post-type-ui' )
296
  ) );
297
 
298
  /*
299
  * Add New Item Label
300
  */
301
  echo $ui->get_text_input( array(
302
+ 'labeltext' => __( 'Add New Item', 'custom-post-type-ui' ),
303
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
304
  'namearray' => 'cpt_labels',
305
  'name' => 'add_new_item',
306
  'textvalue' => ( isset( $current['labels']['add_new_item'] ) ) ? esc_attr( $current['labels']['add_new_item'] ) : '',
307
+ 'aftertext' => __( '(e.g. Add New Movie)', 'custom-post-type-ui' )
308
  ) );
309
 
310
  /*
311
  * Edit Label
312
  */
313
  echo $ui->get_text_input( array(
314
+ 'labeltext' => __( 'Edit', 'custom-post-type-ui' ),
315
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
316
  'namearray' => 'cpt_labels',
317
  'name' => 'edit',
318
  'textvalue' => ( isset( $current['labels']['edit'] ) ) ? esc_attr( $current['labels']['edit'] ) : '',
319
+ 'aftertext' => __( '(e.g. Edit)', 'custom-post-type-ui' )
320
  ) );
321
 
322
  /*
323
  * Edit Item Label
324
  */
325
  echo $ui->get_text_input( array(
326
+ 'labeltext' => __( 'Edit Item', 'custom-post-type-ui' ),
327
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
328
  'namearray' => 'cpt_labels',
329
  'name' => 'edit_item',
330
  'textvalue' => ( isset( $current['labels']['edit_item'] ) ) ? esc_attr( $current['labels']['edit_item'] ) : '',
331
+ 'aftertext' => __( '(e.g. Edit Movie)', 'custom-post-type-ui' )
332
  ) );
333
 
334
  /*
335
  * New Item Label
336
  */
337
  echo $ui->get_text_input( array(
338
+ 'labeltext' => __( 'New Item', 'custom-post-type-ui' ),
339
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
340
  'namearray' => 'cpt_labels',
341
  'name' => 'new_item',
342
  'textvalue' => ( isset( $current['labels']['new_item'] ) ) ? esc_attr( $current['labels']['new_item'] ) : '',
343
+ 'aftertext' => __( '(e.g. New Movie)', 'custom-post-type-ui' )
344
  ) );
345
 
346
  /*
347
  * View Label
348
  */
349
  echo $ui->get_text_input( array(
350
+ 'labeltext' => __( 'View', 'custom-post-type-ui' ),
351
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
352
  'namearray' => 'cpt_labels',
353
  'name' => 'view',
354
  'textvalue' => ( isset( $current['labels']['view'] ) ) ? esc_attr( $current['labels']['view'] ) : '',
355
+ 'aftertext' => __( '(e.g. View)', 'custom-post-type-ui' )
356
  ) );
357
 
358
  /*
359
  * View Item Label
360
  */
361
  echo $ui->get_text_input( array(
362
+ 'labeltext' => __( 'View Item', 'custom-post-type-ui' ),
363
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
364
  'namearray' => 'cpt_labels',
365
  'name' => 'view_item',
366
  'textvalue' => ( isset( $current['labels']['view_item'] ) ) ? esc_attr( $current['labels']['view_item'] ) : '',
367
+ 'aftertext' => __( '(e.g. View Movie)', 'custom-post-type-ui' )
368
  ) );
369
 
370
  /*
371
  * Search Item Label
372
  */
373
  echo $ui->get_text_input( array(
374
+ 'labeltext' => __( 'Search Item', 'custom-post-type-ui' ),
375
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
376
  'namearray' => 'cpt_labels',
377
  'name' => 'search_items',
378
  'textvalue' => ( isset( $current['labels']['search_items'] ) ) ? esc_attr( $current['labels']['search_items'] ) : '',
379
+ 'aftertext' => __( '(e.g. Search Movie)', 'custom-post-type-ui' )
380
  ) );
381
 
382
  /*
383
  * Not Found Label
384
  */
385
  echo $ui->get_text_input( array(
386
+ 'labeltext' => __( 'Not Found', 'custom-post-type-ui' ),
387
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
388
  'namearray' => 'cpt_labels',
389
  'name' => 'not_found',
390
  'textvalue' => ( isset( $current['labels']['not_found'] ) ) ? esc_attr( $current['labels']['not_found'] ) : '',
391
+ 'aftertext' => __( '(e.g. No Movies found)', 'custom-post-type-ui' )
392
  ) );
393
 
394
  /*
395
  * Not Found In Trash Label
396
  */
397
  echo $ui->get_text_input( array(
398
+ 'labeltext' => __( 'Not Found in Trash', 'custom-post-type-ui' ),
399
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
400
  'namearray' => 'cpt_labels',
401
  'name' => 'not_found_in_trash',
402
  'textvalue' => ( isset( $current['labels']['not_found_in_trash'] ) ) ? esc_attr( $current['labels']['not_found_in_trash'] ) : '',
403
+ 'aftertext' => __( '(e.g. No Movies found in Trash)', 'custom-post-type-ui' )
404
  ) );
405
 
406
  /*
407
  * Parent Label
408
  */
409
  echo $ui->get_text_input( array(
410
+ 'labeltext' => __( 'Parent', 'custom-post-type-ui' ),
411
+ 'helptext' => esc_attr__( 'Post type label. Used in the admin menu for displaying post types.', 'custom-post-type-ui' ),
412
  'namearray' => 'cpt_labels',
413
  'name' => 'parent',
414
  'textvalue' => ( isset( $current['labels']['parent'] ) ) ? esc_attr( $current['labels']['parent'] ) : '',
415
+ 'aftertext' => __( '(e.g. Parent Movie)', 'custom-post-type-ui' )
416
  ) );
417
  ?>
418
  </table>
419
  </div>
420
+ <h2><?php _e( 'Settings', 'custom-post-type-ui' ); ?></h2>
421
  <div>
422
  <table>
423
  <?php
426
  */
427
  $select = array(
428
  'options' => array(
429
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
430
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
431
  )
432
  );
433
  $selected = ( isset( $current ) ) ? disp_boolean( $current['public'] ) : '';
435
  echo $ui->get_select_input( array(
436
  'namearray' => 'cpt_custom_post_type',
437
  'name' => 'public',
438
+ 'labeltext' => __( 'Public', 'custom-post-type-ui' ),
439
+ 'aftertext' => __( '(CPTUI default: True.)', 'custom-post-type-ui' ),
440
+ 'helptext' => esc_attr__( 'WordPress core defaults to false. CPTUI defaults to true for user sake. Whether posts of this type should be shown in the admin UI and is publicly queryable.', 'custom-post-type-ui' ),
441
  'selections' => $select
442
  ) );
443
 
446
  */
447
  $select = array(
448
  'options' => array(
449
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
450
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
451
  )
452
  );
453
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_ui'] ) : '';
455
  echo $ui->get_select_input( array(
456
  'namearray' => 'cpt_custom_post_type',
457
  'name' => 'show_ui',
458
+ 'labeltext' => __( 'Show UI', 'custom-post-type-ui' ),
459
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
460
+ 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this post type.', 'custom-post-type-ui' ),
461
+ 'selections' => $select
462
+ ) );
463
+
464
+ /*
465
+ * Show in Nav Menus
466
+ */
467
+ $select = array(
468
+ 'options' => array(
469
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
470
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
471
+ )
472
+ );
473
+ $selected = ( isset( $current ) ) ? disp_boolean( $current['show_in_nav_menus'] ) : '';
474
+ $select['selected'] = ( ! empty( $selected ) ) ? $current['show_in_nav_menus'] : '';
475
+ echo $ui->get_select_input( array(
476
+ 'namearray' => 'cpt_custom_post_type',
477
+ 'name' => 'show_in_nav_menus',
478
+ 'labeltext' => __( 'Show in Nav Menus', 'custom-post-type-ui' ),
479
+ 'aftertext' => __( '(CPTUI default: true)', 'custom-post-type-ui' ),
480
+ 'helptext' => esc_attr__( 'Whether post type is available for selection in navigation menus.', 'custom-post-type-ui' ),
481
+ 'selections' => $select
482
+ ) );
483
+
484
+ /*
485
+ * show_in_rest Boolean
486
+ */
487
+ $select = array(
488
+ 'options' => array(
489
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'false' ),
490
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
491
+ )
492
+ );
493
+ $selected = ( isset( $current ) ) ? disp_boolean( $current['show_in_rest'] ) : '';
494
+ $select['selected'] = ( !empty( $selected ) ) ? $current['show_in_rest'] : '';
495
+ echo $ui->get_select_input( array(
496
+ 'namearray' => 'cpt_custom_post_type',
497
+ 'name' => 'show_in_rest',
498
+ 'labeltext' => __( 'Show in REST API', 'custom-post-type-ui' ),
499
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
500
+ 'helptext' => esc_attr__( 'Whether to show this post type data in the WP REST API.', 'custom-post-type-ui' ),
501
  'selections' => $select
502
  ) );
503
 
504
+ /*
505
+ * rest_base slug.
506
+ */
507
+ echo $ui->get_text_input( array(
508
+ 'labeltext' => __( 'REST API base slug', 'custom-post-type-ui' ),
509
+ 'helptext' => esc_attr__( 'Slug to use in REST API URLs.', 'custom-post-type-ui' ),
510
+ 'namearray' => 'cpt_custom_post_type',
511
+ 'name' => 'rest_base',
512
+ 'textvalue' => ( isset( $current['rest_base'] ) ) ? esc_attr( $current['rest_base'] ) : '',
513
+ ) );
514
+
515
  /*
516
  * Has Archive Boolean
517
  */
518
  echo $ui->get_tr_start() . $ui->get_th_start();
519
+ echo $ui->get_label( 'has_archive', __( 'Has Archive', 'custom-post-type-ui' ) );
520
+ echo $ui->get_help( esc_attr__( 'Whether the post type will have a post type archive URL.', 'custom-post-type-ui' ) );
521
+ echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'custom-post-type-ui' ) );
522
  echo $ui->get_th_end() . $ui->get_td_start();
523
 
524
  $select = array(
525
  'options' => array(
526
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'true' ),
527
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
528
  )
529
  );
530
  $selected = ( isset( $current ) ) ? disp_boolean( $current['has_archive'] ) : '';
532
  echo $ui->get_select_input( array(
533
  'namearray' => 'cpt_custom_post_type',
534
  'name' => 'has_archive',
535
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
536
  'selections' => $select,
537
  'wrap' => false
538
  ) );
544
  'namearray' => 'cpt_custom_post_type',
545
  'name' => 'has_archive_string',
546
  'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
547
+ 'helptext' => esc_attr__( 'Slug to be used for archive URL.', 'custom-post-type-ui' ),
548
  'helptext_after'=> true,
549
  'wrap' => false
550
  ) );
555
  */
556
  $select = array(
557
  'options' => array(
558
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'true' ),
559
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
560
  )
561
  );
562
  $selected = ( isset( $current ) ) ? disp_boolean( $current['exclude_from_search'] ) : '';
564
  echo $ui->get_select_input( array(
565
  'namearray' => 'cpt_custom_post_type',
566
  'name' => 'exclude_from_search',
567
+ 'labeltext' => __( 'Exclude From Search', 'custom-post-type-ui' ),
568
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
569
+ 'helptext' => esc_attr__( 'Whether to exclude posts with this post type from front end search results.', 'custom-post-type-ui' ),
570
  'selections' => $select
571
  ) );
572
 
577
  'namearray' => 'cpt_custom_post_type',
578
  'name' => 'capability_type',
579
  'textvalue' => ( isset( $current['capability_type'] ) ) ? esc_attr( $current['capability_type'] ) : 'post',
580
+ 'labeltext' => __( 'Capability Type', 'custom-post-type-ui' ),
581
+ 'helptext' => esc_attr__( 'The post type to use for checking read, edit, and delete capabilities', 'custom-post-type-ui' ),
582
  ) );
583
 
584
  /*
586
  */
587
  $select = array(
588
  'options' => array(
589
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'true' ),
590
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
591
  )
592
  );
593
  $selected = ( isset( $current ) ) ? disp_boolean( $current['hierarchical'] ) : '';
595
  echo $ui->get_select_input( array(
596
  'namearray' => 'cpt_custom_post_type',
597
  'name' => 'hierarchical',
598
+ 'labeltext' => __( 'Hierarchical', 'custom-post-type-ui' ),
599
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
600
+ 'helptext' => esc_attr__( 'Whether the post type can have parent-child relationships', 'custom-post-type-ui' ),
601
  'selections' => $select
602
  ) );
603
 
606
  */
607
  $select = array(
608
  'options' => array(
609
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
610
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
611
  )
612
  );
613
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite'] ) : '';
615
  echo $ui->get_select_input( array(
616
  'namearray' => 'cpt_custom_post_type',
617
  'name' => 'rewrite',
618
+ 'labeltext' => __( 'Rewrite', 'custom-post-type-ui' ),
619
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
620
+ 'helptext' => esc_attr__( 'Whether or not WordPress should use rewrites for this post type', 'custom-post-type-ui' ),
621
  'selections' => $select
622
  ) );
623
 
628
  'namearray' => 'cpt_custom_post_type',
629
  'name' => 'rewrite_slug',
630
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
631
+ 'labeltext' => __( 'Custom Rewrite Slug', 'custom-post-type-ui' ),
632
+ 'aftertext' => __( '(default: post type slug)', 'custom-post-type-ui' ),
633
+ 'helptext' => esc_attr__( 'Custom post type slug to use instead of the default.', 'custom-post-type-ui' ),
634
  ) );
635
 
636
  /*
638
  */
639
  $select = array(
640
  'options' => array(
641
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
642
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
643
  )
644
  );
645
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite_withfront'] ) : '';
647
  echo $ui->get_select_input( array(
648
  'namearray' => 'cpt_custom_post_type',
649
  'name' => 'rewrite_withfront',
650
+ 'labeltext' => __( 'With Front', 'custom-post-type-ui' ),
651
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
652
+ 'helptext' => esc_attr__( 'Should the permastruct be prepended with the front base.', 'custom-post-type-ui' ),
653
  'selections' => $select
654
  ) );
655
 
658
  */
659
  $select = array(
660
  'options' => array(
661
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
662
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
663
  )
664
  );
665
  $selected = ( isset( $current ) ) ? disp_boolean( $current['query_var'] ) : '';
667
  echo $ui->get_select_input( array(
668
  'namearray' => 'cpt_custom_post_type',
669
  'name' => 'query_var',
670
+ 'labeltext' => __( 'Query Var', 'custom-post-type-ui' ),
671
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
672
+ 'helptext' => esc_attr__( 'Sets the query_var key for this post type.', 'custom-post-type-ui' ),
673
  'selections' => $select
674
  ) );
675
 
676
+ /*
677
+ * Query Var Slug Input
678
+ */
679
+ echo $ui->get_text_input( array(
680
+ 'namearray' => 'cpt_custom_post_type',
681
+ 'name' => 'query_var_slug',
682
+ 'textvalue' => ( isset( $current['query_var_slug'] ) ) ? esc_attr( $current['query_var_slug'] ) : '',
683
+ 'labeltext' => __( 'Custom Query Var Slug', 'custom-post-type-ui' ),
684
+ 'aftertext' => __( '(default: post type slug) Query var needs to be true to use.', 'custom-post-type-ui' ),
685
+ 'helptext' => esc_attr__( 'Custom query var slug to use instead of the default.', 'custom-post-type-ui' ),
686
+ ) );
687
+
688
  /*
689
  * Menu Position Boolean
690
  */
691
  echo $ui->get_tr_start() . $ui->get_th_start();
692
+ echo $ui->get_label( 'menu_position', __( 'Menu Position', 'custom-post-type-ui' ) );
693
+ echo $ui->get_help( esc_attr__( 'The position in the menu order the post type should appear. show_in_menu must be true.', 'custom-post-type-ui' ) );
694
+ echo $ui->get_p( __( 'See <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Parameters" target="_blank">Available options</a> in the "menu_position" section. Range of 5-100', 'custom-post-type-ui' ) );
695
 
696
  echo $ui->get_th_end() . $ui->get_td_start();
697
  echo $ui->get_text_input( array(
706
  * Show In Menu Boolean
707
  */
708
  echo $ui->get_tr_start() . $ui->get_th_start();
709
+ echo $ui->get_label( 'show_in_menu', __( 'Show in Menu', 'custom-post-type-ui' ) );
710
+ echo $ui->get_help( esc_attr__( 'Whether to show the post type in the admin menu and where to show that menu.', 'custom-post-type-ui' ) );
711
+ echo $ui->get_p( __( '"Show UI" must be "true". If an existing top level page such as "tools.php" is indicated for second input, post type will be sub menu of that.', 'custom-post-type-ui' ) );
712
  echo $ui->get_th_end() . $ui->get_td_start();
713
 
714
  $select = array(
715
  'options' => array(
716
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
717
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
718
  )
719
  );
720
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_in_menu'] ) : '';
722
  echo $ui->get_select_input( array(
723
  'namearray' => 'cpt_custom_post_type',
724
  'name' => 'show_in_menu',
725
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
726
  'selections' => $select,
727
  'wrap' => false
728
  ) );
734
  'namearray' => 'cpt_custom_post_type',
735
  'name' => 'show_in_menu_string',
736
  'textvalue' => ( isset( $current['show_in_menu_string'] ) ) ? esc_attr( $current['show_in_menu_string'] ) : '',
737
+ 'helptext' => esc_attr__( 'Top-level page file name to make post type a sub-menu of.', 'custom-post-type-ui' ),
738
  'helptext_after'=> true,
739
  'wrap' => false
740
  ) );
746
  'namearray' => 'cpt_custom_post_type',
747
  'name' => 'menu_icon',
748
  'textvalue' => ( isset( $current['menu_icon'] ) ) ? esc_attr( $current['menu_icon'] ) : '',
749
+ 'labeltext' => __( 'Menu Icon', 'custom-post-type-ui' ),
750
+ 'aftertext' => __( '(Full URL for icon or Dashicon class)', 'custom-post-type-ui' ),
751
+ 'helptext' => esc_attr__( 'URL to image to be used as menu icon or Dashicon class to use instead.', 'custom-post-type-ui' ),
752
  ) );
753
 
754
+ echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Supports', 'custom-post-type-ui' ) . $ui->get_th_end() . $ui->get_td_start() . $ui->get_fieldset_start();
755
  /*
756
  * Supports Title Checkbox
757
  */
761
  'name' => 'title',
762
  'namearray' => 'cpt_supports',
763
  'textvalue' => 'title',
764
+ 'labeltext' => __( 'Title' , 'custom-post-type-ui' ),
765
+ 'helptext' => esc_attr__( 'Adds the title meta box when creating content for this custom post type', 'custom-post-type-ui' ),
766
  'default' => true,
767
  'wrap' => false
768
  ) );
776
  'name' => 'editor',
777
  'namearray' => 'cpt_supports',
778
  'textvalue' => 'editor',
779
+ 'labeltext' => __( 'Editor' , 'custom-post-type-ui' ),
780
+ 'helptext' => esc_attr__( 'Adds the content editor meta box when creating content for this custom post type', 'custom-post-type-ui' ),
781
  'default' => true,
782
  'wrap' => false
783
  ) );
791
  'name' => 'excerpt',
792
  'namearray' => 'cpt_supports',
793
  'textvalue' => 'excerpt',
794
+ 'labeltext' => __( 'Excerpt' , 'custom-post-type-ui' ),
795
+ 'helptext' => esc_attr__( 'Adds the excerpt meta box when creating content for this custom post type', 'custom-post-type-ui' ),
796
  'default' => true,
797
  'wrap' => false
798
  ) );
806
  'name' => 'trackbacks',
807
  'namearray' => 'cpt_supports',
808
  'textvalue' => 'trackbacks',
809
+ 'labeltext' => __( 'Trackbacks' , 'custom-post-type-ui' ),
810
+ 'helptext' => esc_attr__( 'Adds the trackbacks meta box when creating content for this custom post type', 'custom-post-type-ui' ),
811
  'default' => true,
812
  'wrap' => false
813
  ) );
821
  'name' => 'custom-fields',
822
  'namearray' => 'cpt_supports',
823
  'textvalue' => 'custom-fields',
824
+ 'labeltext' => __( 'Custom Fields' , 'custom-post-type-ui' ),
825
+ 'helptext' => esc_attr__( 'Adds the custom fields meta box when creating content for this custom post type', 'custom-post-type-ui' ),
826
  'default' => true,
827
  'wrap' => false
828
  ) );
836
  'name' => 'comments',
837
  'namearray' => 'cpt_supports',
838
  'textvalue' => 'comments',
839
+ 'labeltext' => __( 'Comments' , 'custom-post-type-ui' ),
840
+ 'helptext' => esc_attr__( 'Adds the comments meta box when creating content for this custom post type', 'custom-post-type-ui' ),
841
  'default' => true,
842
  'wrap' => false
843
  ) );
851
  'name' => 'revisions',
852
  'namearray' => 'cpt_supports',
853
  'textvalue' => 'revisions',
854
+ 'labeltext' => __( 'Revisions' , 'custom-post-type-ui' ),
855
+ 'helptext' => esc_attr__( 'Adds the revisions meta box when creating content for this custom post type', 'custom-post-type-ui' ),
856
  'default' => true,
857
  'wrap' => false
858
  ) );
866
  'name' => 'thumbnail',
867
  'namearray' => 'cpt_supports',
868
  'textvalue' => 'thumbnail',
869
+ 'labeltext' => __( 'Featured Image' , 'custom-post-type-ui' ),
870
+ 'helptext' => esc_attr__( 'Adds the featured image meta box when creating content for this custom post type', 'custom-post-type-ui' ),
871
  'default' => true,
872
  'wrap' => false
873
  ) );
881
  'name' => 'author',
882
  'namearray' => 'cpt_supports',
883
  'textvalue' => 'author',
884
+ 'labeltext' => __( 'Author' , 'custom-post-type-ui' ),
885
+ 'helptext' => esc_attr__( 'Adds the author meta box when creating content for this custom post type', 'custom-post-type-ui' ),
886
  'default' => true,
887
  'wrap' => false
888
  ) );
896
  'name' => 'page-attributes',
897
  'namearray' => 'cpt_supports',
898
  'textvalue' => 'page-attributes',
899
+ 'labeltext' => __( 'Page Attributes' , 'custom-post-type-ui' ),
900
+ 'helptext' => esc_attr__( 'Adds the page attribute meta box when creating content for this custom post type', 'custom-post-type-ui' ),
901
  'default' => true,
902
  'wrap' => false
903
  ) );
911
  'name' => 'post-formats',
912
  'namearray' => 'cpt_supports',
913
  'textvalue' => 'post-formats',
914
+ 'labeltext' => __( 'Post Formats' , 'custom-post-type-ui' ),
915
+ 'helptext' => esc_attr__( 'Adds post format support', 'custom-post-type-ui' ),
916
  'default' => true,
917
  'wrap' => false
918
  ) );
919
 
920
+ echo $ui->get_p( __( 'Use the option below to explicitly set "supports" to false.', 'custom-post-type-ui' ) );
921
 
922
  echo $ui->get_check_input( array(
923
  'checkvalue' => 'none',
925
  'name' => 'none',
926
  'namearray' => 'cpt_supports',
927
  'textvalue' => 'none',
928
+ 'labeltext' => __( 'None' , 'custom-post-type-ui' ),
929
+ 'helptext' => esc_attr__( 'Remove all support features', 'custom-post-type-ui' ),
930
  'default' => false,
931
  'wrap' => false
932
  ) );
 
933
 
934
+ echo $ui->get_fieldset_end() . $ui->get_td_end() . $ui->get_tr_end();
935
+
936
+ echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Custom "Supports"', 'custom-post-type-ui' );
937
+ echo $ui->get_p( __( 'Use this input to register custom "supports" values, separated by commas.', 'custom-post-type-ui' ) );
938
  echo $ui->get_th_end() . $ui->get_td_start();
939
  echo $ui->get_text_input( array(
940
  'namearray' => 'cpt_custom_post_type',
941
  'name' => 'custom_supports',
942
  'textvalue' => ( isset( $current['custom_supports'] ) ) ? esc_attr( $current['custom_supports'] ) : '',
943
+ 'helptext' => esc_attr__( 'Provide custom support slugs here.', 'custom-post-type-ui' ),
944
  'helptext_after'=> true,
945
  'wrap' => false
946
  ) );
947
  echo $ui->get_td_end() . $ui->get_tr_end();
948
 
949
+ echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Built-in Taxonomies', 'custom-post-type-ui' ) . $ui->get_th_end() . $ui->get_td_start() . $ui->get_fieldset_start();
950
 
951
  /**
952
  * Filters the arguments for taxonomies to list for post type association.
975
  'namearray' => 'cpt_addon_taxes',
976
  'textvalue' => $add_tax->name,
977
  'labeltext' => $add_tax->label,
978
+ 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'custom-post-type-ui' ), $add_tax->label ),
979
  'wrap' => false
980
  ) );
981
  }
982
 
983
+ echo $ui->get_fieldset_end() . $ui->get_td_end() . $ui->get_tr_end(); ?>
984
  </table>
985
  </div>
986
  </div>
1010
  $select['options'] = array();
1011
 
1012
  foreach( $post_types as $type ) {
1013
+ $text = ( !empty( $type['label'] ) ) ? $type['label'] : $type['name'];
1014
+ $select['options'][] = array( 'attr' => $type['name'], 'text' => $text );
1015
  }
1016
 
1017
  $current = cptui_get_current_post_type();
1082
  }
1083
 
1084
  if ( empty( $data['cpt_custom_post_type']['name'] ) || ! post_type_exists( $data['cpt_custom_post_type']['name'] ) ) {
1085
+ return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type to delete', 'custom-post-type-ui' ) );
1086
  }
1087
 
1088
  /**
1142
 
1143
  # They need to provide a name
1144
  if ( empty( $data['cpt_custom_post_type']['name'] ) ) {
1145
+ return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type name', 'custom-post-type-ui' ) );
1146
  }
1147
 
1148
  if ( !empty( $data['cpt_original'] ) && $data['cpt_original'] != $data['cpt_custom_post_type']['name'] ) {
1166
  false !== strpos( $data['cpt_custom_post_type']['rewrite_slug'], '\'' ) ||
1167
  false !== strpos( $data['cpt_custom_post_type']['rewrite_slug'], '\"' ) ) {
1168
 
1169
+ return cptui_admin_notices( 'error', '', false, __( 'Please do not use quotes in post type names or rewrite slugs', 'custom-post-type-ui' ) );
1170
  }
1171
 
1172
  $post_types = get_option( 'cptui_post_types', array() );
1173
 
1174
  # Check if we already have a post type of that name.
1175
  if ( 'new' == $data['cpt_type_status'] && ( array_key_exists( strtolower( $data['cpt_custom_post_type']['name'] ), $post_types ) || in_array( $data['cpt_custom_post_type']['name'], cptui_reserved_post_types() ) ) ) {
1176
+ return cptui_admin_notices( 'error', '', false, sprintf( __( 'Please choose a different post type name. %s is already registered.', 'custom-post-type-ui' ), $data['cpt_custom_post_type']['name'] ) );
1177
  }
1178
 
1179
  if ( empty( $data['cpt_addon_taxes'] ) || !is_array( $data['cpt_addon_taxes'] ) ) {
1207
 
1208
  $name = trim( $data['cpt_custom_post_type']['name'] );
1209
  $description = stripslashes_deep( $data['cpt_custom_post_type']['description'] );
1210
+ $rest_base = trim( $data['cpt_custom_post_type']['rest_base'] );
1211
  $has_archive_string = trim( $data['cpt_custom_post_type']['has_archive_string'] );
1212
  $capability_type = trim( $data['cpt_custom_post_type']['capability_type'] );
1213
  $rewrite_slug = trim( $data['cpt_custom_post_type']['rewrite_slug'] );
1214
+ $query_var_slug = trim( $data['cpt_custom_post_type']['query_var_slug'] );
1215
  $menu_position = trim( $data['cpt_custom_post_type']['menu_position'] );
1216
  $show_in_menu_string = trim( $data['cpt_custom_post_type']['show_in_menu_string'] );
1217
  $menu_icon = trim( $data['cpt_custom_post_type']['menu_icon'] );
1224
  'description' => $description,
1225
  'public' => disp_boolean( $data['cpt_custom_post_type']['public'] ),
1226
  'show_ui' => disp_boolean( $data['cpt_custom_post_type']['show_ui'] ),
1227
+ 'show_in_nav_menus' => disp_boolean( $data['cpt_custom_post_type']['show_in_nav_menus'] ),
1228
+ 'show_in_rest' => disp_boolean( $data['cpt_custom_post_type']['show_in_rest'] ),
1229
+ 'rest_base' => $rest_base,
1230
  'has_archive' => disp_boolean( $data['cpt_custom_post_type']['has_archive'] ),
1231
  'has_archive_string' => $has_archive_string,
1232
  'exclude_from_search' => disp_boolean( $data['cpt_custom_post_type']['exclude_from_search'] ),
1236
  'rewrite_slug' => $rewrite_slug,
1237
  'rewrite_withfront' => disp_boolean( $data['cpt_custom_post_type']['rewrite_withfront'] ),
1238
  'query_var' => disp_boolean( $data['cpt_custom_post_type']['query_var'] ),
1239
+ 'query_var_slug' => $query_var_slug,
1240
  'menu_position' => $menu_position,
1241
  'show_in_menu' => disp_boolean( $data['cpt_custom_post_type']['show_in_menu'] ),
1242
  'show_in_menu_string' => $show_in_menu_string,
1277
  */
1278
  function cptui_reserved_post_types() {
1279
 
1280
+ $reserved = array(
1281
+ 'post',
1282
+ 'page',
1283
+ 'attachment',
1284
+ 'revision',
1285
+ 'nav_menu_item',
1286
+ 'action',
1287
+ 'order',
1288
+ 'theme'
1289
+ );
1290
+
1291
  /**
1292
  * Filters the list of reserved post types to check against.
1293
  *
1297
  *
1298
  * @param array $value Array of post type slugs to forbid.
1299
  */
1300
+ $custom_reserved = apply_filters( 'cptui_reserved_post_types', array() );
1301
+
1302
+ if ( is_string( $custom_reserved ) && ! empty( $custom_reserved ) ) {
1303
+ $reserved[] = $custom_reserved;
1304
+ } else if ( is_array( $custom_reserved ) && ! empty( $custom_reserved ) ) {
1305
+ foreach ( $custom_reserved as $slug ) {
1306
+ $reserved[] = $slug;
1307
+ }
1308
+ }
1309
+
1310
+ return $reserved;
1311
  }
1312
 
1313
  /**
inc/support.php CHANGED
@@ -17,6 +17,10 @@ function cptui_support_enqueue_scripts() {
17
  return;
18
  }
19
 
 
 
 
 
20
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery' ), '0.9', true );
21
  }
22
  add_action( 'admin_enqueue_scripts', 'cptui_support_enqueue_scripts' );
@@ -38,54 +42,72 @@ function cptui_support() {
38
  */
39
  do_action( 'cptui_main_page_before_faq' ); ?>
40
 
41
- <h1><?php _e( 'Custom Post Type UI Support', 'cpt-plugin' ); ?></h1>
42
 
43
- <p><?php printf( __( 'Please note that this plugin will NOT handle display of registered post types or taxonomies in your current theme. It will simply register them for you. If all else fails, visit us on the %s', 'cpt-plugin' ),
44
- '<a href="http://www.wordpress.org/support/plugin/custom-post-type-ui/">' . __( 'Support Forums', 'cpt-plugin' ) . '</a>'
45
  ); ?></p>
46
 
47
  <table id="support" class="form-table cptui-table">
48
  <tr>
49
  <td class="outter">
50
- <h2><?php _e( 'General', 'cpt-plugin' ); ?></h2>
51
  <ol id="questions_general">
52
  <li>
53
- <span class="question"><?php _e( 'I changed my custom post type name and now I can not get to my posts. How do I get them back?', 'cpt-plugin' ); ?></span>
54
- <div class="answer"><?php _e( 'You can either change the custom post type name back to the original name or try the Post Type Switcher plugin', 'cpt-plugin' ); ?>
 
 
 
 
 
55
  <a href="http://wordpress.org/plugins/post-type-switcher/" target="_blank">http://wordpress.org/extend/plugins/post-type-switcher/</a>
56
  </div>
57
  </li>
58
  <li>
59
- <span class="question"><?php _e( 'I changed my custom post type or taxonomy slug and now I have duplicates shown. How do I remove the duplicate?', 'cpt-plugin' ); ?></span>
60
- <div class="answer"><?php _e( 'Renaming the slug for a post type or taxonomy creates a new entry in our saved option which gets registered as its own post type or taxonomy. Since the settings will be mirrored from the previous slug, you will just need to delete the previous version\'s entry.', 'cpt-plugin' ); ?> <a href="http://wordpress.org/plugins/post-type-switcher/" target="_blank">http://wordpress.org/extend/plugins/post-type-switcher/</a></div>
61
  </li>
62
  <li>
63
- <span class="question"><?php _e( 'I have added post thumbnail and/or post format support to my post type, but those do not appear when adding a post type post.', 'cpt-plugin' ); ?></span>
64
- <div class="answer"><?php _e( 'Make sure your theme has post "post-thumbnails" theme support enabled.', 'cpt-plugin' ); ?> <a href="http://codex.wordpress.org/Function_Reference/add_theme_support" target="_blank">http://codex.wordpress.org/Function_Reference/add_theme_support</a></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  </li>
66
  </ol>
67
  </td>
68
  <td class="outter">
69
- <h2><?php _e( 'Front-end Display', 'cpt-plugin' ); ?></h2>
70
  <ol id="questions_front">
71
  <li>
72
- <span class="question"><?php _e( 'What template files should I edit to alter my post type display?', 'cpt-plugin' ); ?></span>
73
- <div class="answer"><?php printf( __( 'Please visit the %sTemplate Hierarchy%s page on the WordPress codex for details about available templates.', 'cpt-plugin' ),
74
  '<a href="http://codex.wordpress.org/Template_Hierarchy" target="_blank">',
75
  '</a>'
76
  ); ?>
77
  </div>
78
  </li>
79
  <li>
80
- <span class="question"><?php _e( 'How do I display my custom post type on my site?', 'cpt-plugin' ); ?></span>
81
- <div class="answer"><?php printf( __( 'You will need to utilize the %sWP_Query%s class to handle display in custom locations. If you have set the post type to have archives, the archive url should be something like "http://www.mysite.com/post-type-slug"', 'cpt-plugin' ),
82
  '<a href="http://codex.wordpress.org/Class_Reference/WP_Query" target="_blank">',
83
  '</a>'
84
  ); ?></div>
85
  </li>
86
  <li>
87
- <span class="question"><?php _e( 'I have added categories and tags to my custom post type, but they do not appear in the archives.', 'cpt-plugin' ); ?></span>
88
- <div class="answer"><?php printf( __( 'You will need to add your newly created post type to the types that the category and tag archives query for. You can see a tutorial on how to do that at %s', 'cpt-plugin' ),
89
  '<a href="http://wpmu.org/add-custom-post-types-to-tags-and-categories-in-wordpress/" target="_blank">http://wpmu.org/add-custom-post-types-to-tags-and-categories-in-wordpress/</a>'
90
  ); ?> </div>
91
  </li>
@@ -94,27 +116,27 @@ function cptui_support() {
94
  </tr>
95
  <tr>
96
  <td class="outter">
97
- <h2><?php _e( 'Advanced', 'cpt-plugin' ); ?></h2>
98
  <ol id="questions_advanced">
99
  <li>
100
- <span class="question"><?php _e( 'How do I add custom metaboxes to my post type?', 'cpt-plugin' ); ?></span>
101
  <div class="answer"><?php printf(
102
- __( 'We recommend checking out %s, the latest iteration of "Custom Metaboxes and Fields for WordPress". Both are maintained by WebDevStudios.', 'cpt-plugin' ),
103
  '<a href="https://wordpress.org/plugins/cmb2/" target="_blank">CMB2</a>'
104
  ); ?>
105
  </div>
106
  </li>
107
  <li>
108
- <span class="question"><?php _e( 'How do I add a newly registered taxonomy to a post type that already exists?', 'cpt-plugin' ); ?></span>
109
  <div class="answer"><?php printf(
110
- __( 'Check out the %s function for documentation and usage examples.', 'cpt-plugin' ),
111
  '<a href="http://codex.wordpress.org/Function_Reference/register_taxonomy_for_object_type" target="_blank">register_taxonomy_for_object_type()</a>'
112
  ); ?>
113
  </div>
114
  </li>
115
  <li>
116
- <span class="question"><?php _e( 'Post relationships?', 'cpt-plugin' ); ?></span>
117
- <div class="answer"><?php printf( __( '%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s plugin that should be a good start.', 'cpt-plugin' ),
118
  'Pippin Williamson',
119
  '<a href="http://pippinsplugins.com/introduction-posts-2-posts-plugin/" target="_blank">',
120
  '</a>',
@@ -123,13 +145,13 @@ function cptui_support() {
123
  ); ?></div>
124
  </li>
125
  <li>
126
- <span class="question"><?php _e( 'Is there any function reference list?', 'cpt-plugin' ); ?></span>
127
- <div class="answer"><?php printf( __( '%s has compiled a nice list of functions used by our plugin. Note not all will be useful as they are attached to hooks.', 'cpt-plugin' ),
128
  '<a href="http://hookr.io/plugins/custom-post-type-ui/1.0.5/all/#index=c" target="_blank">Hookr.io</a>' ); ?></div>
129
  </li>
130
  <li>
131
- <span class="question"><?php _e( 'How do I filter the "enter title here" text in the post editor screen?', 'cpt-plugin' ); ?></span>
132
- <div class="answer"><p><?php _e( 'Change text inside the post/page editor title field. Should be able to adapt as necessary.', 'cpt-plugin' ); ?></p>
133
  <pre><code>function my_custom_title_text( $title ){
134
  global $post;
135
  if ( 'ENTER POST TYPE SLUG HERE' == $post->post_type )
17
  return;
18
  }
19
 
20
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
21
+ return;
22
+ }
23
+
24
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery' ), '0.9', true );
25
  }
26
  add_action( 'admin_enqueue_scripts', 'cptui_support_enqueue_scripts' );
42
  */
43
  do_action( 'cptui_main_page_before_faq' ); ?>
44
 
45
+ <h1><?php _e( 'Custom Post Type UI Support', 'custom-post-type-ui' ); ?></h1>
46
 
47
+ <p><?php printf( __( 'Please note that this plugin will NOT handle display of registered post types or taxonomies in your current theme. It will simply register them for you. If all else fails, visit us on the %s', 'custom-post-type-ui' ),
48
+ '<a href="http://www.wordpress.org/support/plugin/custom-post-type-ui/">' . __( 'Support Forums', 'custom-post-type-ui' ) . '</a>'
49
  ); ?></p>
50
 
51
  <table id="support" class="form-table cptui-table">
52
  <tr>
53
  <td class="outter">
54
+ <h2><?php _e( 'General', 'custom-post-type-ui' ); ?></h2>
55
  <ol id="questions_general">
56
  <li>
57
+ <span class="question"><?php _e( 'I have post types with spaces in their slug and can not successfully delete them. How can I fix that?', 'custom-post-type-ui' ); ?></span>
58
+ <div class="answer"><?php _e( 'Visit the Import/Export page and copy the export code into the import side on the left. Replace the space with an underscore and then click "Import". You should be able to delete the individual post types afterwards.', 'custom-post-type-ui' ); ?>
59
+ </div>
60
+ </li>
61
+ <li>
62
+ <span class="question"><?php _e( 'I changed my custom post type name and now I can not get to my posts. How do I get them back?', 'custom-post-type-ui' ); ?></span>
63
+ <div class="answer"><?php _e( 'You can either change the custom post type name back to the original name or try the Post Type Switcher plugin', 'custom-post-type-ui' ); ?>
64
  <a href="http://wordpress.org/plugins/post-type-switcher/" target="_blank">http://wordpress.org/extend/plugins/post-type-switcher/</a>
65
  </div>
66
  </li>
67
  <li>
68
+ <span class="question"><?php _e( 'I changed my custom post type or taxonomy slug and now I have duplicates shown. How do I remove the duplicate?', 'custom-post-type-ui' ); ?></span>
69
+ <div class="answer"><?php _e( 'Renaming the slug for a post type or taxonomy creates a new entry in our saved option which gets registered as its own post type or taxonomy. Since the settings will be mirrored from the previous slug, you will just need to delete the previous version\'s entry.', 'custom-post-type-ui' ); ?> <a href="http://wordpress.org/plugins/post-type-switcher/" target="_blank">http://wordpress.org/extend/plugins/post-type-switcher/</a></div>
70
  </li>
71
  <li>
72
+ <span class="question"><?php _e( 'I have added post thumbnail and/or post format support to my post type, but those do not appear when adding a post type post.', 'custom-post-type-ui' ); ?></span>
73
+ <div class="answer"><?php _e( 'Make sure your theme has post "post-thumbnails" theme support enabled.', 'custom-post-type-ui' ); ?> <a href="http://codex.wordpress.org/Function_Reference/add_theme_support" target="_blank">http://codex.wordpress.org/Function_Reference/add_theme_support</a></div>
74
+ </li>
75
+ <li>
76
+ <span class="question"><?php _e( 'Do you have any recommendations for an alternative to Visual Composer?', 'custom-post-type-ui' ); ?></span>
77
+ <div class="answer"><?php _e( 'We recommend using VelocityPage.', 'custom-post-type-ui' ); ?>
78
+ <a href="https://velocitypage.com" target="_blank">https://velocitypage.com</a>
79
+ </div>
80
+ </li>
81
+ <li>
82
+ <span class="question"><?php _e( 'Is there any way to get CPTUI-registered post types working with Visual Composer Media Grid?', 'custom-post-type-ui' ); ?></span>
83
+
84
+ <div class="answer"><?php _e( 'Please see the solution from the following forum support thread.', 'custom-post-type-ui' ); ?>
85
+ <a href="https://wordpress.org/support/topic/custom-post-type-and-visual-composer-grid-block?replies=11#post-7111458" target="_blank">https://wordpress.org/support/topic/custom-post-type-and-visual-composer-grid-block?replies=11#post-7111458</a>
86
+ </div>
87
  </li>
88
  </ol>
89
  </td>
90
  <td class="outter">
91
+ <h2><?php _e( 'Front-end Display', 'custom-post-type-ui' ); ?></h2>
92
  <ol id="questions_front">
93
  <li>
94
+ <span class="question"><?php _e( 'What template files should I edit to alter my post type display?', 'custom-post-type-ui' ); ?></span>
95
+ <div class="answer"><?php printf( __( 'Please visit the %sTemplate Hierarchy%s page on the WordPress codex for details about available templates.', 'custom-post-type-ui' ),
96
  '<a href="http://codex.wordpress.org/Template_Hierarchy" target="_blank">',
97
  '</a>'
98
  ); ?>
99
  </div>
100
  </li>
101
  <li>
102
+ <span class="question"><?php _e( 'How do I display my custom post type on my site?', 'custom-post-type-ui' ); ?></span>
103
+ <div class="answer"><?php printf( __( 'You will need to utilize the %sWP_Query%s class to handle display in custom locations. If you have set the post type to have archives, the archive url should be something like "http://www.mysite.com/post-type-slug"', 'custom-post-type-ui' ),
104
  '<a href="http://codex.wordpress.org/Class_Reference/WP_Query" target="_blank">',
105
  '</a>'
106
  ); ?></div>
107
  </li>
108
  <li>
109
+ <span class="question"><?php _e( 'I have added categories and tags to my custom post type, but they do not appear in the archives.', 'custom-post-type-ui' ); ?></span>
110
+ <div class="answer"><?php printf( __( 'You will need to add your newly created post type to the types that the category and tag archives query for. You can see a tutorial on how to do that at %s', 'custom-post-type-ui' ),
111
  '<a href="http://wpmu.org/add-custom-post-types-to-tags-and-categories-in-wordpress/" target="_blank">http://wpmu.org/add-custom-post-types-to-tags-and-categories-in-wordpress/</a>'
112
  ); ?> </div>
113
  </li>
116
  </tr>
117
  <tr>
118
  <td class="outter">
119
+ <h2><?php _e( 'Advanced', 'custom-post-type-ui' ); ?></h2>
120
  <ol id="questions_advanced">
121
  <li>
122
+ <span class="question"><?php _e( 'How do I add custom metaboxes to my post type?', 'custom-post-type-ui' ); ?></span>
123
  <div class="answer"><?php printf(
124
+ __( 'We recommend checking out %s, the latest iteration of "Custom Metaboxes and Fields for WordPress". Both are maintained by WebDevStudios.', 'custom-post-type-ui' ),
125
  '<a href="https://wordpress.org/plugins/cmb2/" target="_blank">CMB2</a>'
126
  ); ?>
127
  </div>
128
  </li>
129
  <li>
130
+ <span class="question"><?php _e( 'How do I add a newly registered taxonomy to a post type that already exists?', 'custom-post-type-ui' ); ?></span>
131
  <div class="answer"><?php printf(
132
+ __( 'Check out the %s function for documentation and usage examples.', 'custom-post-type-ui' ),
133
  '<a href="http://codex.wordpress.org/Function_Reference/register_taxonomy_for_object_type" target="_blank">register_taxonomy_for_object_type()</a>'
134
  ); ?>
135
  </div>
136
  </li>
137
  <li>
138
+ <span class="question"><?php _e( 'Post relationships?', 'custom-post-type-ui' ); ?></span>
139
+ <div class="answer"><?php printf( __( '%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s plugin that should be a good start.', 'custom-post-type-ui' ),
140
  'Pippin Williamson',
141
  '<a href="http://pippinsplugins.com/introduction-posts-2-posts-plugin/" target="_blank">',
142
  '</a>',
145
  ); ?></div>
146
  </li>
147
  <li>
148
+ <span class="question"><?php _e( 'Is there any function reference list?', 'custom-post-type-ui' ); ?></span>
149
+ <div class="answer"><?php printf( __( '%s has compiled a nice list of functions used by our plugin. Note not all will be useful as they are attached to hooks.', 'custom-post-type-ui' ),
150
  '<a href="http://hookr.io/plugins/custom-post-type-ui/1.0.5/all/#index=c" target="_blank">Hookr.io</a>' ); ?></div>
151
  </li>
152
  <li>
153
+ <span class="question"><?php _e( 'How do I filter the "enter title here" text in the post editor screen?', 'custom-post-type-ui' ); ?></span>
154
+ <div class="answer"><p><?php _e( 'Change text inside the post/page editor title field. Should be able to adapt as necessary.', 'custom-post-type-ui' ); ?></p>
155
  <pre><code>function my_custom_title_text( $title ){
156
  global $post;
157
  if ( 'ENTER POST TYPE SLUG HERE' == $post->post_type )
inc/taxonomies.php CHANGED
@@ -19,11 +19,15 @@ function cptui_taxonomies_enqueue_scripts() {
19
  return;
20
  }
21
 
 
 
 
 
22
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
23
  wp_localize_script( 'cptui', 'cptui_tax_data',
24
  array(
25
- 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ),
26
- #'tax_change_name' => '<div class="typetax-rename">' . __( 'Changing this will rename the taxonomy.', 'cpt-plugin' ) . '</div>'
27
  )
28
  );
29
  }
@@ -82,13 +86,20 @@ function cptui_manage_taxonomies() {
82
  # Will only be set if we're already on the edit screen
83
  if ( !empty( $taxonomies ) ) { ?>
84
  <form id="cptui_select_taxonomy" method="post">
85
- <p><?php _e( 'DO NOT EDIT the taxonomy slug unless necessary. Changing that value registers a new taxonomy entry for your install.', 'cpt-plugin' ); ?></p>
 
86
  <?php
87
- _e( 'Select: ', 'cpt-plugin' );
88
  cptui_taxonomies_dropdown( $taxonomies );
89
- ?>
90
 
91
- <input type="submit" class="button-secondary" name="cptui_select_taxonomy_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_select', __( 'Select', 'cpt-plugin' ) ) ); ?>" />
 
 
 
 
 
 
 
 
92
  </form>
93
  <?php
94
 
@@ -115,9 +126,9 @@ function cptui_manage_taxonomies() {
115
  'textvalue' => ( isset( $current['name'] ) ) ? esc_attr( $current['name'] ) : '',
116
  'maxlength' => '32',
117
  'onblur' => 'this.value=this.value.toLowerCase()',
118
- 'labeltext' => __( 'Taxonomy Slug', 'cpt-plugin' ),
119
- 'aftertext' => __( '(e.g. actor)', 'cpt-plugin' ),
120
- 'helptext' => esc_attr__( 'The taxonomy name. Used to retrieve custom taxonomy content. Should be short and unique', 'cpt-plugin'),
121
  'required' => true,
122
  ) );
123
 
@@ -125,22 +136,39 @@ function cptui_manage_taxonomies() {
125
  'namearray' => 'cpt_custom_tax',
126
  'name' => 'label',
127
  'textvalue' => ( isset( $current['label'] ) ) ? esc_attr( $current['label'] ) : '',
128
- 'aftertext' => __( '(e.g. Actors)', 'cpt-plugin' ),
129
- 'labeltext' => __( 'Plural Label', 'cpt-plugin' ),
130
- 'helptext' => esc_attr__( 'Taxonomy label. Used in the admin menu for displaying custom taxonomy.', 'cpt-plugin'),
131
  ) );
132
 
133
  echo $ui->get_text_input( array(
134
  'namearray' => 'cpt_custom_tax',
135
  'name' => 'singular_label',
136
  'textvalue' => ( isset( $current['singular_label'] ) ) ? esc_attr( $current['singular_label'] ) : '',
137
- 'aftertext' => __( '(e.g. Actor)', 'cpt-plugin' ),
138
- 'labeltext' => __( 'Singular Label', 'cpt-plugin' ),
139
- 'helptext' => esc_attr__( 'Taxonomy Singular label. Used in WordPress when a singular label is needed.', 'cpt-plugin'),
140
  ) );
141
 
142
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Attach to Post Type', 'cpt-plugin' ) . $ui->get_required();
143
- echo $ui->get_th_end() . $ui->get_td_start();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
 
145
  /**
146
  * Filters the arguments for post types to list for taxonomy association.
@@ -169,36 +197,67 @@ function cptui_manage_taxonomies() {
169
  'namearray' => 'cpt_post_types',
170
  'textvalue' => $post_type->name,
171
  'labeltext' => $post_type->label,
172
- 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'cpt-plugin' ), $post_type->label ),
173
  'wrap' => false
174
  ) );
175
  }
176
- echo $ui->get_td_end() . $ui->get_tr_end(); ?>
 
177
  </table>
178
  <p class="submit">
179
  <?php wp_nonce_field( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
180
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
181
- <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_edit', __( 'Save Taxonomy', 'cpt-plugin' ) ) ); ?>" />
182
- <input type="submit" class="button-secondary" name="cpt_delete" id="cpt_submit_delete" value="<?php echo apply_filters( 'cptui_taxonomy_submit_delete', __( 'Delete Taxonomy', 'cpt-plugin' ) ); ?>" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  <?php } else { ?>
184
- <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_add', __( 'Add Taxonomy', 'cpt-plugin' ) ) ); ?>" />
 
 
 
 
 
 
 
 
 
 
185
  <?php } ?>
186
  <input type="hidden" name="cpt_tax_status" id="cpt_tax_status" value="<?php echo $tab; ?>" />
187
  </p>
188
 
189
  <?php if ( 'new' == $tab ) { ?>
190
- <h3><?php _e( 'Starter Notes', 'cpt-plugin' ); ?></h3>
191
  <div><ol>
192
  <?php
193
- echo '<li>' . sprintf( __( 'Taxonomy names should have %smax 32 characters%s, and only contain alphanumeric, lowercase, characters, underscores in place of spaces, and letters that do not have accents.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' );
194
- echo '<li>' . sprintf( __( 'If you are unfamiliar with the advanced taxonomy settings, just fill in the %sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining settings will use default values. Labels, if left blank, will be automatically created based on the taxonomy name. Hover over the question marks for more details.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>', '<strong class="wp-ui-highlight">', '</strong>' ) ;
195
- echo '<li>' . sprintf( __( 'Deleting custom taxonomies do %sNOT%s delete terms added to those taxonomies. You can recreate your taxonomies and the terms will return. Changing the name, after adding terms to the taxonomy, will not update the terms in the database.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
196
  </ol></div>
197
  <?php } ?>
198
  </td>
199
  <td class="outter">
200
  <div>
201
- <h3><?php _e( 'Labels', 'cpt-plugin' ); ?></h3>
202
  <div>
203
  <table>
204
  <?php
@@ -207,147 +266,147 @@ function cptui_manage_taxonomies() {
207
  'namearray' => 'cpt_tax_labels',
208
  'name' => 'menu_name',
209
  'textvalue' => ( isset( $current['labels']['menu_name'] ) ) ? esc_attr( $current['labels']['menu_name'] ) : '',
210
- 'aftertext' => __( '(e.g. Actors)', 'cpt-plugin' ),
211
- 'labeltext' => __( 'Menu Name', 'cpt-plugin' ),
212
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
213
  ) );
214
 
215
  echo $ui->get_text_input( array(
216
  'namearray' => 'cpt_tax_labels',
217
  'name' => 'all_items',
218
  'textvalue' => ( isset( $current['labels']['all_items'] ) ) ? esc_attr( $current['labels']['all_items'] ) : '',
219
- 'aftertext' => __( '(e.g. All Actors)', 'cpt-plugin' ),
220
- 'labeltext' => __( 'All Items', 'cpt-plugin' ),
221
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
222
  ) );
223
 
224
  echo $ui->get_text_input( array(
225
  'namearray' => 'cpt_tax_labels',
226
  'name' => 'edit_item',
227
  'textvalue' => ( isset( $current['labels']['edit_item'] ) ) ? esc_attr( $current['labels']['edit_item'] ) : '',
228
- 'aftertext' => __( '(e.g. Edit Actor)', 'cpt-plugin' ),
229
- 'labeltext' => __( 'Edit Item', 'cpt-plugin' ),
230
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
231
  ) );
232
 
233
  echo $ui->get_text_input( array(
234
  'namearray' => 'cpt_tax_labels',
235
  'name' => 'view_item',
236
  'textvalue' => ( isset( $current['labels']['view_item'] ) ) ? esc_attr( $current['labels']['view_item'] ) : '',
237
- 'aftertext' => __( '(e.g. View Actor)', 'cpt-plugin' ),
238
- 'labeltext' => __( 'View Item', 'cpt-plugin' ),
239
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
240
  ) );
241
 
242
  echo $ui->get_text_input( array(
243
  'namearray' => 'cpt_tax_labels',
244
  'name' => 'update_item',
245
  'textvalue' => ( isset( $current['labels']['update_item'] ) ) ? esc_attr( $current['labels']['update_item'] ) : '',
246
- 'aftertext' => __( '(e.g. Update Actor Name)', 'cpt-plugin' ),
247
- 'labeltext' => __( 'Update Item Name', 'cpt-plugin' ),
248
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
249
  ) );
250
 
251
  echo $ui->get_text_input( array(
252
  'namearray' => 'cpt_tax_labels',
253
  'name' => 'add_new_item',
254
  'textvalue' => ( isset( $current['labels']['add_new_item'] ) ) ? esc_attr( $current['labels']['add_new_item'] ) : '',
255
- 'aftertext' => __( '(e.g. Add New Actor)', 'cpt-plugin' ),
256
- 'labeltext' => __( 'Add New Item', 'cpt-plugin' ),
257
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
258
  ) );
259
 
260
  echo $ui->get_text_input( array(
261
  'namearray' => 'cpt_tax_labels',
262
  'name' => 'new_item_name',
263
  'textvalue' => ( isset( $current['labels']['new_item_name'] ) ) ? esc_attr( $current['labels']['new_item_name'] ) : '',
264
- 'aftertext' => __( '(e.g. New Actor Name)', 'cpt-plugin' ),
265
- 'labeltext' => __( 'New Item Name', 'cpt-plugin' ),
266
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
267
  ) );
268
 
269
  echo $ui->get_text_input( array(
270
  'namearray' => 'cpt_tax_labels',
271
  'name' => 'parent_item',
272
  'textvalue' => ( isset( $current['labels']['parent_item'] ) ) ? esc_attr( $current['labels']['parent_item'] ) : '',
273
- 'aftertext' => __( '(e.g. Parent Actor)', 'cpt-plugin' ),
274
- 'labeltext' => __( 'Parent Item', 'cpt-plugin' ),
275
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
276
  ) );
277
 
278
  echo $ui->get_text_input( array(
279
  'namearray' => 'cpt_tax_labels',
280
  'name' => 'parent_item_colon',
281
  'textvalue' => ( isset( $current['labels']['parent_item_colon'] ) ) ? esc_attr( $current['labels']['parent_item_colon'] ) : '',
282
- 'aftertext' => __( '(e.g. Parent Actor:)', 'cpt-plugin' ),
283
- 'labeltext' => __( 'Parent Item Colon', 'cpt-plugin' ),
284
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
285
  ) );
286
 
287
  echo $ui->get_text_input( array(
288
  'namearray' => 'cpt_tax_labels',
289
  'name' => 'search_items',
290
  'textvalue' => ( isset( $current['labels']['search_items'] ) ) ? esc_attr( $current['labels']['search_items'] ) : '',
291
- 'aftertext' => __( '(e.g. Search Actors)', 'cpt-plugin' ),
292
- 'labeltext' => __( 'Search Items', 'cpt-plugin' ),
293
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
294
  ) );
295
 
296
  echo $ui->get_text_input( array(
297
  'namearray' => 'cpt_tax_labels',
298
  'name' => 'popular_items',
299
  'textvalue' => ( isset( $current['labels']['popular_items'] ) ) ? esc_attr( $current['labels']['popular_items'] ) : null,
300
- 'aftertext' => __( '(e.g. Popular Actors)', 'cpt-plugin' ),
301
- 'labeltext' => __( 'Popular Items', 'cpt-plugin' ),
302
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
303
  ) );
304
 
305
  echo $ui->get_text_input( array(
306
  'namearray' => 'cpt_tax_labels',
307
  'name' => 'separate_items_with_commas',
308
  'textvalue' => ( isset( $current['labels']['separate_items_with_commas'] ) ) ? esc_attr( $current['labels']['separate_items_with_commas'] ) : null,
309
- 'aftertext' => __( '(e.g. Separate actors with commas)', 'cpt-plugin' ),
310
- 'labeltext' => __( 'Separate Items with Commas', 'cpt-plugin' ),
311
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
312
  ) );
313
 
314
  echo $ui->get_text_input( array(
315
  'namearray' => 'cpt_tax_labels',
316
  'name' => 'add_or_remove_items',
317
  'textvalue' => ( isset( $current['labels']['add_or_remove_items'] ) ) ? esc_attr( $current['labels']['add_or_remove_items'] ) : null,
318
- 'aftertext' => __( '(e.g. Add or remove actors)', 'cpt-plugin' ),
319
- 'labeltext' => __( 'Add or Remove Items', 'cpt-plugin' ),
320
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
321
  ) );
322
 
323
  echo $ui->get_text_input( array(
324
  'namearray' => 'cpt_tax_labels',
325
  'name' => 'choose_from_most_used',
326
  'textvalue' => ( isset( $current['labels']['choose_from_most_used'] ) ) ? esc_attr( $current['labels']['choose_from_most_used'] ) : null,
327
- 'aftertext' => __( '(e.g. Choose from the most used actors)', 'cpt-plugin' ),
328
- 'labeltext' => __( 'Choose From Most Used', 'cpt-plugin' ),
329
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
330
  ) );
331
 
332
  echo $ui->get_text_input( array(
333
  'namearray' => 'cpt_tax_labels',
334
  'name' => 'not_found',
335
  'textvalue' => ( isset( $current['labels']['not_found'] ) ) ? esc_attr( $current['labels']['not_found'] ) : null,
336
- 'aftertext' => __( '(e.g. No actors found)', 'cpt-plugin' ),
337
- 'labeltext' => __( 'Not found', 'cpt-plugin' ),
338
- 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'cpt-plugin'),
339
  ) );
340
  ?>
341
  </table>
342
  </div>
343
- <h3><?php _e( 'Settings', 'cpt-plugin' ); ?></h3>
344
  <div>
345
  <table>
346
  <?php
347
  $select = array(
348
  'options' => array(
349
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
350
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ) )
351
  )
352
  );
353
  $selected = ( isset( $current ) ) ? disp_boolean( $current['hierarchical'] ) : '';
@@ -355,16 +414,16 @@ function cptui_manage_taxonomies() {
355
  echo $ui->get_select_input( array(
356
  'namearray' => 'cpt_custom_tax',
357
  'name' => 'hierarchical',
358
- 'labeltext' => __( 'Hierarchical', 'cpt-plugin' ),
359
- 'aftertext' => __( '(default: False)', 'cpt-plugin' ),
360
- 'helptext' => esc_attr__( 'Whether the taxonomy can have parent-child relationships', 'cpt-plugin' ),
361
  'selections' => $select
362
  ) );
363
 
364
  $select = array(
365
  'options' => array(
366
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
367
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
368
  )
369
  );
370
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_ui'] ) : '';
@@ -372,16 +431,16 @@ function cptui_manage_taxonomies() {
372
  echo $ui->get_select_input( array(
373
  'namearray' => 'cpt_custom_tax',
374
  'name' => 'show_ui',
375
- 'labeltext' => __( 'Show UI', 'cpt-plugin' ),
376
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
377
- 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this custom taxonomy.', 'cpt-plugin' ),
378
  'selections' => $select
379
  ) );
380
 
381
  $select = array(
382
  'options' => array(
383
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
384
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
385
  )
386
  );
387
  $selected = ( isset( $current ) ) ? disp_boolean( $current['query_var'] ) : '';
@@ -389,9 +448,9 @@ function cptui_manage_taxonomies() {
389
  echo $ui->get_select_input( array(
390
  'namearray' => 'cpt_custom_tax',
391
  'name' => 'query_var',
392
- 'labeltext' => __( 'Query Var', 'cpt-plugin' ),
393
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
394
- 'helptext' => esc_attr__( 'Sets the query_var key for this taxonomy.', 'cpt-plugin' ),
395
  'selections' => $select
396
  ) );
397
 
@@ -399,15 +458,15 @@ function cptui_manage_taxonomies() {
399
  'namearray' => 'cpt_custom_tax',
400
  'name' => 'query_var_slug',
401
  'textvalue' => ( isset( $current['query_var_slug'] ) ) ? esc_attr( $current['query_var_slug'] ) : '',
402
- 'aftertext' => __( '(default: none). Query Var needs to be true to use.', 'cpt-plugin' ),
403
- 'labeltext' => __( 'Custom Query Var String', 'cpt-plugin' ),
404
- 'helptext' => esc_attr__( 'Sets a custom query_var slug for this taxonomy.', 'cpt-plugin'),
405
  ) );
406
 
407
  $select = array(
408
  'options' => array(
409
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
410
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
411
  )
412
  );
413
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite'] ) : '';
@@ -415,9 +474,9 @@ function cptui_manage_taxonomies() {
415
  echo $ui->get_select_input( array(
416
  'namearray' => 'cpt_custom_tax',
417
  'name' => 'rewrite',
418
- 'labeltext' => __( 'Rewrite', 'cpt-plugin' ),
419
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
420
- 'helptext' => esc_attr__( 'Whether or not WordPress should use rewrites for this taxonomy.', 'cpt-plugin' ),
421
  'selections' => $select
422
  ) );
423
 
@@ -425,15 +484,15 @@ function cptui_manage_taxonomies() {
425
  'namearray' => 'cpt_custom_tax',
426
  'name' => 'rewrite_slug',
427
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
428
- 'aftertext' => __( '(default: taxonomy name)', 'cpt-plugin' ),
429
- 'labeltext' => __( 'Custom Rewrite Slug', 'cpt-plugin' ),
430
- 'helptext' => esc_attr__( 'Custom taxonomy rewrite slug.', 'cpt-plugin'),
431
  ) );
432
 
433
  $select = array(
434
  'options' => array(
435
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
436
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
437
  )
438
  );
439
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite_withfront'] ) : '';
@@ -441,16 +500,16 @@ function cptui_manage_taxonomies() {
441
  echo $ui->get_select_input( array(
442
  'namearray' => 'cpt_custom_tax',
443
  'name' => 'rewrite_withfront',
444
- 'labeltext' => __( 'Rewrite With Front', 'cpt-plugin' ),
445
- 'aftertext' => __( '(default: true)', 'cpt-plugin' ),
446
- 'helptext' => esc_attr__( 'Should the permastruct be prepended with the front base.', 'cpt-plugin' ),
447
  'selections' => $select
448
  ) );
449
 
450
  $select = array(
451
  'options' => array(
452
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'false' ),
453
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ) )
454
  )
455
  );
456
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite_hierarchical'] ) : '';
@@ -458,16 +517,16 @@ function cptui_manage_taxonomies() {
458
  echo $ui->get_select_input( array(
459
  'namearray' => 'cpt_custom_tax',
460
  'name' => 'rewrite_hierarchical',
461
- 'labeltext' => __( 'Rewrite Hierarchical', 'cpt-plugin' ),
462
- 'aftertext' => __( '(default: false)', 'cpt-plugin' ),
463
- 'helptext' => esc_attr__( 'Should the permastruct allow hierarchical urls.', 'cpt-plugin' ),
464
  'selections' => $select
465
  ) );
466
 
467
  $select = array(
468
  'options' => array(
469
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
470
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ) )
471
  )
472
  );
473
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_admin_column'] ) : '';
@@ -475,11 +534,42 @@ function cptui_manage_taxonomies() {
475
  echo $ui->get_select_input( array(
476
  'namearray' => 'cpt_custom_tax',
477
  'name' => 'show_admin_column',
478
- 'labeltext' => __( 'Show Admin Column', 'cpt-plugin' ),
479
- 'aftertext' => __( '(default: False)', 'cpt-plugin' ),
480
- 'helptext' => esc_attr__( 'Whether to allow automatic creation of taxonomy columns on associated post-types.', 'cpt-plugin' ),
481
  'selections' => $select
482
  ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  ?>
484
  </table>
485
  </div>
@@ -510,7 +600,8 @@ function cptui_taxonomies_dropdown( $taxonomies = array() ) {
510
  $select['options'] = array();
511
 
512
  foreach( $taxonomies as $tax ) {
513
- $select['options'][] = array( 'attr' => $tax['name'], 'text' => $tax['label'] );
 
514
  }
515
 
516
  $current = cptui_get_current_taxonomy();
@@ -582,7 +673,7 @@ function cptui_delete_taxonomy( $data = array() ) {
582
 
583
  #Check if they selected one to delete
584
  if ( empty( $data['cpt_custom_tax']['name'] ) ) {
585
- return cptui_admin_notices( 'error', '', false, __( 'Please provide a taxonomy to delete', 'cpt-plugin' ) );
586
  }
587
 
588
  $taxonomies = get_option( 'cptui_taxonomies' );
@@ -633,7 +724,7 @@ function cptui_update_taxonomy( $data = array() ) {
633
 
634
  # They need to provide a name
635
  if ( empty( $data['cpt_custom_tax']['name'] ) ) {
636
- return cptui_admin_notices( 'error', '', false, __( 'Please provide a taxonomy name', 'cpt-plugin' ) );
637
  }
638
 
639
  foreach( $data as $key => $value ) {
@@ -649,13 +740,13 @@ function cptui_update_taxonomy( $data = array() ) {
649
  false !== strpos( $data['cpt_custom_tax']['rewrite_slug'], '\'' ) ||
650
  false !== strpos( $data['cpt_custom_tax']['rewrite_slug'], '\"' ) ) {
651
 
652
- return cptui_admin_notices( 'error', '', false, __( 'Please do not use quotes in taxonomy names or rewrite slugs', 'cpt-plugin' ) );
653
  }
654
 
655
  $taxonomies = get_option( 'cptui_taxonomies', array() );
656
 
657
  if ( 'new' == $data['cpt_tax_status'] && array_key_exists( strtolower( $data['cpt_custom_tax']['name'] ), $taxonomies ) ) {
658
- return cptui_admin_notices( 'error', '', false, sprintf( __( 'Please choose a different taxonomy name. %s is already used.', 'cpt-plugin' ), $data['cpt_custom_tax']['name'] ) );
659
  }
660
 
661
  if ( empty( $data['cpt_post_types'] ) || !is_array( $data['cpt_post_types'] ) ) {
@@ -678,13 +769,16 @@ function cptui_update_taxonomy( $data = array() ) {
678
  $name = trim( $data['cpt_custom_tax']['name'] );
679
  $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['singular_label'] ) );
680
  $singular_label = htmlspecialchars( stripslashes( $singular_label ) );
 
681
  $query_var_slug = trim( $data['cpt_custom_tax']['query_var_slug'] );
682
  $rewrite_slug = trim( $data['cpt_custom_tax']['rewrite_slug'] );
 
683
 
684
  $taxonomies[ $data['cpt_custom_tax']['name'] ] = array(
685
  'name' => $name,
686
  'label' => $label,
687
  'singular_label' => $singular_label,
 
688
  'hierarchical' => disp_boolean( $data['cpt_custom_tax']['hierarchical'] ),
689
  'show_ui' => disp_boolean( $data['cpt_custom_tax']['show_ui'] ),
690
  'query_var' => disp_boolean( $data['cpt_custom_tax']['query_var'] ),
@@ -694,6 +788,8 @@ function cptui_update_taxonomy( $data = array() ) {
694
  'rewrite_withfront' => $data['cpt_custom_tax']['rewrite_withfront'],
695
  'rewrite_hierarchical' => $data['cpt_custom_tax']['rewrite_hierarchical'],
696
  'show_admin_column' => disp_boolean( $data['cpt_custom_tax']['show_admin_column'] ),
 
 
697
  'labels' => $data['cpt_tax_labels']
698
  );
699
 
19
  return;
20
  }
21
 
22
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
23
+ return;
24
+ }
25
+
26
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
27
  wp_localize_script( 'cptui', 'cptui_tax_data',
28
  array(
29
+ 'confirm' => __( 'Are you sure you want to delete this?', 'custom-post-type-ui' ),
30
+ #'tax_change_name' => '<div class="typetax-rename">' . __( 'Changing this will rename the taxonomy.', 'custom-post-type-ui' ) . '</div>'
31
  )
32
  );
33
  }
86
  # Will only be set if we're already on the edit screen
87
  if ( !empty( $taxonomies ) ) { ?>
88
  <form id="cptui_select_taxonomy" method="post">
89
+ <p><?php _e( 'DO NOT EDIT the taxonomy slug unless necessary. Changing that value registers a new taxonomy entry for your install.', 'custom-post-type-ui' ); ?></p>
90
+ <label for="taxonomy"><?php _e( 'Select: ', 'custom-post-type-ui' ); ?></label>
91
  <?php
 
92
  cptui_taxonomies_dropdown( $taxonomies );
 
93
 
94
+ /**
95
+ * Filters the text value to use on the select taxonomy button.
96
+ *
97
+ * @since 1.0.0
98
+ *
99
+ * @param string $value Text to use for the button.
100
+ */
101
+ ?>
102
+ <input type="submit" class="button-secondary" name="cptui_select_taxonomy_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_select', __( 'Select', 'custom-post-type-ui' ) ) ); ?>" />
103
  </form>
104
  <?php
105
 
126
  'textvalue' => ( isset( $current['name'] ) ) ? esc_attr( $current['name'] ) : '',
127
  'maxlength' => '32',
128
  'onblur' => 'this.value=this.value.toLowerCase()',
129
+ 'labeltext' => __( 'Taxonomy Slug', 'custom-post-type-ui' ),
130
+ 'aftertext' => __( '(e.g. actor)', 'custom-post-type-ui' ),
131
+ 'helptext' => esc_attr__( 'The taxonomy name. Used to retrieve custom taxonomy content. Should be short and unique', 'custom-post-type-ui'),
132
  'required' => true,
133
  ) );
134
 
136
  'namearray' => 'cpt_custom_tax',
137
  'name' => 'label',
138
  'textvalue' => ( isset( $current['label'] ) ) ? esc_attr( $current['label'] ) : '',
139
+ 'aftertext' => __( '(e.g. Actors)', 'custom-post-type-ui' ),
140
+ 'labeltext' => __( 'Plural Label', 'custom-post-type-ui' ),
141
+ 'helptext' => esc_attr__( 'Taxonomy label. Used in the admin menu for displaying custom taxonomy.', 'custom-post-type-ui'),
142
  ) );
143
 
144
  echo $ui->get_text_input( array(
145
  'namearray' => 'cpt_custom_tax',
146
  'name' => 'singular_label',
147
  'textvalue' => ( isset( $current['singular_label'] ) ) ? esc_attr( $current['singular_label'] ) : '',
148
+ 'aftertext' => __( '(e.g. Actor)', 'custom-post-type-ui' ),
149
+ 'labeltext' => __( 'Singular Label', 'custom-post-type-ui' ),
150
+ 'helptext' => esc_attr__( 'Taxonomy Singular label. Used in WordPress when a singular label is needed.', 'custom-post-type-ui'),
151
  ) );
152
 
153
+ /*
154
+ * Post Description
155
+ */
156
+ if ( isset( $current['description'] ) ) {
157
+ $current['description'] = stripslashes_deep( $current['description'] );
158
+ }
159
+
160
+ echo $ui->get_textarea_input( array(
161
+ 'namearray' => 'cpt_custom_tax',
162
+ 'name' => 'description',
163
+ 'rows' => '4',
164
+ 'cols' => '40',
165
+ 'textvalue' => ( isset( $current['description'] ) ) ? esc_textarea( $current['description'] ) : '',
166
+ 'labeltext' => __( 'Description', 'custom-post-type-ui' ),
167
+ 'helptext' => esc_attr__( 'Taxonomy Description. Describe what your taxonomy is used for.', 'custom-post-type-ui' )
168
+ ) );
169
+
170
+ echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Attach to Post Type', 'custom-post-type-ui' ) . $ui->get_required();
171
+ echo $ui->get_th_end() . $ui->get_td_start() . $ui->get_fieldset_start();
172
 
173
  /**
174
  * Filters the arguments for post types to list for taxonomy association.
197
  'namearray' => 'cpt_post_types',
198
  'textvalue' => $post_type->name,
199
  'labeltext' => $post_type->label,
200
+ 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'custom-post-type-ui' ), $post_type->label ),
201
  'wrap' => false
202
  ) );
203
  }
204
+
205
+ echo $ui->get_fieldset_end() . $ui->get_td_end() . $ui->get_tr_end(); ?>
206
  </table>
207
  <p class="submit">
208
  <?php wp_nonce_field( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
209
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
210
+ <?php
211
+
212
+ /**
213
+ * Filters the text value to use on the button when editing.
214
+ *
215
+ * @since 1.0.0
216
+ *
217
+ * @param string $value Text to use for the button.
218
+ */
219
+ ?>
220
+ <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_edit', __( 'Save Taxonomy', 'custom-post-type-ui' ) ) ); ?>" />
221
+ <?php
222
+
223
+ /**
224
+ * Filters the text value to use on the button when deleting.
225
+ *
226
+ * @since 1.0.0
227
+ *
228
+ * @param string $value Text to use for the button.
229
+ */
230
+ ?>
231
+ <input type="submit" class="button-secondary" name="cpt_delete" id="cpt_submit_delete" value="<?php echo apply_filters( 'cptui_taxonomy_submit_delete', __( 'Delete Taxonomy', 'custom-post-type-ui' ) ); ?>" />
232
  <?php } else { ?>
233
+ <?php
234
+
235
+ /**
236
+ * Filters the text value to use on the button when adding.
237
+ *
238
+ * @since 1.0.0
239
+ *
240
+ * @param string $value Text to use for the button.
241
+ */
242
+ ?>
243
+ <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_add', __( 'Add Taxonomy', 'custom-post-type-ui' ) ) ); ?>" />
244
  <?php } ?>
245
  <input type="hidden" name="cpt_tax_status" id="cpt_tax_status" value="<?php echo $tab; ?>" />
246
  </p>
247
 
248
  <?php if ( 'new' == $tab ) { ?>
249
+ <h2><?php _e( 'Starter Notes', 'custom-post-type-ui' ); ?></h2>
250
  <div><ol>
251
  <?php
252
+ echo '<li>' . sprintf( __( 'Taxonomy names should have %smax 32 characters%s, and only contain alphanumeric, lowercase, characters, underscores in place of spaces, and letters that do not have accents.', 'custom-post-type-ui' ), '<strong class="wp-ui-highlight">', '</strong>' );
253
+ echo '<li>' . sprintf( __( 'If you are unfamiliar with the advanced taxonomy settings, just fill in the %sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining settings will use default values. Labels, if left blank, will be automatically created based on the taxonomy name. Hover over the question marks for more details.', 'custom-post-type-ui' ), '<strong class="wp-ui-highlight">', '</strong>', '<strong class="wp-ui-highlight">', '</strong>' ) ;
254
+ echo '<li>' . sprintf( __( 'Deleting custom taxonomies do %sNOT%s delete terms added to those taxonomies. You can recreate your taxonomies and the terms will return. Changing the name, after adding terms to the taxonomy, will not update the terms in the database.', 'custom-post-type-ui' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
255
  </ol></div>
256
  <?php } ?>
257
  </td>
258
  <td class="outter">
259
  <div>
260
+ <h2><?php _e( 'Labels', 'custom-post-type-ui' ); ?></h2>
261
  <div>
262
  <table>
263
  <?php
266
  'namearray' => 'cpt_tax_labels',
267
  'name' => 'menu_name',
268
  'textvalue' => ( isset( $current['labels']['menu_name'] ) ) ? esc_attr( $current['labels']['menu_name'] ) : '',
269
+ 'aftertext' => __( '(e.g. Actors)', 'custom-post-type-ui' ),
270
+ 'labeltext' => __( 'Menu Name', 'custom-post-type-ui' ),
271
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
272
  ) );
273
 
274
  echo $ui->get_text_input( array(
275
  'namearray' => 'cpt_tax_labels',
276
  'name' => 'all_items',
277
  'textvalue' => ( isset( $current['labels']['all_items'] ) ) ? esc_attr( $current['labels']['all_items'] ) : '',
278
+ 'aftertext' => __( '(e.g. All Actors)', 'custom-post-type-ui' ),
279
+ 'labeltext' => __( 'All Items', 'custom-post-type-ui' ),
280
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
281
  ) );
282
 
283
  echo $ui->get_text_input( array(
284
  'namearray' => 'cpt_tax_labels',
285
  'name' => 'edit_item',
286
  'textvalue' => ( isset( $current['labels']['edit_item'] ) ) ? esc_attr( $current['labels']['edit_item'] ) : '',
287
+ 'aftertext' => __( '(e.g. Edit Actor)', 'custom-post-type-ui' ),
288
+ 'labeltext' => __( 'Edit Item', 'custom-post-type-ui' ),
289
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
290
  ) );
291
 
292
  echo $ui->get_text_input( array(
293
  'namearray' => 'cpt_tax_labels',
294
  'name' => 'view_item',
295
  'textvalue' => ( isset( $current['labels']['view_item'] ) ) ? esc_attr( $current['labels']['view_item'] ) : '',
296
+ 'aftertext' => __( '(e.g. View Actor)', 'custom-post-type-ui' ),
297
+ 'labeltext' => __( 'View Item', 'custom-post-type-ui' ),
298
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
299
  ) );
300
 
301
  echo $ui->get_text_input( array(
302
  'namearray' => 'cpt_tax_labels',
303
  'name' => 'update_item',
304
  'textvalue' => ( isset( $current['labels']['update_item'] ) ) ? esc_attr( $current['labels']['update_item'] ) : '',
305
+ 'aftertext' => __( '(e.g. Update Actor Name)', 'custom-post-type-ui' ),
306
+ 'labeltext' => __( 'Update Item Name', 'custom-post-type-ui' ),
307
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
308
  ) );
309
 
310
  echo $ui->get_text_input( array(
311
  'namearray' => 'cpt_tax_labels',
312
  'name' => 'add_new_item',
313
  'textvalue' => ( isset( $current['labels']['add_new_item'] ) ) ? esc_attr( $current['labels']['add_new_item'] ) : '',
314
+ 'aftertext' => __( '(e.g. Add New Actor)', 'custom-post-type-ui' ),
315
+ 'labeltext' => __( 'Add New Item', 'custom-post-type-ui' ),
316
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
317
  ) );
318
 
319
  echo $ui->get_text_input( array(
320
  'namearray' => 'cpt_tax_labels',
321
  'name' => 'new_item_name',
322
  'textvalue' => ( isset( $current['labels']['new_item_name'] ) ) ? esc_attr( $current['labels']['new_item_name'] ) : '',
323
+ 'aftertext' => __( '(e.g. New Actor Name)', 'custom-post-type-ui' ),
324
+ 'labeltext' => __( 'New Item Name', 'custom-post-type-ui' ),
325
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
326
  ) );
327
 
328
  echo $ui->get_text_input( array(
329
  'namearray' => 'cpt_tax_labels',
330
  'name' => 'parent_item',
331
  'textvalue' => ( isset( $current['labels']['parent_item'] ) ) ? esc_attr( $current['labels']['parent_item'] ) : '',
332
+ 'aftertext' => __( '(e.g. Parent Actor)', 'custom-post-type-ui' ),
333
+ 'labeltext' => __( 'Parent Item', 'custom-post-type-ui' ),
334
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
335
  ) );
336
 
337
  echo $ui->get_text_input( array(
338
  'namearray' => 'cpt_tax_labels',
339
  'name' => 'parent_item_colon',
340
  'textvalue' => ( isset( $current['labels']['parent_item_colon'] ) ) ? esc_attr( $current['labels']['parent_item_colon'] ) : '',
341
+ 'aftertext' => __( '(e.g. Parent Actor:)', 'custom-post-type-ui' ),
342
+ 'labeltext' => __( 'Parent Item Colon', 'custom-post-type-ui' ),
343
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
344
  ) );
345
 
346
  echo $ui->get_text_input( array(
347
  'namearray' => 'cpt_tax_labels',
348
  'name' => 'search_items',
349
  'textvalue' => ( isset( $current['labels']['search_items'] ) ) ? esc_attr( $current['labels']['search_items'] ) : '',
350
+ 'aftertext' => __( '(e.g. Search Actors)', 'custom-post-type-ui' ),
351
+ 'labeltext' => __( 'Search Items', 'custom-post-type-ui' ),
352
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
353
  ) );
354
 
355
  echo $ui->get_text_input( array(
356
  'namearray' => 'cpt_tax_labels',
357
  'name' => 'popular_items',
358
  'textvalue' => ( isset( $current['labels']['popular_items'] ) ) ? esc_attr( $current['labels']['popular_items'] ) : null,
359
+ 'aftertext' => __( '(e.g. Popular Actors)', 'custom-post-type-ui' ),
360
+ 'labeltext' => __( 'Popular Items', 'custom-post-type-ui' ),
361
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
362
  ) );
363
 
364
  echo $ui->get_text_input( array(
365
  'namearray' => 'cpt_tax_labels',
366
  'name' => 'separate_items_with_commas',
367
  'textvalue' => ( isset( $current['labels']['separate_items_with_commas'] ) ) ? esc_attr( $current['labels']['separate_items_with_commas'] ) : null,
368
+ 'aftertext' => __( '(e.g. Separate Actors with commas)', 'custom-post-type-ui' ),
369
+ 'labeltext' => __( 'Separate Items with Commas', 'custom-post-type-ui' ),
370
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
371
  ) );
372
 
373
  echo $ui->get_text_input( array(
374
  'namearray' => 'cpt_tax_labels',
375
  'name' => 'add_or_remove_items',
376
  'textvalue' => ( isset( $current['labels']['add_or_remove_items'] ) ) ? esc_attr( $current['labels']['add_or_remove_items'] ) : null,
377
+ 'aftertext' => __( '(e.g. Add or remove Actors)', 'custom-post-type-ui' ),
378
+ 'labeltext' => __( 'Add or Remove Items', 'custom-post-type-ui' ),
379
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
380
  ) );
381
 
382
  echo $ui->get_text_input( array(
383
  'namearray' => 'cpt_tax_labels',
384
  'name' => 'choose_from_most_used',
385
  'textvalue' => ( isset( $current['labels']['choose_from_most_used'] ) ) ? esc_attr( $current['labels']['choose_from_most_used'] ) : null,
386
+ 'aftertext' => __( '(e.g. Choose from the most used Actors)', 'custom-post-type-ui' ),
387
+ 'labeltext' => __( 'Choose From Most Used', 'custom-post-type-ui' ),
388
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
389
  ) );
390
 
391
  echo $ui->get_text_input( array(
392
  'namearray' => 'cpt_tax_labels',
393
  'name' => 'not_found',
394
  'textvalue' => ( isset( $current['labels']['not_found'] ) ) ? esc_attr( $current['labels']['not_found'] ) : null,
395
+ 'aftertext' => __( '(e.g. No Actors found)', 'custom-post-type-ui' ),
396
+ 'labeltext' => __( 'Not found', 'custom-post-type-ui' ),
397
+ 'helptext' => esc_attr__( 'Custom taxonomy label. Used in the admin menu for displaying taxonomies.', 'custom-post-type-ui'),
398
  ) );
399
  ?>
400
  </table>
401
  </div>
402
+ <h2><?php _e( 'Settings', 'custom-post-type-ui' ); ?></h2>
403
  <div>
404
  <table>
405
  <?php
406
  $select = array(
407
  'options' => array(
408
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'true' ),
409
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
410
  )
411
  );
412
  $selected = ( isset( $current ) ) ? disp_boolean( $current['hierarchical'] ) : '';
414
  echo $ui->get_select_input( array(
415
  'namearray' => 'cpt_custom_tax',
416
  'name' => 'hierarchical',
417
+ 'labeltext' => __( 'Hierarchical', 'custom-post-type-ui' ),
418
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
419
+ 'helptext' => esc_attr__( 'Whether the taxonomy can have parent-child relationships', 'custom-post-type-ui' ),
420
  'selections' => $select
421
  ) );
422
 
423
  $select = array(
424
  'options' => array(
425
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
426
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
427
  )
428
  );
429
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_ui'] ) : '';
431
  echo $ui->get_select_input( array(
432
  'namearray' => 'cpt_custom_tax',
433
  'name' => 'show_ui',
434
+ 'labeltext' => __( 'Show UI', 'custom-post-type-ui' ),
435
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
436
+ 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this custom taxonomy.', 'custom-post-type-ui' ),
437
  'selections' => $select
438
  ) );
439
 
440
  $select = array(
441
  'options' => array(
442
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
443
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
444
  )
445
  );
446
  $selected = ( isset( $current ) ) ? disp_boolean( $current['query_var'] ) : '';
448
  echo $ui->get_select_input( array(
449
  'namearray' => 'cpt_custom_tax',
450
  'name' => 'query_var',
451
+ 'labeltext' => __( 'Query Var', 'custom-post-type-ui' ),
452
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
453
+ 'helptext' => esc_attr__( 'Sets the query_var key for this taxonomy.', 'custom-post-type-ui' ),
454
  'selections' => $select
455
  ) );
456
 
458
  'namearray' => 'cpt_custom_tax',
459
  'name' => 'query_var_slug',
460
  'textvalue' => ( isset( $current['query_var_slug'] ) ) ? esc_attr( $current['query_var_slug'] ) : '',
461
+ 'aftertext' => __( '(default: taxonomy slug). Query var needs to be true to use.', 'custom-post-type-ui' ),
462
+ 'labeltext' => __( 'Custom Query Var String', 'custom-post-type-ui' ),
463
+ 'helptext' => esc_attr__( 'Sets a custom query_var slug for this taxonomy.', 'custom-post-type-ui'),
464
  ) );
465
 
466
  $select = array(
467
  'options' => array(
468
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
469
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
470
  )
471
  );
472
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite'] ) : '';
474
  echo $ui->get_select_input( array(
475
  'namearray' => 'cpt_custom_tax',
476
  'name' => 'rewrite',
477
+ 'labeltext' => __( 'Rewrite', 'custom-post-type-ui' ),
478
+ 'aftertext' => __( '(default: True)', 'custom-post-type-ui' ),
479
+ 'helptext' => esc_attr__( 'Whether or not WordPress should use rewrites for this taxonomy.', 'custom-post-type-ui' ),
480
  'selections' => $select
481
  ) );
482
 
484
  'namearray' => 'cpt_custom_tax',
485
  'name' => 'rewrite_slug',
486
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
487
+ 'aftertext' => __( '(default: taxonomy name)', 'custom-post-type-ui' ),
488
+ 'labeltext' => __( 'Custom Rewrite Slug', 'custom-post-type-ui' ),
489
+ 'helptext' => esc_attr__( 'Custom taxonomy rewrite slug.', 'custom-post-type-ui'),
490
  ) );
491
 
492
  $select = array(
493
  'options' => array(
494
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ) ),
495
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ), 'default' => 'true' )
496
  )
497
  );
498
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite_withfront'] ) : '';
500
  echo $ui->get_select_input( array(
501
  'namearray' => 'cpt_custom_tax',
502
  'name' => 'rewrite_withfront',
503
+ 'labeltext' => __( 'Rewrite With Front', 'custom-post-type-ui' ),
504
+ 'aftertext' => __( '(default: true)', 'custom-post-type-ui' ),
505
+ 'helptext' => esc_attr__( 'Should the permastruct be prepended with the front base.', 'custom-post-type-ui' ),
506
  'selections' => $select
507
  ) );
508
 
509
  $select = array(
510
  'options' => array(
511
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'false' ),
512
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
513
  )
514
  );
515
  $selected = ( isset( $current ) ) ? disp_boolean( $current['rewrite_hierarchical'] ) : '';
517
  echo $ui->get_select_input( array(
518
  'namearray' => 'cpt_custom_tax',
519
  'name' => 'rewrite_hierarchical',
520
+ 'labeltext' => __( 'Rewrite Hierarchical', 'custom-post-type-ui' ),
521
+ 'aftertext' => __( '(default: false)', 'custom-post-type-ui' ),
522
+ 'helptext' => esc_attr__( 'Should the permastruct allow hierarchical urls.', 'custom-post-type-ui' ),
523
  'selections' => $select
524
  ) );
525
 
526
  $select = array(
527
  'options' => array(
528
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'true' ),
529
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
530
  )
531
  );
532
  $selected = ( isset( $current ) ) ? disp_boolean( $current['show_admin_column'] ) : '';
534
  echo $ui->get_select_input( array(
535
  'namearray' => 'cpt_custom_tax',
536
  'name' => 'show_admin_column',
537
+ 'labeltext' => __( 'Show Admin Column', 'custom-post-type-ui' ),
538
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
539
+ 'helptext' => esc_attr__( 'Whether to allow automatic creation of taxonomy columns on associated post-types.', 'custom-post-type-ui' ),
540
  'selections' => $select
541
  ) );
542
+
543
+ /*
544
+ * show_in_rest Boolean
545
+ */
546
+ $select = array(
547
+ 'options' => array(
548
+ array( 'attr' => '0', 'text' => __( 'False', 'custom-post-type-ui' ), 'default' => 'false' ),
549
+ array( 'attr' => '1', 'text' => __( 'True', 'custom-post-type-ui' ) )
550
+ )
551
+ );
552
+ $selected = ( isset( $current ) ) ? disp_boolean( $current['show_in_rest'] ) : '';
553
+ $select['selected'] = ( ! empty( $selected ) ) ? $current['show_in_rest'] : '';
554
+ echo $ui->get_select_input( array(
555
+ 'namearray' => 'cpt_custom_tax',
556
+ 'name' => 'show_in_rest',
557
+ 'labeltext' => __( 'Show in REST API', 'custom-post-type-ui' ),
558
+ 'aftertext' => __( '(default: False)', 'custom-post-type-ui' ),
559
+ 'helptext' => esc_attr__( 'Whether to show this taxonomy data in the WP REST API.', 'custom-post-type-ui' ),
560
+ 'selections' => $select
561
+ ) );
562
+
563
+ /*
564
+ * rest_base slug.
565
+ */
566
+ echo $ui->get_text_input( array(
567
+ 'labeltext' => __( 'REST API base slug', 'custom-post-type-ui' ),
568
+ 'helptext' => esc_attr__( 'Slug to use in REST API URLs.', 'custom-post-type-ui' ),
569
+ 'namearray' => 'cpt_custom_tax',
570
+ 'name' => 'rest_base',
571
+ 'textvalue' => ( isset( $current['rest_base'] ) ) ? esc_attr( $current['rest_base'] ) : '',
572
+ ) );
573
  ?>
574
  </table>
575
  </div>
600
  $select['options'] = array();
601
 
602
  foreach( $taxonomies as $tax ) {
603
+ $text = ( ! empty( $tax['label'] ) ) ? $tax['label'] : $tax['name'];
604
+ $select['options'][] = array( 'attr' => $tax['name'], 'text' => $text );
605
  }
606
 
607
  $current = cptui_get_current_taxonomy();
673
 
674
  #Check if they selected one to delete
675
  if ( empty( $data['cpt_custom_tax']['name'] ) ) {
676
+ return cptui_admin_notices( 'error', '', false, __( 'Please provide a taxonomy to delete', 'custom-post-type-ui' ) );
677
  }
678
 
679
  $taxonomies = get_option( 'cptui_taxonomies' );
724
 
725
  # They need to provide a name
726
  if ( empty( $data['cpt_custom_tax']['name'] ) ) {
727
+ return cptui_admin_notices( 'error', '', false, __( 'Please provide a taxonomy name', 'custom-post-type-ui' ) );
728
  }
729
 
730
  foreach( $data as $key => $value ) {
740
  false !== strpos( $data['cpt_custom_tax']['rewrite_slug'], '\'' ) ||
741
  false !== strpos( $data['cpt_custom_tax']['rewrite_slug'], '\"' ) ) {
742
 
743
+ return cptui_admin_notices( 'error', '', false, __( 'Please do not use quotes in taxonomy names or rewrite slugs', 'custom-post-type-ui' ) );
744
  }
745
 
746
  $taxonomies = get_option( 'cptui_taxonomies', array() );
747
 
748
  if ( 'new' == $data['cpt_tax_status'] && array_key_exists( strtolower( $data['cpt_custom_tax']['name'] ), $taxonomies ) ) {
749
+ return cptui_admin_notices( 'error', '', false, sprintf( __( 'Please choose a different taxonomy name. %s is already used.', 'custom-post-type-ui' ), $data['cpt_custom_tax']['name'] ) );
750
  }
751
 
752
  if ( empty( $data['cpt_post_types'] ) || !is_array( $data['cpt_post_types'] ) ) {
769
  $name = trim( $data['cpt_custom_tax']['name'] );
770
  $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['singular_label'] ) );
771
  $singular_label = htmlspecialchars( stripslashes( $singular_label ) );
772
+ $description = stripslashes_deep( $data['cpt_custom_tax']['description'] );
773
  $query_var_slug = trim( $data['cpt_custom_tax']['query_var_slug'] );
774
  $rewrite_slug = trim( $data['cpt_custom_tax']['rewrite_slug'] );
775
+ $rest_base = trim( $data['cpt_custom_tax']['rest_base'] );
776
 
777
  $taxonomies[ $data['cpt_custom_tax']['name'] ] = array(
778
  'name' => $name,
779
  'label' => $label,
780
  'singular_label' => $singular_label,
781
+ 'description' => $description,
782
  'hierarchical' => disp_boolean( $data['cpt_custom_tax']['hierarchical'] ),
783
  'show_ui' => disp_boolean( $data['cpt_custom_tax']['show_ui'] ),
784
  'query_var' => disp_boolean( $data['cpt_custom_tax']['query_var'] ),
788
  'rewrite_withfront' => $data['cpt_custom_tax']['rewrite_withfront'],
789
  'rewrite_hierarchical' => $data['cpt_custom_tax']['rewrite_hierarchical'],
790
  'show_admin_column' => disp_boolean( $data['cpt_custom_tax']['show_admin_column'] ),
791
+ 'show_in_rest' => disp_boolean( $data['cpt_custom_tax']['show_in_rest'] ),
792
+ 'rest_base' => $rest_base,
793
  'labels' => $data['cpt_tax_labels']
794
  );
795
 
js/cptui.js CHANGED
@@ -19,7 +19,7 @@
19
  //Toggles help/support accordions.
20
  $('#support .question').each(function() {
21
  var tis = $(this), state = false, answer = tis.next('div').slideUp();
22
- tis.click(function() {
23
  state = !state;
24
  answer.slideToggle(state);
25
  tis.toggleClass('active',state);
19
  //Toggles help/support accordions.
20
  $('#support .question').each(function() {
21
  var tis = $(this), state = false, answer = tis.next('div').slideUp();
22
+ tis.on('click',function() {
23
  state = !state;
24
  answer.slideToggle(state);
25
  tis.toggleClass('active',state);
languages/cpt-plugin-de_DE.mo DELETED
Binary file
languages/cpt-plugin-pt_PT.mo DELETED
Binary file
languages/cpt-plugin-pt_PT.po DELETED
@@ -1,2029 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Custom Post Type UI\n"
4
- "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
- "POT-Creation-Date: 2015-08-11 11:36-0500\n"
6
- "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
- "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
- "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
9
- "Language: pt_PT\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.2\n"
14
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "X-Poedit-WPHeader: custom-post-type-ui.php\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: tests\n"
23
- "X-Poedit-SearchPathExcluded-1: *.js\n"
24
-
25
- #: custom-post-type-ui.php:60
26
- msgid "Custom Post Types"
27
- msgstr "Tipos de artigo personalizados"
28
-
29
- #: custom-post-type-ui.php:60
30
- msgid "CPT UI"
31
- msgstr "CPT UI"
32
-
33
- #: custom-post-type-ui.php:61
34
- msgid "Add/Edit Post Types"
35
- msgstr "Adicionar/editar tipos de artigo"
36
-
37
- #: custom-post-type-ui.php:62
38
- msgid "Add/Edit Taxonomies"
39
- msgstr "Adicionar/editar taxonomias"
40
-
41
- #: custom-post-type-ui.php:63
42
- msgid "Registered Types and Taxes"
43
- msgstr "Tipos e taxonomias registados"
44
-
45
- #: custom-post-type-ui.php:63
46
- msgid "Registered Types/Taxes"
47
- msgstr "Tipos/taxonomias registados"
48
-
49
- #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
50
- msgid "Import/Export"
51
- msgstr "Importar/exportar"
52
-
53
- #: custom-post-type-ui.php:65
54
- msgid "Help/Support"
55
- msgstr "Ajuda/suporte"
56
-
57
- #: custom-post-type-ui.php:69
58
- msgid "About CPT UI"
59
- msgstr "Sobre o CPT UI"
60
-
61
- #. Plugin Name of the plugin/theme
62
- #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
63
- msgid "Custom Post Type UI"
64
- msgstr "Custom Post Type UI"
65
-
66
- #: custom-post-type-ui.php:342
67
- msgid ""
68
- "Thank you for choosing Custom Post Type UI. We hope that your experience "
69
- "with our plugin provides efficiency and speed in creating post types and "
70
- "taxonomies, to better organize your content, without having to touch code."
71
- msgstr ""
72
- "Obrigado por escolher o Custom Post Type UI. Esperamos que a sua experiência "
73
- "com o nosso plugin proporcione eficiência e rapidez na criação de tipos de "
74
- "artigo e de taxonomias, para melhor organizar os seus conteúdos sem ter que "
75
- "mexer em código."
76
-
77
- #: custom-post-type-ui.php:348
78
- msgid "Post type migration"
79
- msgstr "Migração de tipo de artigo"
80
-
81
- #: custom-post-type-ui.php:349
82
- msgid ""
83
- "In the past, if you changed your post type slug, you would lose immediate "
84
- "access to the posts in the post type and need to recover another way. We "
85
- "have now added support for migrating all posts within the old post type to "
86
- "the new post type you renamed it to."
87
- msgstr ""
88
- "No passado, se alterasse o URL do seu tipo de artigo, perderia de imediato o "
89
- "acesso aos artigos desse tipo e precisaria de os recuperar de outro modo. "
90
- "Actualmente adicionámos suporte para migrar todos os artigos do tipo de "
91
- "artigo anterior para o recém nomeado tipo de artigo."
92
-
93
- #: custom-post-type-ui.php:352
94
- msgid "UI Refinement"
95
- msgstr "Refinamento do interface do utilizador"
96
-
97
- #: custom-post-type-ui.php:353
98
- msgid ""
99
- "After receiving feedback regarding the 1.0.x changes, we have further "
100
- "simplified the UI to reduce the amount of clicking necessary to manage your "
101
- "post types and taxonomies."
102
- msgstr ""
103
- "Depois de recebermos retorno sobre alterações nas versões 1.0.x, "
104
- "simplificámos o interface do utilizador para reduzir a quantidade de cliques "
105
- "necessários para gerir os tipos de artigos e taxonomias."
106
-
107
- #: custom-post-type-ui.php:356
108
- msgid "Registered Post Type and Taxonomy Listings"
109
- msgstr "Listas de tipos de artigos e taxonomias registados"
110
-
111
- #: custom-post-type-ui.php:357
112
- msgid ""
113
- "We are bringing back the listing of all CPTUI-registered post types and "
114
- "taxonomies for easier quick view of what you have going."
115
- msgstr ""
116
- "Trouxémos de volta as listas de todos os tipos de artigos e taxonomias "
117
- "registados pelo CPTUI para uma visualização facilitada do que tem em "
118
- "funcionamento."
119
-
120
- #: custom-post-type-ui.php:362
121
- msgid "Help Support This Plugin!"
122
- msgstr "Ajude a apoiar este plugin!"
123
-
124
- #: custom-post-type-ui.php:366
125
- msgid "Professional WordPress<br />Third Edition"
126
- msgstr "Professional WordPress<br />Terceira edição"
127
-
128
- #: custom-post-type-ui.php:371
129
- msgid ""
130
- "The leading book on WordPress design and development! Brand new third "
131
- "edition!"
132
- msgstr ""
133
- "O principal livro sobre design e desenvolvimento em WordPress! Nova edição!"
134
-
135
- #: custom-post-type-ui.php:374
136
- msgid "Professional WordPress<br />Plugin Development"
137
- msgstr "Professional WordPress<br />Plugin Development"
138
-
139
- #: custom-post-type-ui.php:379
140
- msgid "Highest rated WordPress development book on Amazon!"
141
- msgstr "Livro de desenvolvimento WordPress mais votado na Amazon!"
142
-
143
- #: custom-post-type-ui.php:382
144
- msgid "PayPal Donation"
145
- msgstr "Donativo PayPal"
146
-
147
- #: custom-post-type-ui.php:386
148
- msgid "PayPal - The safer, easier way to pay online!"
149
- msgstr "Paypal - o modo mais fácil e seguro de fazer pagamentos online!"
150
-
151
- #: custom-post-type-ui.php:389
152
- msgid "Please donate to the development of Custom Post Type UI:"
153
- msgstr ""
154
- "Por favor faça um donativo para o desenvolvimento do Custom Port Type UI:"
155
-
156
- #: custom-post-type-ui.php:415
157
- #, php-format
158
- msgid "%s version %s by %s"
159
- msgstr "%s versão %s por %s"
160
-
161
- #: custom-post-type-ui.php:426
162
- msgid "Please Report Bugs"
163
- msgstr "Por favor reporte erros"
164
-
165
- #: custom-post-type-ui.php:429
166
- msgid "Follow on Twitter:"
167
- msgstr "Seguir no Twitter:"
168
-
169
- #: custom-post-type-ui.php:493
170
- msgid "Manage Taxonomies"
171
- msgstr "Gerir taxonomias"
172
-
173
- #: custom-post-type-ui.php:497
174
- msgid "Manage Post Types"
175
- msgstr "Gerir tipos de artigo"
176
-
177
- #: custom-post-type-ui.php:523
178
- msgid "Add New Post Type"
179
- msgstr "Adicionar novo tipo de artigo"
180
-
181
- #: custom-post-type-ui.php:526
182
- msgid "Edit Post Types"
183
- msgstr "Editar tipos de artigo"
184
-
185
- #: custom-post-type-ui.php:530
186
- msgid "Add New Taxonomy"
187
- msgstr "Adicionar nova taxonomia"
188
-
189
- #: custom-post-type-ui.php:533
190
- msgid "Edit Taxonomies"
191
- msgstr "Editar taxonomias"
192
-
193
- #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
194
- #: inc/listings.php:224
195
- msgid "Post Types"
196
- msgstr "Tipos de Artigo"
197
-
198
- #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
199
- #: inc/listings.php:122 inc/listings.php:132
200
- msgid "Taxonomies"
201
- msgstr "Taxonomias"
202
-
203
- #: custom-post-type-ui.php:539
204
- msgid "Get Code"
205
- msgstr "Obter código"
206
-
207
- #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
208
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
209
- #: inc/taxonomies.php:343
210
- msgid "Settings"
211
- msgstr "Definições"
212
-
213
- #: custom-post-type-ui.php:622
214
- msgid "Help"
215
- msgstr "Ajuda"
216
-
217
- #: custom-post-type-ui.php:651
218
- #, php-format
219
- msgid "%s has been successfully added"
220
- msgstr "%s foi adicionado com sucesso"
221
-
222
- #: custom-post-type-ui.php:653
223
- #, php-format
224
- msgid "%s has failed to be added"
225
- msgstr "%s falhou ao ser adicionado"
226
-
227
- #: custom-post-type-ui.php:657
228
- #, php-format
229
- msgid "%s has been successfully updated"
230
- msgstr "%s foi actualizado com sucesso"
231
-
232
- #: custom-post-type-ui.php:659
233
- #, php-format
234
- msgid "%s has failed to be updated"
235
- msgstr "%s falhou ao ser actualizado"
236
-
237
- #: custom-post-type-ui.php:663
238
- #, php-format
239
- msgid "%s has been successfully deleted"
240
- msgstr "%s foi apagado com sucesso"
241
-
242
- #: custom-post-type-ui.php:665
243
- #, php-format
244
- msgid "%s has failed to be deleted"
245
- msgstr "%s falhou ao ser apagado"
246
-
247
- #: custom-post-type-ui.php:669
248
- #, php-format
249
- msgid "%s has been successfully imported"
250
- msgstr "%s foi importado com sucesso"
251
-
252
- #: custom-post-type-ui.php:671
253
- #, php-format
254
- msgid "%s has failed to be imported"
255
- msgstr "%s falhou ao ser importado"
256
-
257
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
258
- #, php-format
259
- msgid "Add new %s"
260
- msgstr "Adicionar novo %s"
261
-
262
- #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
263
- #, php-format
264
- msgid "Edit %s"
265
- msgstr "Editar %s"
266
-
267
- #: custom-post-type-ui.php:756
268
- #, php-format
269
- msgid "New %s"
270
- msgstr "Novo %s"
271
-
272
- #: custom-post-type-ui.php:757
273
- #, php-format
274
- msgid "View %s"
275
- msgstr "Ver %s"
276
-
277
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
278
- #, php-format
279
- msgid "All %s"
280
- msgstr "Todos(as) os(as) %s"
281
-
282
- #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
283
- #, php-format
284
- msgid "Search %s"
285
- msgstr "Pesquisar %s"
286
-
287
- #: custom-post-type-ui.php:760
288
- #, php-format
289
- msgid "No %s found."
290
- msgstr "%s não encontrados(as)."
291
-
292
- #: custom-post-type-ui.php:761
293
- #, php-format
294
- msgid "No %s found in trash."
295
- msgstr "%s não encontrados(as) no lixo."
296
-
297
- #: custom-post-type-ui.php:765
298
- #, php-format
299
- msgid "Popular %s"
300
- msgstr "%s mais populares"
301
-
302
- #: custom-post-type-ui.php:767
303
- #, php-format
304
- msgid "Parent %s"
305
- msgstr "%s superior"
306
-
307
- #: custom-post-type-ui.php:768
308
- #, php-format
309
- msgid "Parent %s:"
310
- msgstr "%s superior:"
311
-
312
- #: custom-post-type-ui.php:770
313
- #, php-format
314
- msgid "Update %s"
315
- msgstr "Actualizar %s"
316
-
317
- #: custom-post-type-ui.php:772
318
- #, php-format
319
- msgid "New %s name"
320
- msgstr "Novo nome de %s"
321
-
322
- #: custom-post-type-ui.php:773
323
- #, php-format
324
- msgid "Separate %s with commas"
325
- msgstr "Separar %s por vírgulas"
326
-
327
- #: custom-post-type-ui.php:774
328
- #, php-format
329
- msgid "Add or remove %s"
330
- msgstr "Adicionar ou remover %s"
331
-
332
- #: custom-post-type-ui.php:775
333
- #, php-format
334
- msgid "Choose from the most used %s"
335
- msgstr "Escolher entre os(as) %s mais utilizados(as)"
336
-
337
- #: inc/import_export.php:42
338
- msgid ""
339
- "If you are wanting to migrate registered post types or taxonomies from this "
340
- "site to another, that will also use Custom Post Type UI, use the import and "
341
- "export functionality. If you are moving away from Custom Post Type UI, use "
342
- "the information in the \"Get Code\" tab."
343
- msgstr ""
344
- "Se pretende migrar tipos de artigos ou taxonomias registados para outro site "
345
- "que também tem o Custom Post Type UI, utilize as funcionalidades de importar "
346
- "e exportar. Se está a abandonar o Custom Post Type UI, utilize a informação "
347
- "do separador \"Obter código\"."
348
-
349
- #: inc/import_export.php:45
350
- msgid "NOTE"
351
- msgstr "NOTA"
352
-
353
- #: inc/import_export.php:46
354
- msgid "This will not export the associated posts, just the settings."
355
- msgstr "Isto não exporta os artigos associados, apenas as definições."
356
-
357
- #: inc/import_export.php:53
358
- msgid "Import Post Types"
359
- msgstr "Importar tipos de artigo"
360
-
361
- #: inc/import_export.php:55 inc/import_export.php:80
362
- msgid "Paste content here."
363
- msgstr "Colar o conteúdo aqui."
364
-
365
- #: inc/import_export.php:56 inc/import_export.php:81
366
- msgid "Note:"
367
- msgstr "Nota:"
368
-
369
- #: inc/import_export.php:56 inc/import_export.php:81
370
- msgid "Importing will overwrite previous registered settings."
371
- msgstr "Ao importar irá sobrepor as definições registadas anteriormente."
372
-
373
- #: inc/import_export.php:57
374
- msgid ""
375
- "To import post types from a different WordPress site, paste the exported "
376
- "content from that site and click the \"Import\" button."
377
- msgstr ""
378
- "Para importar tipos de artigo de outro site WordPress, cole o conteúdo "
379
- "exportado desse site e clique no botão \"Importar\"."
380
-
381
- #: inc/import_export.php:58 inc/import_export.php:83
382
- msgid "Import"
383
- msgstr "Importar"
384
-
385
- #: inc/import_export.php:62
386
- msgid "Export Post Types"
387
- msgstr "Exportar tipos de artigo"
388
-
389
- #: inc/import_export.php:68
390
- msgid "No post types registered yet."
391
- msgstr "Nenhum tipo de artigo registado ainda."
392
-
393
- #: inc/import_export.php:71 inc/import_export.php:96
394
- msgid ""
395
- "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
396
- "(Mac)."
397
- msgstr ""
398
- "Para copiar a informação do sistema, clique abaixo e prima Ctrl + C (PC) ou "
399
- "Cmd + C (Mac)."
400
-
401
- #: inc/import_export.php:72
402
- msgid ""
403
- "Use the content above to import current post types into a different "
404
- "WordPress site. You can also use this to simply back up your post type "
405
- "settings."
406
- msgstr ""
407
- "Utilize o conteúdo acima para importar os actuais tipos de artigo "
408
- "personalizados para outro site WordPress. Também pode utilizar isto "
409
- "simplesmente para fazer um backup das definições dos seus tipos de artigo."
410
-
411
- #: inc/import_export.php:78
412
- msgid "Import Taxonomies"
413
- msgstr "Importar taxonomias"
414
-
415
- #: inc/import_export.php:82
416
- msgid ""
417
- "To import taxonomies from a different WordPress site, paste the exported "
418
- "content from that site and click the \"Import\" button."
419
- msgstr ""
420
- "Para importar taxonomias de outro site WordPress, cole o conteúdo exportado "
421
- "desse site e clique no botão \"Importar\"."
422
-
423
- #: inc/import_export.php:87
424
- msgid "Export Taxonomies"
425
- msgstr "Exportar taxonomias"
426
-
427
- #: inc/import_export.php:93
428
- msgid "No taxonomies registered yet."
429
- msgstr "Nenhuma taxonomia registada ainda."
430
-
431
- #: inc/import_export.php:97
432
- msgid ""
433
- "Use the content above to import current taxonomies into a different "
434
- "WordPress site. You can also use this to simply back up your taxonomy "
435
- "settings."
436
- msgstr ""
437
- "Utilize o conteúdo acima para importar as actuais taxonomias para outro site "
438
- "WordPress. Também pode utilizar isto simplesmente para fazer um backup das "
439
- "definições das suas taxonomias."
440
-
441
- #: inc/import_export.php:105
442
- msgid "Get Post Type and Taxonomy Code"
443
- msgstr "Obter código do tipo de artigo e da taxonomia"
444
-
445
- #: inc/import_export.php:107
446
- msgid "All CPT UI Post Types"
447
- msgstr "Todos os tipos de artigos do CPT UI"
448
-
449
- #: inc/import_export.php:108 inc/import_export.php:112
450
- msgid "Copy/paste the code below into your functions.php file."
451
- msgstr "Copie/cole o código abaixo no seu ficheiro functions.php."
452
-
453
- #: inc/import_export.php:111
454
- msgid "All CPT UI Taxonomies"
455
- msgstr "Todas as taxonomias do CPT UI"
456
-
457
- #: inc/import_export.php:142
458
- msgid "No taxonomies to display at this time"
459
- msgstr "Nenhuma taxonomia para mostrar neste momento"
460
-
461
- #: inc/import_export.php:241
462
- msgid "No post types to display at this time"
463
- msgstr "Nenhum tipo de artigo para mostrar neste momento"
464
-
465
- #: inc/import_export.php:367
466
- msgid "Post types"
467
- msgstr "Tipos de artigo"
468
-
469
- #: inc/listings.php:10
470
- msgid "Post Types and Taxonomies registered by Custom Post Type UI."
471
- msgstr "Tipos de artigo e taxonomias registadas pelo Custom Post Type UI."
472
-
473
- #: inc/listings.php:18 inc/listings.php:134
474
- #, php-format
475
- msgid "Total count: %d"
476
- msgstr "Contagem total: %d"
477
-
478
- #: inc/listings.php:31 inc/listings.php:119
479
- msgid "Post Type"
480
- msgstr "Tipo de artigo"
481
-
482
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
483
- msgid "Supports"
484
- msgstr "Suporte"
485
-
486
- #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
487
- #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
488
- msgid "Labels"
489
- msgstr "Legendas"
490
-
491
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
492
- msgid "Edit"
493
- msgstr "Editar"
494
-
495
- #: inc/listings.php:75
496
- msgid "View frontend archive"
497
- msgstr "Ver arquivo na frente do site"
498
-
499
- #: inc/listings.php:108 inc/listings.php:211
500
- msgid "No custom labels to display"
501
- msgstr "Nenhuma legenda personalizada para mostrar"
502
-
503
- #: inc/listings.php:147 inc/listings.php:222
504
- msgid "Taxonomy"
505
- msgstr "Taxionomia"
506
-
507
- #: inc/post-types.php:30 inc/taxonomies.php:25
508
- msgid "Are you sure you want to delete this?"
509
- msgstr "Tem a certeza que quer apagar isto?"
510
-
511
- #: inc/post-types.php:89
512
- msgid ""
513
- "DO NOT EDIT the post type slug unless necessary. Changing that value "
514
- "registers a new post type entry for your install."
515
- msgstr ""
516
- "NÃO EDITE o URL do tipo de artigo a não ser que estritamente necessário. "
517
- "Alterar este valor regista um novo tipo de artigo na sua instalação."
518
-
519
- #: inc/post-types.php:90
520
- msgid ""
521
- "Use appropriate checkbox above save/delete buttons if you wish to change "
522
- "slugs and update post types for existing posts."
523
- msgstr ""
524
- "Utilize a caixa de selecção apropriada acima dos botões guardar/apagar se "
525
- "quiser alterar o URL e actualizar os tipos de artigo existentes."
526
-
527
- #: inc/post-types.php:91 inc/taxonomies.php:87
528
- msgid "Select: "
529
- msgstr "Selecionar:"
530
-
531
- #: inc/post-types.php:94 inc/taxonomies.php:91
532
- msgid "Select"
533
- msgstr "Seleccionar"
534
-
535
- #: inc/post-types.php:124
536
- msgid "Post Type Slug"
537
- msgstr "URL do tipo de artigo"
538
-
539
- #: inc/post-types.php:125
540
- msgid "(e.g. movie)"
541
- msgstr "(p. ex. filme)"
542
-
543
- #: inc/post-types.php:126
544
- msgid ""
545
- "The post type name. Used to retrieve custom post type content. Should be "
546
- "short and unique"
547
- msgstr ""
548
- "O nome do tipo de artigo. Utilizado para obter o conteúdo do tipo de artigo "
549
- "personalizado. Deverá ser curto e único."
550
-
551
- #: inc/post-types.php:137 inc/taxonomies.php:129
552
- msgid "Plural Label"
553
- msgstr "Legenda no plural"
554
-
555
- #: inc/post-types.php:138
556
- msgid "(e.g. Movies)"
557
- msgstr "(p. ex. Filmes)"
558
-
559
- #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
560
- #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
561
- #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
562
- #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
563
- #: inc/post-types.php:368
564
- msgid "Post type label. Used in the admin menu for displaying post types."
565
- msgstr ""
566
- "Legenda do tipo de artigo. Utilizada no menu de administração para mostrar "
567
- "tipos de artigo."
568
-
569
- #: inc/post-types.php:149 inc/taxonomies.php:138
570
- msgid "Singular Label"
571
- msgstr "Legenda no singular"
572
-
573
- #: inc/post-types.php:150
574
- msgid "(e.g. Movie)"
575
- msgstr "(p. ex. Filme)"
576
-
577
- #: inc/post-types.php:151
578
- msgid ""
579
- "Custom Post Type Singular label. Used in WordPress when a singular label is "
580
- "needed."
581
- msgstr ""
582
- "Legenda no singular do tipo de artigo personalizado. Utilizada no WordPress "
583
- "quando é necessária uma legenda no singular."
584
-
585
- #: inc/post-types.php:167
586
- msgid "Description"
587
- msgstr "Descrição"
588
-
589
- #: inc/post-types.php:168
590
- msgid ""
591
- "Custom Post Type Description. Describe what your custom post type is used "
592
- "for."
593
- msgstr ""
594
- "Descrição do tipo de artigo personalizado. Descreva para que serve o seu "
595
- "tipo de artigo personalizado."
596
-
597
- #: inc/post-types.php:180
598
- msgid "Migrate posts to newly renamed post type?"
599
- msgstr "Migrar artigos para o recém renomeado tipo de artigo?"
600
-
601
- #: inc/post-types.php:181
602
- msgid "Check this to migrate posts if and when renaming your post type."
603
- msgstr "Seleccione isto para migrar artigos ao renomear o seu tipo de artigo."
604
-
605
- #: inc/post-types.php:190
606
- msgid "Save Post Type"
607
- msgstr "Guardar tipo de artigo"
608
-
609
- #: inc/post-types.php:191
610
- msgid "Delete Post Type"
611
- msgstr "Apagar tipo de artigo"
612
-
613
- #: inc/post-types.php:193
614
- msgid "Add Post Type"
615
- msgstr "Adicionar tipo de artigo"
616
-
617
- #: inc/post-types.php:204 inc/taxonomies.php:190
618
- msgid "Starter Notes"
619
- msgstr "Notas para principiantes"
620
-
621
- #: inc/post-types.php:207
622
- #, php-format
623
- msgid ""
624
- "Post Type names should have %smax 20 characters%s, and only contain "
625
- "alphanumeric, lowercase characters, underscores in place of spaces and "
626
- "letters that do not have accents. Reserved names: post, page, attachment, "
627
- "revision, nav_menu_item."
628
- msgstr ""
629
- "Os nomes dos tipos de artigo deverão ter %sno máximo 20 caracteres%s, "
630
- "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
631
- "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
632
-
633
- #: inc/post-types.php:208
634
- #, php-format
635
- msgid ""
636
- "If you are unfamiliar with the advanced post type settings, just fill in the "
637
- "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
638
- "values. Labels, if left blank, will be automatically created based on the "
639
- "post type name. Hover over the question mark for more details."
640
- msgstr ""
641
- "Se não estiver familiarizado com as definições avançadas dos artigos, "
642
- "preencha apenas os campos %sNome do tipo de artigo%s e %sLegenda%s. Para as "
643
- "restantes definições serão atribuídas as opções padrão. Se deixadas em "
644
- "branco, as legendas serão automaticamente criadas com base no nome do tipo "
645
- "de artigo. Ver o ponto de interrogação para mais detalhes."
646
-
647
- #: inc/post-types.php:209
648
- #, php-format
649
- msgid ""
650
- "Deleting custom post types will %sNOT%s delete any content into the database "
651
- "or added to those post types. You can easily recreate your post types and "
652
- "the content will still exist."
653
- msgstr ""
654
- "Apagar tipos de artigo personalizados %sNÃO%s apagará quaisquer conteúdos da "
655
- "base de dados ou adicionados a esses tipos de artigo. Pode facilmente "
656
- "recriar os seus tipos de artigo e o conteúdo continuará a existir."
657
-
658
- #: inc/post-types.php:223 inc/taxonomies.php:211
659
- msgid "Menu Name"
660
- msgstr "Nome do menu"
661
-
662
- #: inc/post-types.php:224
663
- msgid "Custom menu name for your custom post type."
664
- msgstr "Nome de menu personalizado para o seu tipo de artigo personalizado."
665
-
666
- #: inc/post-types.php:228
667
- msgid "(e.g. My Movies)"
668
- msgstr "(p. ex. Os meus filmes)"
669
-
670
- #: inc/post-types.php:235 inc/taxonomies.php:220
671
- msgid "All Items"
672
- msgstr "Todos os itens"
673
-
674
- #: inc/post-types.php:240
675
- msgid "(e.g. All Movies)"
676
- msgstr "(p. ex. Todos os filmes)"
677
-
678
- #: inc/post-types.php:247
679
- msgid "Add New"
680
- msgstr "Adicionar novo"
681
-
682
- #: inc/post-types.php:252
683
- msgid "(e.g. Add New)"
684
- msgstr "(p. ex. Adicionar novo)"
685
-
686
- #: inc/post-types.php:259 inc/taxonomies.php:256
687
- msgid "Add New Item"
688
- msgstr "Adicionar novo item"
689
-
690
- #: inc/post-types.php:264
691
- msgid "(e.g. Add New Movie)"
692
- msgstr "(p. ex. Adicionar novo filme)"
693
-
694
- #: inc/post-types.php:276
695
- msgid "(e.g. Edit)"
696
- msgstr "(p. ex. Editar)"
697
-
698
- #: inc/post-types.php:283 inc/taxonomies.php:229
699
- msgid "Edit Item"
700
- msgstr "Editar item"
701
-
702
- #: inc/post-types.php:288
703
- msgid "(e.g. Edit Movie)"
704
- msgstr "(p. ex. Editar filme)"
705
-
706
- #: inc/post-types.php:295
707
- msgid "New Item"
708
- msgstr "Novo item"
709
-
710
- #: inc/post-types.php:300
711
- msgid "(e.g. New Movie)"
712
- msgstr "(p. ex. Novo filme)"
713
-
714
- #: inc/post-types.php:307
715
- msgid "View"
716
- msgstr "Ver"
717
-
718
- #: inc/post-types.php:312
719
- msgid "(e.g. View)"
720
- msgstr "(p. ex. Ver)"
721
-
722
- #: inc/post-types.php:319 inc/taxonomies.php:238
723
- msgid "View Item"
724
- msgstr "Ver item"
725
-
726
- #: inc/post-types.php:324
727
- msgid "(e.g. View Movie)"
728
- msgstr "(p. ex. Ver filme)"
729
-
730
- #: inc/post-types.php:331
731
- msgid "Search Item"
732
- msgstr "Pesquisar item"
733
-
734
- #: inc/post-types.php:336
735
- msgid "(e.g. Search Movie)"
736
- msgstr "(p. ex. Pesquisar filme)"
737
-
738
- #: inc/post-types.php:343
739
- msgid "Not Found"
740
- msgstr "Não encontrado"
741
-
742
- #: inc/post-types.php:348
743
- msgid "(e.g. No Movies found)"
744
- msgstr "(p. ex. Nenhum filme encontrado)"
745
-
746
- #: inc/post-types.php:355
747
- msgid "Not Found in Trash"
748
- msgstr "Não encontrado no lixo"
749
-
750
- #: inc/post-types.php:360
751
- msgid "(e.g. No Movies found in Trash)"
752
- msgstr "(p. ex. Nenhum fime encontrado no lixo)"
753
-
754
- #: inc/post-types.php:367
755
- msgid "Parent"
756
- msgstr "Superior"
757
-
758
- #: inc/post-types.php:372
759
- msgid "(e.g. Parent Movie)"
760
- msgstr "(p. ex. Filme superior)"
761
-
762
- #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
763
- #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
764
- #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
765
- #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
766
- #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
767
- #: inc/taxonomies.php:469
768
- msgid "False"
769
- msgstr "Falso"
770
-
771
- #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
772
- #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
773
- #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
774
- #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
775
- #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
776
- #: inc/taxonomies.php:470
777
- msgid "True"
778
- msgstr "Verdadeiro"
779
-
780
- #: inc/post-types.php:395
781
- msgid "Public"
782
- msgstr "Público"
783
-
784
- #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
785
- #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
786
- #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
787
- msgid "(default: True)"
788
- msgstr "(padrão: Verdadeiro)"
789
-
790
- #: inc/post-types.php:397
791
- msgid ""
792
- "Whether posts of this type should be shown in the admin UI and is publicly "
793
- "queryable."
794
- msgstr ""
795
- "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
796
- "administração e pesquisáveis publicamente."
797
-
798
- #: inc/post-types.php:415 inc/taxonomies.php:375
799
- msgid "Show UI"
800
- msgstr "Mostrar interface do utilizador"
801
-
802
- #: inc/post-types.php:417
803
- msgid "Whether to generate a default UI for managing this post type."
804
- msgstr ""
805
- "Se cria um interface de utilizador padrão para gerir este tipo de artigo."
806
-
807
- #: inc/post-types.php:425
808
- msgid "Has Archive"
809
- msgstr "Tem arquivo"
810
-
811
- #: inc/post-types.php:426
812
- msgid "Whether the post type will have a post type archive URL."
813
- msgstr "Se o tipo de artigo terá um URL para o arquivo deste tipo de artigo."
814
-
815
- #: inc/post-types.php:427
816
- msgid "If left blank, the archive slug will default to the post type slug."
817
- msgstr ""
818
- "Se deixar em branco, o URL do arquivo será o mesmo que o URL do tipo de "
819
- "artigo."
820
-
821
- #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
822
- #: inc/taxonomies.php:359 inc/taxonomies.php:479
823
- msgid "(default: False)"
824
- msgstr "(padrão: Falso)"
825
-
826
- #: inc/post-types.php:453
827
- msgid "Slug to be used for archive URL."
828
- msgstr "URL utilizado para a página de arquivo."
829
-
830
- #: inc/post-types.php:473
831
- msgid "Exclude From Search"
832
- msgstr "Excluir da pesquisa"
833
-
834
- #: inc/post-types.php:475
835
- msgid ""
836
- "Whether to exclude posts with this post type from front end search results."
837
- msgstr ""
838
- "Se exclui artigos deste tipo dos resultados de pesquisa na frente do site."
839
-
840
- #: inc/post-types.php:486
841
- msgid "Capability Type"
842
- msgstr "Tipo de capacidade"
843
-
844
- #: inc/post-types.php:487
845
- msgid "The post type to use for checking read, edit, and delete capabilities"
846
- msgstr ""
847
- "O tipo de artigo a utilizar para verificar as capacidades de leitura, edição "
848
- "e exclusão"
849
-
850
- #: inc/post-types.php:504 inc/taxonomies.php:358
851
- msgid "Hierarchical"
852
- msgstr "Hierárquico"
853
-
854
- #: inc/post-types.php:506
855
- msgid "Whether the post type can have parent-child relationships"
856
- msgstr "Se o tipo de artigo pode ter relações de superior/dependente"
857
-
858
- #: inc/post-types.php:524 inc/taxonomies.php:418
859
- msgid "Rewrite"
860
- msgstr "Reescrever URL"
861
-
862
- #: inc/post-types.php:526
863
- msgid "Whether or not WordPress should use rewrites for this post type"
864
- msgstr ""
865
- "Se o WordPress deverão usar ou não a reescrita para este tipo de artigo"
866
-
867
- #: inc/post-types.php:537 inc/taxonomies.php:429
868
- msgid "Custom Rewrite Slug"
869
- msgstr "Reescrever URL personalizado"
870
-
871
- #: inc/post-types.php:538
872
- msgid "(default: post type slug)"
873
- msgstr "(padrão: URL do tipo de artigo)"
874
-
875
- #: inc/post-types.php:539
876
- msgid "Custom post type slug to use instead of the default."
877
- msgstr "URL do tipo de artigo personalizado a utilizar em vez do valor padrão."
878
-
879
- #: inc/post-types.php:556
880
- msgid "With Front"
881
- msgstr "Com superior"
882
-
883
- #: inc/post-types.php:558 inc/taxonomies.php:446
884
- msgid "Should the permastruct be prepended with the front base."
885
- msgstr "Preceder as ligações permanentes com URL superior."
886
-
887
- #: inc/post-types.php:576 inc/taxonomies.php:392
888
- msgid "Query Var"
889
- msgstr "Query Var"
890
-
891
- #: inc/post-types.php:578
892
- msgid "Sets the query_var key for this post type."
893
- msgstr "Define a chave query_var para este tipo de artigo."
894
-
895
- #: inc/post-types.php:586
896
- msgid "Menu Position"
897
- msgstr "Posição do menu"
898
-
899
- #: inc/post-types.php:587
900
- msgid ""
901
- "The position in the menu order the post type should appear. show_in_menu "
902
- "must be true."
903
- msgstr ""
904
- "A posição em que o tipo de artigo deverá aparecer no menu. \"Mostrar no menu"
905
- "\" tem que ser \"Verdadeiro\"."
906
-
907
- #: inc/post-types.php:588
908
- #, fuzzy
909
- msgid ""
910
- "See <a href=\"http://codex.wordpress.org/Function_Reference/"
911
- "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
912
- "the \"menu_position\" section. Range of 5-100"
913
- msgstr ""
914
- "Veja as <a href=\"http://codex.wordpress.org/Function_Reference/"
915
- "register_post_type#Parameters\">opções disponíveis</a> na secção "
916
- "\"menu_position\". Ordem de 5-100"
917
-
918
- #: inc/post-types.php:603
919
- msgid "Show in Menu"
920
- msgstr "Mostrar no menu"
921
-
922
- #: inc/post-types.php:604
923
- msgid ""
924
- "Whether to show the post type in the admin menu and where to show that menu."
925
- msgstr ""
926
- "Se mostra o tipo de artigo no menu de administração e onde mostra esse menu."
927
-
928
- #: inc/post-types.php:605
929
- msgid ""
930
- "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
931
- "php\" is indicated for second input, post type will be sub menu of that."
932
- msgstr ""
933
- "\"Mostrar interface do utilizador\" tem que ser \"Verdadeiro\". Se uma "
934
- "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
935
- "o tipo de artigo será seu submenu."
936
-
937
- #: inc/post-types.php:631
938
- msgid "Top-level page file name to make post type a sub-menu of."
939
- msgstr ""
940
- "Nome da página de nível de topo para tornar o tipo de artigo seu submenu."
941
-
942
- #: inc/post-types.php:643
943
- msgid "Menu Icon"
944
- msgstr "Ícone do menu"
945
-
946
- #: inc/post-types.php:644
947
- msgid "(Full URL for icon or Dashicon class)"
948
- msgstr "(URL completo ou classe para o para o ícone do painel)"
949
-
950
- #: inc/post-types.php:645
951
- msgid "URL to image to be used as menu icon or Dashicon class to use instead."
952
- msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
953
-
954
- #: inc/post-types.php:658
955
- msgid "Title"
956
- msgstr "Título"
957
-
958
- #: inc/post-types.php:659
959
- msgid "Adds the title meta box when creating content for this custom post type"
960
- msgstr ""
961
- "Adiciona a caixa de título ao criar conteúdo para este tipo de artigo "
962
- "personalizado"
963
-
964
- #: inc/post-types.php:673
965
- msgid "Editor"
966
- msgstr "Editor"
967
-
968
- #: inc/post-types.php:674
969
- msgid ""
970
- "Adds the content editor meta box when creating content for this custom post "
971
- "type"
972
- msgstr ""
973
- "Adiciona a caixa de editor de conteúdo ao criar conteúdo para este tipo de "
974
- "artigo personalizado"
975
-
976
- #: inc/post-types.php:688
977
- msgid "Excerpt"
978
- msgstr "Excerto"
979
-
980
- #: inc/post-types.php:689
981
- msgid ""
982
- "Adds the excerpt meta box when creating content for this custom post type"
983
- msgstr ""
984
- "Adiciona a caixa de excerto ao criar conteúdo para este tipo de artigo "
985
- "personalizado"
986
-
987
- #: inc/post-types.php:703
988
- msgid "Trackbacks"
989
- msgstr "Trackbacks"
990
-
991
- #: inc/post-types.php:704
992
- msgid ""
993
- "Adds the trackbacks meta box when creating content for this custom post type"
994
- msgstr ""
995
- "Adiciona a caixa de trackbacks ao criar conteúdo para este tipo de artigo "
996
- "personalizado"
997
-
998
- #: inc/post-types.php:718
999
- msgid "Custom Fields"
1000
- msgstr "Campos personalizados"
1001
-
1002
- #: inc/post-types.php:719
1003
- msgid ""
1004
- "Adds the custom fields meta box when creating content for this custom post "
1005
- "type"
1006
- msgstr ""
1007
- "Adiciona a caixa de campos personalizados ao criar conteúdo para este tipo "
1008
- "de artigo personalizado"
1009
-
1010
- #: inc/post-types.php:733
1011
- msgid "Comments"
1012
- msgstr "Comentários"
1013
-
1014
- #: inc/post-types.php:734
1015
- msgid ""
1016
- "Adds the comments meta box when creating content for this custom post type"
1017
- msgstr ""
1018
- "Adiciona a caixa de comentários ao criar conteúdo para este tipo de artigo "
1019
- "personalizado"
1020
-
1021
- #: inc/post-types.php:748
1022
- msgid "Revisions"
1023
- msgstr "Revisões"
1024
-
1025
- #: inc/post-types.php:749
1026
- msgid ""
1027
- "Adds the revisions meta box when creating content for this custom post type"
1028
- msgstr ""
1029
- "Adiciona a caixa de revisões ao criar conteúdo para este tipo de artigo "
1030
- "personalizado"
1031
-
1032
- #: inc/post-types.php:763
1033
- msgid "Featured Image"
1034
- msgstr "Imagem de destaque"
1035
-
1036
- #: inc/post-types.php:764
1037
- msgid ""
1038
- "Adds the featured image meta box when creating content for this custom post "
1039
- "type"
1040
- msgstr ""
1041
- "Adiciona a caixa de imagem de destaque ao criar conteúdo para este tipo de "
1042
- "artigo personalizado"
1043
-
1044
- #: inc/post-types.php:778
1045
- msgid "Author"
1046
- msgstr "Autor"
1047
-
1048
- #: inc/post-types.php:779
1049
- msgid ""
1050
- "Adds the author meta box when creating content for this custom post type"
1051
- msgstr ""
1052
- "Adiciona a caixa de autor ao criar conteúdo para este tipo de artigo "
1053
- "personalizado"
1054
-
1055
- #: inc/post-types.php:793
1056
- msgid "Page Attributes"
1057
- msgstr "Atributos da página"
1058
-
1059
- #: inc/post-types.php:794
1060
- msgid ""
1061
- "Adds the page attribute meta box when creating content for this custom post "
1062
- "type"
1063
- msgstr ""
1064
- "Adiciona a caixa de atributos da página ao criar conteúdo para este tipo de "
1065
- "artigo personalizado"
1066
-
1067
- #: inc/post-types.php:808
1068
- msgid "Post Formats"
1069
- msgstr "Formatos de artigo"
1070
-
1071
- #: inc/post-types.php:809
1072
- msgid "Adds post format support"
1073
- msgstr "Adiciona suporte para formato de artigo"
1074
-
1075
- #: inc/post-types.php:814
1076
- msgid "Use the option below to explicitly set \"supports\" to false."
1077
- msgstr ""
1078
- "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1079
-
1080
- #: inc/post-types.php:822
1081
- msgid "None"
1082
- msgstr "Nenhum"
1083
-
1084
- #: inc/post-types.php:823
1085
- msgid "Remove all support features"
1086
- msgstr "Remove suporte para todos os recursos"
1087
-
1088
- #: inc/post-types.php:829
1089
- msgid "Custom \"Supports\""
1090
- msgstr "\"Suporte\" personalizado"
1091
-
1092
- #: inc/post-types.php:830
1093
- msgid ""
1094
- "Use this input to register custom \"supports\" values, separated by commas."
1095
- msgstr ""
1096
- "Utilize este campo para registar \"suporte\" de valores personalizados, "
1097
- "separados por vírgulas."
1098
-
1099
- #: inc/post-types.php:836
1100
- msgid "Provide custom support slugs here."
1101
- msgstr "Insira aqui os valores personalizados a suportar."
1102
-
1103
- #: inc/post-types.php:842
1104
- msgid "Built-in Taxonomies"
1105
- msgstr "Taxonomias incorporadas"
1106
-
1107
- #: inc/post-types.php:871 inc/taxonomies.php:172
1108
- #, php-format
1109
- msgid "Adds %s support"
1110
- msgstr "Adiciona suporte para %s"
1111
-
1112
- #: inc/post-types.php:977
1113
- msgid "Please provide a post type to delete"
1114
- msgstr "Por favor introduza um tipo de artigo a apagar"
1115
-
1116
- #: inc/post-types.php:1037
1117
- msgid "Please provide a post type name"
1118
- msgstr "Por favor introduza um nome de tipo de artigo"
1119
-
1120
- #: inc/post-types.php:1061
1121
- msgid "Please do not use quotes in post type names or rewrite slugs"
1122
- msgstr ""
1123
- "Por favor não utilize aspas nos nomes dos tipos de artigo ou nos URL "
1124
- "reescritos"
1125
-
1126
- #: inc/post-types.php:1068
1127
- #, php-format
1128
- msgid "Please choose a different post type name. %s is already registered."
1129
- msgstr ""
1130
- "Por favor escolha um nome de tipo de artigo diferente. %s já está registado."
1131
-
1132
- #: inc/support.php:41
1133
- msgid "Custom Post Type UI Support"
1134
- msgstr "Suporte do Custom Post Type UI"
1135
-
1136
- #: inc/support.php:43
1137
- #, php-format
1138
- msgid ""
1139
- "Please note that this plugin will NOT handle display of registered post "
1140
- "types or taxonomies in your current theme. It will simply register them for "
1141
- "you. If all else fails, visit us on the %s"
1142
- msgstr ""
1143
- "Por favor note que este plugin NÃO controlará a exibição de tipos de artigo "
1144
- "ou taxonomias registadas no seu tema actual. Simplesmente fará por si o "
1145
- "respectivo registo. Se tudo o resto falhar, visite-nos no %s"
1146
-
1147
- #: inc/support.php:44
1148
- msgid "Support Forums"
1149
- msgstr "Fórum de suporte"
1150
-
1151
- #: inc/support.php:50
1152
- msgid "General"
1153
- msgstr "Geral"
1154
-
1155
- #: inc/support.php:53
1156
- msgid ""
1157
- "I changed my custom post type name and now I can not get to my posts. How do "
1158
- "I get them back?"
1159
- msgstr ""
1160
- "Modifiquei o nome do meu tipo de artigo personalizado e agora não consigo "
1161
- "encontrar os meus artigos. Como faço para os recuperar?"
1162
-
1163
- #: inc/support.php:54
1164
- msgid ""
1165
- "You can either change the custom post type name back to the original name or "
1166
- "try the Post Type Switcher plugin"
1167
- msgstr ""
1168
- "Poderá voltar a alterar para o original o nome do tipo de artigo "
1169
- "personalizado ou experimentar o plugin Post Type Switcher"
1170
-
1171
- #: inc/support.php:59
1172
- msgid ""
1173
- "I changed my custom post type or taxonomy slug and now I have duplicates "
1174
- "shown. How do I remove the duplicate?"
1175
- msgstr ""
1176
- "Modifiquei o meu tipo de artigo personalizado ou o URL da taxonomia e agora "
1177
- "são mostrados em duplicado. Como removo os duplicados?"
1178
-
1179
- #: inc/support.php:60
1180
- msgid ""
1181
- "Renaming the slug for a post type or taxonomy creates a new entry in our "
1182
- "saved option which gets registered as its own post type or taxonomy. Since "
1183
- "the settings will be mirrored from the previous slug, you will just need to "
1184
- "delete the previous version's entry."
1185
- msgstr ""
1186
- "Renomear o URL de um tipo de artigo ou taxonomia cria uma nova entrada nas "
1187
- "opções guardadas que será registada como um tipo de artigo ou taxonomia "
1188
- "independente. Como as opções serão copiadas do URL anterior, apenas tem que "
1189
- "apagar a entrada com a versão anterior."
1190
-
1191
- #: inc/support.php:63
1192
- msgid ""
1193
- "I have added post thumbnail and/or post format support to my post type, but "
1194
- "those do not appear when adding a post type post."
1195
- msgstr ""
1196
- "Eu adicionei suporte para imagem de destaque e/ou formato de artigo ao meu "
1197
- "tipo de artigo, mas estes não aparecem quando adiciono um novo artigo."
1198
-
1199
- #: inc/support.php:64
1200
- msgid ""
1201
- "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1202
- msgstr ""
1203
- "Verifique se o seu tema tem o suporte para \"Imagens de destaque\" activado."
1204
-
1205
- #: inc/support.php:69
1206
- msgid "Front-end Display"
1207
- msgstr "Frente do site"
1208
-
1209
- #: inc/support.php:72
1210
- msgid "What template files should I edit to alter my post type display?"
1211
- msgstr ""
1212
- "Que ficheiros de modelo deverei editar para alterar a exibição do meu tipo "
1213
- "de artigo?"
1214
-
1215
- #: inc/support.php:73
1216
- #, php-format
1217
- msgid ""
1218
- "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1219
- "details about available templates."
1220
- msgstr ""
1221
- "Por favor visite a página %sHierarquia de modelos WordPress%s do WordPress "
1222
- "Codex para detalhes sobre os modelos disponíveis."
1223
-
1224
- #: inc/support.php:80
1225
- msgid "How do I display my custom post type on my site?"
1226
- msgstr "Como posso mostrar o meu tipo de artigo personalizado no meu site?"
1227
-
1228
- #: inc/support.php:81
1229
- #, php-format
1230
- msgid ""
1231
- "You will need to utilize the %sWP_Query%s class to handle display in custom "
1232
- "locations. If you have set the post type to have archives, the archive url "
1233
- "should be something like \"http://www.mysite.com/post-type-slug\""
1234
- msgstr ""
1235
- "Terá que utilizar a classe %sWP_Query%s para controlar a exibição em locais "
1236
- "personalizados. Se definiu que o tipo de artigo terá arquivos, o URL do "
1237
- "arquivo deverá ser algo como \"http://www.meusite.com/slug-tipo-de-artigo\""
1238
-
1239
- #: inc/support.php:87
1240
- msgid ""
1241
- "I have added categories and tags to my custom post type, but they do not "
1242
- "appear in the archives."
1243
- msgstr ""
1244
- "Adicionei categorias e etiquetas ao meu tipo de artigo personalizado, mas "
1245
- "não aparecem nos arquivos."
1246
-
1247
- #: inc/support.php:88
1248
- #, php-format
1249
- msgid ""
1250
- "You will need to add your newly created post type to the types that the "
1251
- "category and tag archives query for. You can see a tutorial on how to do "
1252
- "that at %s"
1253
- msgstr ""
1254
- "Terá que adicionar o seu tipo de artigo recém criado aos tipos incluídos na "
1255
- "pesquisa dos arquivos de categorias e etiquetas. Pode ver um tutorial sobre "
1256
- "como fazer isto em %s"
1257
-
1258
- #: inc/support.php:97
1259
- msgid "Advanced"
1260
- msgstr "Avançado"
1261
-
1262
- #: inc/support.php:100
1263
- msgid "How do I add custom metaboxes to my post type?"
1264
- msgstr ""
1265
- "Como posso adicionar caixas personalizadas de metadados ao meu tipo de "
1266
- "artigo?"
1267
-
1268
- #: inc/support.php:102
1269
- #, php-format
1270
- msgid ""
1271
- "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1272
- "Fields for WordPress\". Both are maintained by WebDevStudios."
1273
- msgstr ""
1274
- "Recomendamos que conheça %s, a última iteração de \"Custom Metaboxes and "
1275
- "Fields for WordPress\". Ambos são mantidos por WebDevStudios."
1276
-
1277
- #: inc/support.php:108
1278
- msgid ""
1279
- "How do I add a newly registered taxonomy to a post type that already exists?"
1280
- msgstr ""
1281
- "Como posso adicionar uma nova taxonomia a um tipo de artigo já existente?"
1282
-
1283
- #: inc/support.php:110
1284
- #, php-format
1285
- msgid "Check out the %s function for documentation and usage examples."
1286
- msgstr "Veja a documentação e exemplos da função %s."
1287
-
1288
- #: inc/support.php:116
1289
- msgid "Post relationships?"
1290
- msgstr "Relações de artigos?"
1291
-
1292
- #: inc/support.php:117
1293
- #, php-format
1294
- msgid ""
1295
- "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1296
- "plugin that should be a good start."
1297
- msgstr ""
1298
- "%s tem um excelente %sartigo%s para introduzir utilizadores ao plugin "
1299
- "%sPosts 2 Posts%s que deve ser um bom começo."
1300
-
1301
- #: inc/support.php:126
1302
- msgid "Is there any function reference list?"
1303
- msgstr "Existe alguma lista de referência das funções?"
1304
-
1305
- #: inc/support.php:127
1306
- #, php-format
1307
- msgid ""
1308
- "%s has compiled a nice list of functions used by our plugin. Note not all "
1309
- "will be useful as they are attached to hooks."
1310
- msgstr ""
1311
- "O %s compilou uma boa lista de funções utilizadas pelo nosso plugin. Note "
1312
- "que nem todas serão úteis, uma vez que estão anexadas a hooks."
1313
-
1314
- #: inc/support.php:131
1315
- msgid ""
1316
- "How do I filter the \"enter title here\" text in the post editor screen?"
1317
- msgstr ""
1318
- "Como posso filtrar o texto \"Introduza o título aqui\" no ecrã de edição?"
1319
-
1320
- #: inc/support.php:132
1321
- msgid ""
1322
- "Change text inside the post/page editor title field. Should be able to adapt "
1323
- "as necessary."
1324
- msgstr ""
1325
- "Modifique o texto dentro do campo do título no editor de artigo/página. "
1326
- "Deverá adaptar-se conforme necessário."
1327
-
1328
- #: inc/taxonomies.php:85
1329
- msgid ""
1330
- "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1331
- "registers a new taxonomy entry for your install."
1332
- msgstr ""
1333
- "NÃO EDITE o URL da taxonomia a não ser que estritamente necessário. Alterar "
1334
- "este valor regista uma nova taxonomia na sua instalação."
1335
-
1336
- #: inc/taxonomies.php:118
1337
- msgid "Taxonomy Slug"
1338
- msgstr "URL da taxonomia"
1339
-
1340
- #: inc/taxonomies.php:119
1341
- #, fuzzy
1342
- msgid "(e.g. actor)"
1343
- msgstr "(p. ex. Actor)"
1344
-
1345
- #: inc/taxonomies.php:120
1346
- msgid ""
1347
- "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1348
- "and unique"
1349
- msgstr ""
1350
- "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1351
- "personalizada. Deverá ser curto e único."
1352
-
1353
- #: inc/taxonomies.php:128 inc/taxonomies.php:210
1354
- msgid "(e.g. Actors)"
1355
- msgstr "(p. ex. Actores)"
1356
-
1357
- #: inc/taxonomies.php:130
1358
- msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1359
- msgstr ""
1360
- "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1361
- "taxonomia personalizada."
1362
-
1363
- #: inc/taxonomies.php:137
1364
- msgid "(e.g. Actor)"
1365
- msgstr "(p. ex. Actor)"
1366
-
1367
- #: inc/taxonomies.php:139
1368
- msgid ""
1369
- "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1370
- msgstr ""
1371
- "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1372
- "quando é necessária uma legenda no singular."
1373
-
1374
- #: inc/taxonomies.php:142
1375
- msgid "Attach to Post Type"
1376
- msgstr "Anexar ao tipo de artigo"
1377
-
1378
- #: inc/taxonomies.php:181
1379
- msgid "Save Taxonomy"
1380
- msgstr "Guardar taxonomia"
1381
-
1382
- #: inc/taxonomies.php:182
1383
- msgid "Delete Taxonomy"
1384
- msgstr "Apagar taxonomia"
1385
-
1386
- #: inc/taxonomies.php:184
1387
- msgid "Add Taxonomy"
1388
- msgstr "Adicionar taxonomia"
1389
-
1390
- #: inc/taxonomies.php:193
1391
- #, php-format
1392
- msgid ""
1393
- "Taxonomy names should have %smax 32 characters%s, and only contain "
1394
- "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1395
- "letters that do not have accents."
1396
- msgstr ""
1397
- "Nomes de taxonomias podem ter no %smáximo 32 caracteres%s, apenas pode "
1398
- "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1399
- "letras sem acentos."
1400
-
1401
- #: inc/taxonomies.php:194
1402
- #, php-format
1403
- msgid ""
1404
- "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1405
- "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1406
- "settings will use default values. Labels, if left blank, will be "
1407
- "automatically created based on the taxonomy name. Hover over the question "
1408
- "marks for more details."
1409
- msgstr ""
1410
- "Se não estiver familiarizado com as definições avançadas das taxonomias, "
1411
- "preencha apenas os campos %sNome da taxonomia%s e %sAnexar ao tipo de artigo"
1412
- "%s. Para as restantes definições serão atribuídas as opções padrão. Se "
1413
- "deixadas em branco, as legendas serão automaticamente criadas com base no "
1414
- "nome da taxonomia. Ver o ponto de interrogação para mais detalhes."
1415
-
1416
- #: inc/taxonomies.php:195
1417
- #, php-format
1418
- msgid ""
1419
- "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1420
- "taxonomies. You can recreate your taxonomies and the terms will return. "
1421
- "Changing the name, after adding terms to the taxonomy, will not update the "
1422
- "terms in the database."
1423
- msgstr ""
1424
- "Apagar taxonomias personalizadas %sNÃO%s apagará quaisquer termos "
1425
- "adicionados a essas taxonomias. Pode recriar as suas taxonomias e os termos "
1426
- "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1427
- "actualizará os termos na base de dados."
1428
-
1429
- #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1430
- #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1431
- #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1432
- #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1433
- #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1434
- msgid ""
1435
- "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1436
- msgstr ""
1437
- "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1438
- "mostrar taxonomias."
1439
-
1440
- #: inc/taxonomies.php:219
1441
- msgid "(e.g. All Actors)"
1442
- msgstr "(p. ex. Todos os actores)"
1443
-
1444
- #: inc/taxonomies.php:228
1445
- msgid "(e.g. Edit Actor)"
1446
- msgstr "(p. ex. Editar actor)"
1447
-
1448
- #: inc/taxonomies.php:237
1449
- msgid "(e.g. View Actor)"
1450
- msgstr "(p. ex. Ver actor)"
1451
-
1452
- #: inc/taxonomies.php:246
1453
- msgid "(e.g. Update Actor Name)"
1454
- msgstr "(p. ex. Actualizar nome de actor)"
1455
-
1456
- #: inc/taxonomies.php:247
1457
- msgid "Update Item Name"
1458
- msgstr "Actualizar nome do item"
1459
-
1460
- #: inc/taxonomies.php:255
1461
- msgid "(e.g. Add New Actor)"
1462
- msgstr "(p. ex. Adicionar novo actor)"
1463
-
1464
- #: inc/taxonomies.php:264
1465
- msgid "(e.g. New Actor Name)"
1466
- msgstr "(p. ex. Nome do novo actor)"
1467
-
1468
- #: inc/taxonomies.php:265
1469
- msgid "New Item Name"
1470
- msgstr "Nome do novo item"
1471
-
1472
- #: inc/taxonomies.php:273
1473
- msgid "(e.g. Parent Actor)"
1474
- msgstr "(p. ex. Actor superior)"
1475
-
1476
- #: inc/taxonomies.php:274
1477
- msgid "Parent Item"
1478
- msgstr "Item superior"
1479
-
1480
- #: inc/taxonomies.php:282
1481
- msgid "(e.g. Parent Actor:)"
1482
- msgstr "(p. ex. Actor superior:)"
1483
-
1484
- #: inc/taxonomies.php:283
1485
- msgid "Parent Item Colon"
1486
- msgstr "Item superior com pontuação"
1487
-
1488
- #: inc/taxonomies.php:291
1489
- msgid "(e.g. Search Actors)"
1490
- msgstr "(p. ex. Pesquisar actores)"
1491
-
1492
- #: inc/taxonomies.php:292
1493
- msgid "Search Items"
1494
- msgstr "Pesquisar itens"
1495
-
1496
- #: inc/taxonomies.php:300
1497
- msgid "(e.g. Popular Actors)"
1498
- msgstr "(p. ex. Actores populares)"
1499
-
1500
- #: inc/taxonomies.php:301
1501
- msgid "Popular Items"
1502
- msgstr "Itens populares"
1503
-
1504
- #: inc/taxonomies.php:309
1505
- msgid "(e.g. Separate actors with commas)"
1506
- msgstr "(p. ex. Actores separados por vírgulas)"
1507
-
1508
- #: inc/taxonomies.php:310
1509
- msgid "Separate Items with Commas"
1510
- msgstr "Itens separados por vírgulas"
1511
-
1512
- #: inc/taxonomies.php:318
1513
- msgid "(e.g. Add or remove actors)"
1514
- msgstr "(p. ex. Adicionar ou remover actores)"
1515
-
1516
- #: inc/taxonomies.php:319
1517
- msgid "Add or Remove Items"
1518
- msgstr "Adicionar ou remover itens"
1519
-
1520
- #: inc/taxonomies.php:327
1521
- msgid "(e.g. Choose from the most used actors)"
1522
- msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1523
-
1524
- #: inc/taxonomies.php:328
1525
- msgid "Choose From Most Used"
1526
- msgstr "Escolher entre os mais utilizados"
1527
-
1528
- #: inc/taxonomies.php:336
1529
- msgid "(e.g. No actors found)"
1530
- msgstr "(p. ex. Nenhum actor encontrado)"
1531
-
1532
- #: inc/taxonomies.php:337
1533
- msgid "Not found"
1534
- msgstr "Não encontrado"
1535
-
1536
- #: inc/taxonomies.php:360
1537
- msgid "Whether the taxonomy can have parent-child relationships"
1538
- msgstr "Se a taxonomia pode ter relações superior/dependente"
1539
-
1540
- #: inc/taxonomies.php:377
1541
- msgid "Whether to generate a default UI for managing this custom taxonomy."
1542
- msgstr ""
1543
- "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1544
- "personalizada."
1545
-
1546
- #: inc/taxonomies.php:394
1547
- msgid "Sets the query_var key for this taxonomy."
1548
- msgstr "Define a chave query_var para esta taxonomia."
1549
-
1550
- #: inc/taxonomies.php:402
1551
- msgid "(default: none). Query Var needs to be true to use."
1552
- msgstr ""
1553
- "(padrão: nenhum). Na opção Query var tem que estar verdadeiro para ser "
1554
- "utilizada."
1555
-
1556
- #: inc/taxonomies.php:403
1557
- msgid "Custom Query Var String"
1558
- msgstr "Valor personalizado da Query Var"
1559
-
1560
- #: inc/taxonomies.php:404
1561
- msgid "Sets a custom query_var slug for this taxonomy."
1562
- msgstr "Define um URL personalizado para a query_var desta taxonomia."
1563
-
1564
- #: inc/taxonomies.php:420
1565
- msgid "Whether or not WordPress should use rewrites for this taxonomy."
1566
- msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1567
-
1568
- #: inc/taxonomies.php:428
1569
- msgid "(default: taxonomy name)"
1570
- msgstr "(padrão: nome da taxonomia)"
1571
-
1572
- #: inc/taxonomies.php:430
1573
- msgid "Custom taxonomy rewrite slug."
1574
- msgstr "Reescrever URL da taxonomia personalizada."
1575
-
1576
- #: inc/taxonomies.php:444
1577
- msgid "Rewrite With Front"
1578
- msgstr "Reescrever URL com base"
1579
-
1580
- #: inc/taxonomies.php:445
1581
- msgid "(default: true)"
1582
- msgstr "(padrão: verdadeiro)"
1583
-
1584
- #: inc/taxonomies.php:461
1585
- msgid "Rewrite Hierarchical"
1586
- msgstr "Reescrever URL hierarquicamente"
1587
-
1588
- #: inc/taxonomies.php:462
1589
- msgid "(default: false)"
1590
- msgstr "(Default: false)"
1591
-
1592
- #: inc/taxonomies.php:463
1593
- msgid "Should the permastruct allow hierarchical urls."
1594
- msgstr "Permitir URL hierárquicos nas ligações permanentes."
1595
-
1596
- #: inc/taxonomies.php:478
1597
- msgid "Show Admin Column"
1598
- msgstr "Mostrar coluna de administração"
1599
-
1600
- #: inc/taxonomies.php:480
1601
- msgid ""
1602
- "Whether to allow automatic creation of taxonomy columns on associated post-"
1603
- "types."
1604
- msgstr ""
1605
- "Se permite a criação automática de colunas de taxonomias em tipos de artigos "
1606
- "associados."
1607
-
1608
- #: inc/taxonomies.php:585
1609
- msgid "Please provide a taxonomy to delete"
1610
- msgstr "Por favor introduza uma taxonomia a apagar"
1611
-
1612
- #: inc/taxonomies.php:636
1613
- msgid "Please provide a taxonomy name"
1614
- msgstr "Por favor introduza um nome de taxonomia"
1615
-
1616
- #: inc/taxonomies.php:652
1617
- msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1618
- msgstr ""
1619
- "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1620
-
1621
- #: inc/taxonomies.php:658
1622
- #, php-format
1623
- msgid "Please choose a different taxonomy name. %s is already used."
1624
- msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1625
-
1626
- #. Plugin URI of the plugin/theme
1627
- msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1628
- msgstr ""
1629
-
1630
- #. Description of the plugin/theme
1631
- msgid ""
1632
- "Admin panel for creating custom post types and custom taxonomies in WordPress"
1633
- msgstr ""
1634
-
1635
- #. Author of the plugin/theme
1636
- msgid "WebDevStudios"
1637
- msgstr ""
1638
-
1639
- #. Author URI of the plugin/theme
1640
- msgid "http://webdevstudios.com/"
1641
- msgstr ""
1642
-
1643
- #~ msgid "Whether posts of this type should be shown in the admin UI"
1644
- #~ msgstr ""
1645
- #~ "Se os artigos deste tipo deverão ser mostrados no painel de administração"
1646
-
1647
- #~ msgid "Custom Post Type UI Registered Types and Taxonomies."
1648
- #~ msgstr "Tipos e taxonomias registados pelo Custom Post Type UI"
1649
-
1650
- #~ msgid "View on front"
1651
- #~ msgstr "Ver na frente do site"
1652
-
1653
- #~ msgid ""
1654
- #~ "Select a post type to edit. DO NOT EDIT the post type slug unless "
1655
- #~ "necessary. Changing that value registers a new post type entry for your "
1656
- #~ "install."
1657
- #~ msgstr ""
1658
- #~ "Seleccione um tipo de artifo para editar. NÃO EDITE o URL do tipo de "
1659
- #~ "artigo a não ser que seja mesmo necessário. Alterar este valor regista um "
1660
- #~ "novo tipo de artigo na sua instalação."
1661
-
1662
- #~ msgid "Click headings to reveal available options."
1663
- #~ msgstr "Clique nos títulos para mostrar opções disponíveis."
1664
-
1665
- #~ msgid "Click to expand"
1666
- #~ msgstr "Clique para expandir"
1667
-
1668
- #~ msgid "Whether posts of this type should be shown in the admin UI."
1669
- #~ msgstr ""
1670
- #~ "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
1671
- #~ "administração."
1672
-
1673
- #~ msgid "Whether the post type will have a post type archive page."
1674
- #~ msgstr ""
1675
- #~ "Se o tipo de artigo terá uma página de arquivo para o tipo de artigo."
1676
-
1677
- #~ msgid "Slug to be used for archive page."
1678
- #~ msgstr "URL utilizado para a página de arquivo."
1679
-
1680
- #~ msgid "Whether the post type will be searchable"
1681
- #~ msgstr "Se o tipo de artigo será pesquisável"
1682
-
1683
- #~ msgid "Triggers the handling of rewrites for this post type"
1684
- #~ msgstr "Acciona o controlo de reescrita do URL para este tipo de artigo"
1685
-
1686
- #~ msgid "(default: post type name)"
1687
- #~ msgstr "(padrão: nome do tipo de artigo)"
1688
-
1689
- #~ msgid "Custom slug to use instead of the default."
1690
- #~ msgstr "Utilizar URL personalizado em vez do padrão."
1691
-
1692
- #~ msgid "URL to image to be used as menu icon."
1693
- #~ msgstr "URL da imagem a ser utilizada como ícone do menu."
1694
-
1695
- #~ msgid "Whether to generate a default UI for managing this custom taxonomy"
1696
- #~ msgstr ""
1697
- #~ "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1698
- #~ "personalizada"
1699
-
1700
- #~ msgid "Triggers the handling of rewrites for this taxonomy"
1701
- #~ msgstr "Acciona o controlo de reescrita do URL para esta taxonomia"
1702
-
1703
- #, fuzzy
1704
- #~ msgid "Custom Taxonomy Rewrite Slug"
1705
- #~ msgstr "Reescrever URL personalizado"
1706
-
1707
- #~ msgid ""
1708
- #~ "To get started with creating some post types, please visit %s and for "
1709
- #~ "taxonomies, visit %s. If you need some help, check the %s page. If "
1710
- #~ "nothing there fits your issue, visit our %s and we will try to get to "
1711
- #~ "your question as soon as possible."
1712
- #~ msgstr ""
1713
- #~ "Para começar a criar alguns tipos de artigo, por favor visite %s e para "
1714
- #~ "as taxonomias visite %s. Se precisar de ajuda, veja a página de %s. Se "
1715
- #~ "nada se ajuste à sua situação, visite o nosso %s e tentaremos responder à "
1716
- #~ "sua questão o mais rápido possível."
1717
-
1718
- #~ msgid "CPT UI Support Forum"
1719
- #~ msgstr "Fórum de suporte de CPT UI"
1720
-
1721
- #~ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
1722
- #~ msgstr "%s versão %s por %s - %s %s %s &middot; %s &middot; %s"
1723
-
1724
- #~ msgid "Edit Post Type"
1725
- #~ msgstr "Editar tipo de artigo"
1726
-
1727
- #~ msgid "Edit Taxonomy"
1728
- #~ msgstr "Editar taxonomia"
1729
-
1730
- #~ msgid "About Custom Post Type UI"
1731
- #~ msgstr "Sobre o Custom Post Type UI"
1732
-
1733
- #~ msgid "Whether to generate a default UI for managing this post type"
1734
- #~ msgstr ""
1735
- #~ "Se cria um interface de utilizador padrão para gerir este tipo de artigo"
1736
-
1737
- #~ msgid "Whether the post type will have a post type archive page"
1738
- #~ msgstr "Se o tipo de artigo terá uma página de arquivo do tipo de artigo"
1739
-
1740
- #~ msgid "Show In Menu"
1741
- #~ msgstr "Mostrar no Menu"
1742
-
1743
- #~ msgid ""
1744
- #~ "Whether to show the post type in the admin menu and where to show that "
1745
- #~ "menu. Note that show_ui must be true"
1746
- #~ msgstr ""
1747
- #~ "Se mostra o tipo de artigo no menu de administração e onde deverá ficar "
1748
- #~ "esse menu. Note que \"Mostrar UI\" tem que ser \"Verdadeiro\""
1749
-
1750
- #~ msgid "version"
1751
- #~ msgstr "versão"
1752
-
1753
- #~ msgid "Frequently Asked Questions"
1754
- #~ msgstr "Perguntas frequentes"
1755
-
1756
- #~ msgid ""
1757
- #~ "Please note that this plugin will NOT handle display of registered post "
1758
- #~ "types or taxonomies in your current theme. It will simply register them "
1759
- #~ "for you."
1760
- #~ msgstr ""
1761
- #~ "Note que este plugin NÃO controla que tipos de artigos registados ou "
1762
- #~ "taxonomias registadas serão mostrados no seu tema. Apenas efectuará o seu "
1763
- #~ "registo por si."
1764
-
1765
- #~ msgid ""
1766
- #~ "Q: <strong>How can I display content from a custom post type on my "
1767
- #~ "website?</strong>"
1768
- #~ msgstr ""
1769
- #~ "P: <strong>Como posso mostrar o conteúdo de um tipo de artigo "
1770
- #~ "personalizado no meu site?</strong>"
1771
-
1772
- #~ msgid "A: Justin Tadlock has written some great posts on the topic:"
1773
- #~ msgstr ""
1774
- #~ "R: Justin Tadlock escreveu alguns óptimos artigos sobre este tópico:"
1775
-
1776
- #~ msgid "Showing Custom Post Types on your Home Page"
1777
- #~ msgstr "Showing Custom Post Types on your Home Page"
1778
-
1779
- #~ msgid "Custom Post Types in WordPress"
1780
- #~ msgstr "Custom Post Types in WordPress"
1781
-
1782
- #~ msgid ""
1783
- #~ "A: You can either change the custom post type name back to the original "
1784
- #~ "name or try the Post Type Switcher plugin: "
1785
- #~ msgstr ""
1786
- #~ "R: Pode mudar novamente o nome do tipo de artigo personalizado para o "
1787
- #~ "original ou tentar o plugin Post Type Switcher:"
1788
-
1789
- #~ msgid "Professional WordPress<br />Second Edition"
1790
- #~ msgstr "Professional WordPress<br />Segunda edição"
1791
-
1792
- #~ msgid "Please donate to the development<br />of Custom Post Type UI:"
1793
- #~ msgstr ""
1794
- #~ "Faça um donativo para o desenvolvimento <br />do Custom Post Type UI:"
1795
-
1796
- #~ msgid ""
1797
- #~ "The leading book on WordPress design and development!<br /><strong>Brand "
1798
- #~ "new second edition!"
1799
- #~ msgstr ""
1800
- #~ "O principal livro de design e desenvolvimento em WordPress!<br /"
1801
- #~ "><strong>Segunda edição!"
1802
-
1803
- #~ msgid "WebDevStudios.com Recent News"
1804
- #~ msgstr "Notícias recentes de WebDevStudios.com"
1805
-
1806
- #~ msgid "WebDevStudios.com News"
1807
- #~ msgstr "Notícias de WebDevStudios.com"
1808
-
1809
- #~ msgid "Custom post type deleted successfully"
1810
- #~ msgstr "Tipo de artigo personalizado apagado com sucesso"
1811
-
1812
- #~ msgid "Manage Custom Post Types"
1813
- #~ msgstr "Gerir tipos de artigo personalizados"
1814
-
1815
- #~ msgid ""
1816
- #~ "Deleting custom post types will <strong>NOT</strong> delete any content "
1817
- #~ "into the database or added to those post types. You can easily recreate "
1818
- #~ "your post types and the content will still exist."
1819
- #~ msgstr ""
1820
- #~ "Apagar tipos de artigo personalizados <strong>NÃO</strong> apagará "
1821
- #~ "quaisquer conteúdos da base de dados ou adicionados a esses tipos de "
1822
- #~ "artigo. Pode facilmente recriar os seus tipos de artigo e o conteúdo "
1823
- #~ "continuará a existir."
1824
-
1825
- #~ msgid "Action"
1826
- #~ msgstr "Acção"
1827
-
1828
- #~ msgid "Name"
1829
- #~ msgstr "Nome"
1830
-
1831
- #~ msgid "Label"
1832
- #~ msgstr "Texto a mostrar"
1833
-
1834
- #~ msgid "Rewrite Slug"
1835
- #~ msgstr "Reescrever URL"
1836
-
1837
- #, fuzzy
1838
- #~ msgid "Total Published"
1839
- #~ msgstr "Total de publicados"
1840
-
1841
- #, fuzzy
1842
- #~ msgid "Total Drafts"
1843
- #~ msgstr "Total de rascunhos"
1844
-
1845
- #~ msgid "Delete"
1846
- #~ msgstr "Apagar"
1847
-
1848
- #~ msgid ""
1849
- #~ "Place the below code in your themes functions.php file to manually create "
1850
- #~ "this custom post type."
1851
- #~ msgstr ""
1852
- #~ "Insira o código abaixo no ficheiro functions.php dos seus temas para "
1853
- #~ "criar manualmente este tipo de artigo personalizado."
1854
-
1855
- #~ msgid ""
1856
- #~ "This is a <strong>BETA</strong> feature. Please <a href=\"https://github."
1857
- #~ "com/WebDevStudios/custom-post-type-ui\">report bugs</a>."
1858
- #~ msgstr ""
1859
- #~ "Isto é um recurso <strong>BETA</strong>. Por favor <a href=\"https://"
1860
- #~ "github.com/WebDevStudios/custom-post-type-ui\">reporte erros</a>."
1861
-
1862
- #~ msgid "Additional Custom Post Types"
1863
- #~ msgstr "Tipos de artigo personalizados adicionais"
1864
-
1865
- #~ msgid "No additional post types found"
1866
- #~ msgstr "Nenhum tipo de artigo adicional encontrado"
1867
-
1868
- #~ msgid "Custom taxonomy deleted successfully"
1869
- #~ msgstr "Taxonomia personalizada apagada com sucesso"
1870
-
1871
- #~ msgid "Manage Custom Taxonomies"
1872
- #~ msgstr "Gerir taxonomias personalizadas"
1873
-
1874
- #~ msgid ""
1875
- #~ "Deleting custom taxonomies does <strong>NOT</strong> delete any content "
1876
- #~ "added to those taxonomies. You can easily recreate your taxonomies and "
1877
- #~ "the content will still exist."
1878
- #~ msgstr ""
1879
- #~ "Apagar taxonomias personalizadas <strong>NÃO</strong> apagará quaisquer "
1880
- #~ "conteúdos adicionados a essas taxonomias. Pode facilmente recriar as suas "
1881
- #~ "taxonomias e o conteúdo continuará a existir."
1882
-
1883
- #~ msgid "Attached Post Types"
1884
- #~ msgstr "Tipos de artigos anexados"
1885
-
1886
- #~ msgid ""
1887
- #~ "Place the below code in your themes functions.php file to manually create "
1888
- #~ "this custom taxonomy"
1889
- #~ msgstr ""
1890
- #~ "Insira o código abaixo no ficheiro functions.php dos seus temas para "
1891
- #~ "criar manualmente esta taxonomia personalizada."
1892
-
1893
- #~ msgid ""
1894
- #~ "This is a <strong>BETA</strong> feature. Please <a href=\"http://"
1895
- #~ "webdevstudios.com/support/forum/custom-post-type-ui/\">report bugs</a>."
1896
- #~ msgstr ""
1897
- #~ "Isto é um recurso <strong>BETA</strong>. Por favor <a href=\"http://"
1898
- #~ "webdevstudios.com/support/forum/custom-post-type-ui/\">reporte erros</a>."
1899
-
1900
- #~ msgid "Save Custom Post Type"
1901
- #~ msgstr "Guardar tipo de artigo personalizado"
1902
-
1903
- #~ msgid "Create Custom Post Type"
1904
- #~ msgstr "Criar tipo de artigo personalizado"
1905
-
1906
- #~ msgid "Save Custom Taxonomy"
1907
- #~ msgstr "Guardar taxonomia personalizada"
1908
-
1909
- #~ msgid "Create Custom Taxonomy"
1910
- #~ msgstr "Criar taxonomia personalizada"
1911
-
1912
- #~ msgid "Manage custom post types"
1913
- #~ msgstr "Gerir tipos de artigo personalizados"
1914
-
1915
- #~ msgid "Manage custom taxonomies"
1916
- #~ msgstr "Gerir taxonomias personalizadas"
1917
-
1918
- #~ msgid "Post type name is a required field."
1919
- #~ msgstr "Nome do tipo de artigo é um campo obrigatório"
1920
-
1921
- #~ msgid "Taxonomy name is a required field."
1922
- #~ msgstr "Nome da taxonomia é um campo obrigatório."
1923
-
1924
- #~ msgid "You must assign your custom taxonomy to at least one post type."
1925
- #~ msgstr ""
1926
- #~ "Tem que atribuir a sua taxonomia personalizada a pelo menos um tipo de "
1927
- #~ "artigo."
1928
-
1929
- #, fuzzy
1930
- #~ msgid "Please doe not use quotes in your taxonomy slug or rewrite slug."
1931
- #~ msgstr "Por favor não utilize aspas no URL da taxonomia ou "
1932
-
1933
- #~ msgid "Edit Custom Post Type or Taxonomy"
1934
- #~ msgstr "Editar tipo de artigo personalizado ou taxonomia"
1935
-
1936
- #~ msgid "Reset"
1937
- #~ msgstr "Repor"
1938
-
1939
- #~ msgid "Create New Custom Post Type or Taxonomy"
1940
- #~ msgstr "Criar novo tipo de artigo personalizado ou taxonomia"
1941
-
1942
- #~ msgid ""
1943
- #~ "If you are unfamiliar with the options below only fill out the "
1944
- #~ "<strong>Post Type Name</strong> and <strong>Label</strong> fields and "
1945
- #~ "check which meta boxes to support. The other settings are set to the "
1946
- #~ "most common defaults for custom post types. Hover over the question mark "
1947
- #~ "for more details."
1948
- #~ msgstr ""
1949
- #~ "Se não estiver familiarizado com as opções abaixo, preencha apenas os "
1950
- #~ "campos <strong>Nome do tipo de artigo</strong> e <strong>Texto a mostrar</"
1951
- #~ "strong> e seleccione as opções a suportar. Para as restantes definições "
1952
- #~ "serão atribuídas as opções padrão para tipos de artigo personalizados. "
1953
- #~ "Veja o ponto de interrogação para mais detalhes."
1954
-
1955
- #~ msgid "Post Type Name"
1956
- #~ msgstr "Nome do tipo de artigo"
1957
-
1958
- #~ msgid ""
1959
- #~ "Max 20 characters, can not contain capital letters or spaces. Reserved "
1960
- #~ "post types: post, page, attachment, revision, nav_menu_item."
1961
- #~ msgstr ""
1962
- #~ "Máximo 20 caracteres, não pode conter maiúsculas ou espaços. Tipos de "
1963
- #~ "artigos reservados: post, page, attachment, revision, nav_menu_item."
1964
-
1965
- #~ msgid "Post type label. Used in the admin menu for displaying post types."
1966
- #~ msgstr ""
1967
- #~ "Texto a mostrar para o tipo de artigo. Utilizado no menu de administração "
1968
- #~ "para mostrar os tipos de artigo."
1969
-
1970
- #~ msgid "Advanced Label Options"
1971
- #~ msgstr "Opções avançadas do texto a mostrar"
1972
-
1973
- #~ msgid "Advanced Options"
1974
- #~ msgstr "Opções avançadas"
1975
-
1976
- #~ msgid "(e.g. Search Movies)"
1977
- #~ msgstr "(p. ex. Pesquisar filmes)"
1978
-
1979
- #~ msgid "(e.g. No Movies Found)"
1980
- #~ msgstr "(p. ex. Nenhum fime encontrado)"
1981
-
1982
- #~ msgid ""
1983
- #~ "If you are unfamiliar with the options below only fill out the "
1984
- #~ "<strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> "
1985
- #~ "fields. The other settings are set to the most common defaults for "
1986
- #~ "custom taxonomies. Hover over the question mark for more details."
1987
- #~ msgstr ""
1988
- #~ "Se não estiver familiarizado com as opções abaixo, preencha apenas os "
1989
- #~ "campos <strong>Nome da taxonomia</strong> e <strong>Nome do tipo de "
1990
- #~ "artigo</strong>. Para as restantes definições serão atribuídas as opções "
1991
- #~ "padrão para taxonomias personalizadas. Veja o ponto de interrogação para "
1992
- #~ "mais detalhes."
1993
-
1994
- #~ msgid "Taxonomy Name"
1995
- #~ msgstr "Nome da taxonomia"
1996
-
1997
- #~ msgid ""
1998
- #~ "Note: Changing the name, after adding terms to the taxonomy, will not "
1999
- #~ "update the terms in the database."
2000
- #~ msgstr ""
2001
- #~ "Nota: alterar o nome depois de adicionar termos à taxonomia, não "
2002
- #~ "actualizará os termos na base de dados."
2003
-
2004
- #~ msgid ""
2005
- #~ "Max 32 characters, should only contain alphanumeric lowercase characters "
2006
- #~ "and underscores in place of spaces."
2007
- #~ msgstr ""
2008
- #~ "Máximo 32 caracteres, apenas pode conter caracteres alfanuméricos "
2009
- #~ "minúsculos e underscores em vez de espaços."
2010
-
2011
- #~ msgid ""
2012
- #~ "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
2013
- #~ msgstr ""
2014
- #~ "Texto a mostrar para a taxonomia. Utilizado no menu de administração para "
2015
- #~ "mostrar a taxonomia personalizada."
2016
-
2017
- #~ msgid "(e.g. movies)"
2018
- #~ msgstr "(p. ex. filmes)"
2019
-
2020
- #~ msgid "Update Item"
2021
- #~ msgstr "Actualizar item"
2022
-
2023
- #~ msgid "(e.g. Update Actor)"
2024
- #~ msgstr "(p. ex. Actualizar actor)"
2025
-
2026
- #~ msgid "\"Use the option below to explicitly set \"supports\" to false."
2027
- #~ msgstr ""
2028
- #~ "\"Utilize a opção abaixo para explicitamente definir \"suporte\" como "
2029
- #~ "falso."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpt-plugin-tr_TR.mo DELETED
Binary file
languages/custom-post-type-ui-de_DE.mo ADDED
Binary file
languages/{cpt-plugin-de_DE.po → custom-post-type-ui-de_DE.po} RENAMED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-post-type-"
5
  "ui\n"
6
- "POT-Creation-Date: 2015-08-11 11:36-0500\n"
7
- "PO-Revision-Date: 2015-08-11 11:36-0500\n"
8
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
10
  "koller@gmail.com>\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.2\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
@@ -24,48 +24,61 @@ msgstr ""
24
  "X-Poedit-SearchPathExcluded-0: tests\n"
25
  "X-Poedit-SearchPathExcluded-1: *.js\n"
26
 
27
- #: custom-post-type-ui.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Custom Post Types"
29
  msgstr "Custom Post Types"
30
 
31
- #: custom-post-type-ui.php:60
32
  msgid "CPT UI"
33
  msgstr "CPT UI"
34
 
35
- #: custom-post-type-ui.php:61
36
  msgid "Add/Edit Post Types"
37
  msgstr "Post Types hinzufügen/editieren"
38
 
39
- #: custom-post-type-ui.php:62
40
  msgid "Add/Edit Taxonomies"
41
  msgstr "Taxonomien hinzufügen/editieren"
42
 
43
- #: custom-post-type-ui.php:63
44
  msgid "Registered Types and Taxes"
45
  msgstr "Registrierte Post Types und Taxonomien"
46
 
47
- #: custom-post-type-ui.php:63
48
  msgid "Registered Types/Taxes"
49
  msgstr "Registrierte Post Types/Taxonomien"
50
 
51
- #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
52
  msgid "Import/Export"
53
  msgstr "Import/Export"
54
 
55
- #: custom-post-type-ui.php:65
56
  msgid "Help/Support"
57
  msgstr "Hilfe/Support"
58
 
59
- #: custom-post-type-ui.php:69
60
  msgid "About CPT UI"
61
  msgstr "Über CPT UI"
62
 
63
  #. Plugin Name of the plugin/theme
64
- #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
65
  msgid "Custom Post Type UI"
66
  msgstr "Custom Post Type UI"
67
 
68
- #: custom-post-type-ui.php:342
69
  msgid ""
70
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
71
  "with our plugin provides efficiency and speed in creating post types and "
@@ -73,62 +86,102 @@ msgid ""
73
  msgstr ""
74
  "Danke dass Du Dich für Custom Post Type UI entschieden hast. Wir hoffen, "
75
  "dass Du mit Hilfe unseres Plugins auf eine einfache und schnelle Weise neue "
76
- "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
77
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
78
 
79
- #: custom-post-type-ui.php:348
80
- msgid "Post type migration"
81
- msgstr "Post Type Migrierung"
 
82
 
83
- #: custom-post-type-ui.php:349
 
 
 
 
84
  msgid ""
85
- "In the past, if you changed your post type slug, you would lose immediate "
86
- "access to the posts in the post type and need to recover another way. We "
87
- "have now added support for migrating all posts within the old post type to "
88
- "the new post type you renamed it to."
89
  msgstr ""
90
- "Bisher war es so, sobald Du den Kurzlink eines Post Types verändert hast, "
91
- "verlorst Du den direkten Zugriff auf alle seine Beiträge und musstest diese "
92
- "anderweitig wiederherstellen. Wir haben jetzt die Unterstützung für die "
93
- "Migration von Beiträgen aus dem alten Post Type in den neu umbenannten "
94
- "hinzugefügt."
95
 
96
- #: custom-post-type-ui.php:352
97
- msgid "UI Refinement"
98
- msgstr "Verbesserte Benutzeroberfläche"
99
 
100
- #: custom-post-type-ui.php:353
101
  msgid ""
102
- "After receiving feedback regarding the 1.0.x changes, we have further "
103
- "simplified the UI to reduce the amount of clicking necessary to manage your "
104
- "post types and taxonomies."
105
  msgstr ""
106
- "Nach dem Feedback zu den Änderungen in 1.0.x, haben wir die "
107
- "Benutzeroberfläche weiter vereinfacht um die Anzahl der notwendigen "
108
- "Mausklicks zur Verwaltung Deiner Post Types und Taxonomien weiter zu "
109
- "minimieren."
110
 
111
- #: custom-post-type-ui.php:356
112
- msgid "Registered Post Type and Taxonomy Listings"
113
- msgstr "Listen der registrierten Post Types und Taxonomien"
114
 
115
- #: custom-post-type-ui.php:357
116
  msgid ""
117
- "We are bringing back the listing of all CPTUI-registered post types and "
118
- "taxonomies for easier quick view of what you have going."
 
119
  msgstr ""
120
- "Wir bringen die Listendarstellung aller durch CPT UI registrierten Post "
121
- "Types und Taxonomien zurück, damit Du leichter den Überblick behältst."
122
 
123
- #: custom-post-type-ui.php:362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  msgid "Help Support This Plugin!"
125
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
126
 
127
- #: custom-post-type-ui.php:366
128
  msgid "Professional WordPress<br />Third Edition"
129
  msgstr "Professional WordPress<br />(Dritte Auflage)"
130
 
131
- #: custom-post-type-ui.php:371
 
 
 
 
 
132
  msgid ""
133
  "The leading book on WordPress design and development! Brand new third "
134
  "edition!"
@@ -136,210 +189,230 @@ msgstr ""
136
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
137
  "Auflage!"
138
 
139
- #: custom-post-type-ui.php:374
140
  msgid "Professional WordPress<br />Plugin Development"
141
  msgstr "Professional WordPress<br />Plugin Development"
142
 
143
- #: custom-post-type-ui.php:379
 
 
 
 
 
144
  msgid "Highest rated WordPress development book on Amazon!"
145
  msgstr ""
146
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
147
  "Amazon!"
148
 
149
- #: custom-post-type-ui.php:382
150
  msgid "PayPal Donation"
151
  msgstr "PayPal Spende"
152
 
153
- #: custom-post-type-ui.php:386
154
  msgid "PayPal - The safer, easier way to pay online!"
155
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
156
 
157
- #: custom-post-type-ui.php:389
158
  msgid "Please donate to the development of Custom Post Type UI:"
159
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
160
 
161
- #: custom-post-type-ui.php:415
162
  #, php-format
163
  msgid "%s version %s by %s"
164
  msgstr "%s Version %s von den %s"
165
 
166
- #: custom-post-type-ui.php:426
167
  msgid "Please Report Bugs"
168
  msgstr "Bitte Fehler melden"
169
 
170
- #: custom-post-type-ui.php:429
171
  msgid "Follow on Twitter:"
172
  msgstr "Auf Twitter folgen:"
173
 
174
- #: custom-post-type-ui.php:493
175
  msgid "Manage Taxonomies"
176
  msgstr "Verwalte Taxonomien"
177
 
178
- #: custom-post-type-ui.php:497
179
  msgid "Manage Post Types"
180
  msgstr "Verwalte Post Types"
181
 
182
- #: custom-post-type-ui.php:523
183
  msgid "Add New Post Type"
184
  msgstr "Neuen Post Type hinzufügen"
185
 
186
- #: custom-post-type-ui.php:526
187
  msgid "Edit Post Types"
188
  msgstr "Post Types bearbeiten"
189
 
190
- #: custom-post-type-ui.php:530
191
  msgid "Add New Taxonomy"
192
  msgstr "Neue Taxonomie hinzufügen"
193
 
194
- #: custom-post-type-ui.php:533
195
  msgid "Edit Taxonomies"
196
  msgstr "Taxonomien bearbeiten"
197
 
198
- #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
199
- #: inc/listings.php:224
200
  msgid "Post Types"
201
  msgstr "Post Types"
202
 
203
- #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
204
- #: inc/listings.php:122 inc/listings.php:132
205
  msgid "Taxonomies"
206
  msgstr "Taxonomien"
207
 
208
- #: custom-post-type-ui.php:539
209
  msgid "Get Code"
210
  msgstr "Code erhalten"
211
 
212
- #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
213
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
214
- #: inc/taxonomies.php:343
 
 
 
215
  msgid "Settings"
216
  msgstr "Einstellungen"
217
 
218
- #: custom-post-type-ui.php:622
219
  msgid "Help"
220
  msgstr "Hilfe"
221
 
222
- #: custom-post-type-ui.php:651
223
  #, php-format
224
  msgid "%s has been successfully added"
225
  msgstr "%s wurde erfolgreich hinzugefügt"
226
 
227
- #: custom-post-type-ui.php:653
228
  #, php-format
229
  msgid "%s has failed to be added"
230
  msgstr "%s konnte nicht hinzugefügt werden"
231
 
232
- #: custom-post-type-ui.php:657
233
  #, php-format
234
  msgid "%s has been successfully updated"
235
  msgstr "%s wurde erfolgreich aktualisiert"
236
 
237
- #: custom-post-type-ui.php:659
238
  #, php-format
239
  msgid "%s has failed to be updated"
240
  msgstr "%s konnte nicht aktualisiert werden"
241
 
242
- #: custom-post-type-ui.php:663
243
  #, php-format
244
  msgid "%s has been successfully deleted"
245
  msgstr "%s wurde erfolgreich gelöscht"
246
 
247
- #: custom-post-type-ui.php:665
248
  #, php-format
249
  msgid "%s has failed to be deleted"
250
  msgstr "%s konnte nicht gelöscht werden"
251
 
252
- #: custom-post-type-ui.php:669
253
  #, php-format
254
  msgid "%s has been successfully imported"
255
  msgstr "%s wurde erfolgreich importiert"
256
 
257
- #: custom-post-type-ui.php:671
258
  #, php-format
259
  msgid "%s has failed to be imported"
260
  msgstr "%s konnte nicht importiert werden"
261
 
262
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
263
  #, php-format
264
  msgid "Add new %s"
265
  msgstr "Neue %s hinzufügen"
266
 
267
- #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
 
268
  #, php-format
269
  msgid "Edit %s"
270
  msgstr "%s bearbeiten"
271
 
272
- #: custom-post-type-ui.php:756
273
  #, php-format
274
  msgid "New %s"
275
  msgstr "%s hinzufügen"
276
 
277
- #: custom-post-type-ui.php:757
278
  #, php-format
279
  msgid "View %s"
280
  msgstr "%s anzeigen"
281
 
282
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
283
  #, php-format
284
  msgid "All %s"
285
  msgstr "Alle %s"
286
 
287
- #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
288
  #, php-format
289
  msgid "Search %s"
290
  msgstr "%s durchsuchen"
291
 
292
- #: custom-post-type-ui.php:760
293
  #, php-format
294
  msgid "No %s found."
295
  msgstr "Keine %s gefunden."
296
 
297
- #: custom-post-type-ui.php:761
298
  #, php-format
299
  msgid "No %s found in trash."
300
  msgstr "Keine %s im Papierkorb gefunden."
301
 
302
- #: custom-post-type-ui.php:765
303
  #, php-format
304
  msgid "Popular %s"
305
  msgstr "Beliebte %s"
306
 
307
- #: custom-post-type-ui.php:767
308
  #, php-format
309
  msgid "Parent %s"
310
  msgstr "Übergeordnet %s"
311
 
312
- #: custom-post-type-ui.php:768
313
  #, php-format
314
  msgid "Parent %s:"
315
  msgstr "Übergeordnet %s:"
316
 
317
- #: custom-post-type-ui.php:770
318
  #, php-format
319
  msgid "Update %s"
320
  msgstr "%s aktualisieren"
321
 
322
- #: custom-post-type-ui.php:772
323
  #, php-format
324
  msgid "New %s name"
325
  msgstr "Neuer %s Name"
326
 
327
- #: custom-post-type-ui.php:773
328
  #, php-format
329
  msgid "Separate %s with commas"
330
  msgstr "%s mit Kommas trennen"
331
 
332
- #: custom-post-type-ui.php:774
333
  #, php-format
334
  msgid "Add or remove %s"
335
  msgstr "%s hinzufügen oder entfernen"
336
 
337
- #: custom-post-type-ui.php:775
338
  #, php-format
339
  msgid "Choose from the most used %s"
340
  msgstr "Aus den am häufigsten verwendeten %s auswählen"
341
 
342
- #: inc/import_export.php:42
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid ""
344
  "If you are wanting to migrate registered post types or taxonomies from this "
345
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -352,32 +425,35 @@ msgstr ""
352
  "Rücken zukehren wollen dann folge bitte den Informationen im \"Code "
353
  "erhalten“-Reiter."
354
 
355
- #: inc/import_export.php:45
356
  msgid "NOTE"
357
  msgstr "Anmerkung"
358
 
359
- #: inc/import_export.php:46
360
- msgid "This will not export the associated posts, just the settings."
 
 
 
361
  msgstr ""
362
  "Es werden nur die Einstellungen exportiert, nicht die dazugehörigen Beiträge."
363
 
364
- #: inc/import_export.php:53
365
  msgid "Import Post Types"
366
  msgstr "Post Types importieren"
367
 
368
- #: inc/import_export.php:55 inc/import_export.php:80
369
  msgid "Paste content here."
370
  msgstr "Inhalt hier einfügen."
371
 
372
- #: inc/import_export.php:56 inc/import_export.php:81
373
  msgid "Note:"
374
  msgstr "Anmerkung:"
375
 
376
- #: inc/import_export.php:56 inc/import_export.php:81
377
  msgid "Importing will overwrite previous registered settings."
378
  msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
379
 
380
- #: inc/import_export.php:57
381
  msgid ""
382
  "To import post types from a different WordPress site, paste the exported "
383
  "content from that site and click the \"Import\" button."
@@ -385,19 +461,19 @@ msgstr ""
385
  "Um die Post Types einer anderen WordPress-Seite zu importieren, füge deren "
386
  "exportierte Inhalte ein und klicke den \"Importieren“-Button."
387
 
388
- #: inc/import_export.php:58 inc/import_export.php:83
389
  msgid "Import"
390
  msgstr "Importieren"
391
 
392
- #: inc/import_export.php:62
393
  msgid "Export Post Types"
394
  msgstr "Post Types exportieren"
395
 
396
- #: inc/import_export.php:68
397
  msgid "No post types registered yet."
398
  msgstr "Es wurden noch keine Post Types erstellt."
399
 
400
- #: inc/import_export.php:71 inc/import_export.php:96
401
  msgid ""
402
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
403
  "(Mac)."
@@ -405,7 +481,7 @@ msgstr ""
405
  "Um die System-Informationen zu kopieren, klicke unten und drücken dann Ctrl "
406
  "+ C am PC oder Cmd + C am Mac."
407
 
408
- #: inc/import_export.php:72
409
  msgid ""
410
  "Use the content above to import current post types into a different "
411
  "WordPress site. You can also use this to simply back up your post type "
@@ -415,11 +491,11 @@ msgstr ""
415
  "Post Types in eine andere WordPress Webseite zu importieren. Du kannst dies "
416
  "ebenso einfach dazu benutzen um Deine Post Type-Einstellungen zu sichern."
417
 
418
- #: inc/import_export.php:78
419
  msgid "Import Taxonomies"
420
  msgstr "Taxonomien importieren"
421
 
422
- #: inc/import_export.php:82
423
  msgid ""
424
  "To import taxonomies from a different WordPress site, paste the exported "
425
  "content from that site and click the \"Import\" button."
@@ -428,15 +504,15 @@ msgstr ""
428
  "die Zwischenablage die exportierten Inhalte dieser Seite ein und klicke den "
429
  "\"Importieren“-Button."
430
 
431
- #: inc/import_export.php:87
432
  msgid "Export Taxonomies"
433
  msgstr "Taxonomien exportieren"
434
 
435
- #: inc/import_export.php:93
436
  msgid "No taxonomies registered yet."
437
  msgstr "Es wurden noch keine Taxonomien definiert."
438
 
439
- #: inc/import_export.php:97
440
  msgid ""
441
  "Use the content above to import current taxonomies into a different "
442
  "WordPress site. You can also use this to simply back up your taxonomy "
@@ -446,79 +522,125 @@ msgstr ""
446
  "Taxonomien in eine andere WordPress Webseite zu importieren. Du kannst dies "
447
  "ebenso einfach dazu benutzen um Deine Taxonomie-Einstellungen zu sichern."
448
 
449
- #: inc/import_export.php:105
450
  msgid "Get Post Type and Taxonomy Code"
451
  msgstr "Erhalte Post Type- und Taxonomie-Code"
452
 
453
- #: inc/import_export.php:107
454
  msgid "All CPT UI Post Types"
455
  msgstr "Alle CPT UI-Post Types"
456
 
457
- #: inc/import_export.php:108 inc/import_export.php:112
 
458
  msgid "Copy/paste the code below into your functions.php file."
459
  msgstr ""
460
  "Kopiere den Code in die Zwischenablage und füge ihn im Anschluss in Deine "
461
  "functions.php-Datei ein."
462
 
463
- #: inc/import_export.php:111
 
 
 
 
 
464
  msgid "All CPT UI Taxonomies"
465
  msgstr "Alle CPT UI-Taxonomien"
466
 
467
- #: inc/import_export.php:142
468
- msgid "No taxonomies to display at this time"
469
- msgstr "Es gibt keine Taxonomien zum Anzeigen."
 
470
 
471
- #: inc/import_export.php:241
472
- msgid "No post types to display at this time"
473
- msgstr "Es gibt keine Post Types zum Anzeigen."
474
 
475
- #: inc/import_export.php:367
476
- msgid "Post types"
477
- msgstr "Post Types"
478
 
479
  #: inc/listings.php:10
480
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
481
  msgstr "In Custom Post Type UI registrierte Post Types und Taxonomien."
482
 
483
- #: inc/listings.php:18 inc/listings.php:134
484
  #, php-format
485
  msgid "Total count: %d"
486
  msgstr "Anzahl: %d"
487
 
488
- #: inc/listings.php:31 inc/listings.php:119
489
  msgid "Post Type"
490
  msgstr "Post Type"
491
 
492
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
493
  msgid "Supports"
494
  msgstr "Unterstützt"
495
 
496
- #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
497
- #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
498
  msgid "Labels"
499
  msgstr "Beschriftungen"
500
 
501
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
502
- msgid "Edit"
503
- msgstr "Bearbeiten"
 
504
 
505
- #: inc/listings.php:75
506
  msgid "View frontend archive"
507
  msgstr "Frontend-Archiv anzeigen"
508
 
509
- #: inc/listings.php:108 inc/listings.php:211
510
  msgid "No custom labels to display"
511
  msgstr "Keine benutzerdefinierten Beschriftungen zum Anzeigen"
512
 
513
- #: inc/listings.php:147 inc/listings.php:222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
514
  msgid "Taxonomy"
515
  msgstr "Taxonomie"
516
 
517
- #: inc/post-types.php:30 inc/taxonomies.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
518
  msgid "Are you sure you want to delete this?"
519
  msgstr "Bist Du sicher, dass Du dies löschen möchtest?"
520
 
521
- #: inc/post-types.php:89
522
  msgid ""
523
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
524
  "registers a new post type entry for your install."
@@ -527,7 +649,7 @@ msgstr ""
527
  "notwendig ist. Die Änderung des Namens registriert einen neue Post Type "
528
  "Eintrag für Deine Installation."
529
 
530
- #: inc/post-types.php:90
531
  msgid ""
532
  "Use appropriate checkbox above save/delete buttons if you wish to change "
533
  "slugs and update post types for existing posts."
@@ -536,23 +658,23 @@ msgstr ""
536
  "Kurzlink ändern willst und den Post Type für bereits existierende Beiträge "
537
  "anpassen willst."
538
 
539
- #: inc/post-types.php:91 inc/taxonomies.php:87
540
  msgid "Select: "
541
- msgstr "Auswählen"
542
 
543
- #: inc/post-types.php:94 inc/taxonomies.php:91
544
  msgid "Select"
545
  msgstr "Auswählen"
546
 
547
- #: inc/post-types.php:124
548
  msgid "Post Type Slug"
549
  msgstr "Post Type-Kurzlink"
550
 
551
- #: inc/post-types.php:125
552
  msgid "(e.g. movie)"
553
  msgstr "(z. B. film)"
554
 
555
- #: inc/post-types.php:126
556
  msgid ""
557
  "The post type name. Used to retrieve custom post type content. Should be "
558
  "short and unique"
@@ -560,33 +682,33 @@ msgstr ""
560
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
561
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
562
 
563
- #: inc/post-types.php:137 inc/taxonomies.php:129
564
  msgid "Plural Label"
565
  msgstr "Beschriftung (Plural)"
566
 
567
- #: inc/post-types.php:138
568
  msgid "(e.g. Movies)"
569
  msgstr "(z. B. Filme)"
570
 
571
- #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
572
- #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
573
- #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
574
- #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
575
- #: inc/post-types.php:368
576
  msgid "Post type label. Used in the admin menu for displaying post types."
577
  msgstr ""
578
  "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
579
  "verwendet den Post Type anzuzeigen."
580
 
581
- #: inc/post-types.php:149 inc/taxonomies.php:138
582
  msgid "Singular Label"
583
  msgstr "Beschriftung (Singular)"
584
 
585
- #: inc/post-types.php:150
586
  msgid "(e.g. Movie)"
587
  msgstr "(z. B. Film)"
588
 
589
- #: inc/post-types.php:151
590
  msgid ""
591
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
592
  "needed."
@@ -594,11 +716,11 @@ msgstr ""
594
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
595
  "Beschriftungen in der Einzahl benötigt werden."
596
 
597
- #: inc/post-types.php:167
598
  msgid "Description"
599
  msgstr "Beschreibung"
600
 
601
- #: inc/post-types.php:168
602
  msgid ""
603
  "Custom Post Type Description. Describe what your custom post type is used "
604
  "for."
@@ -606,34 +728,34 @@ msgstr ""
606
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
607
  "verwendet wird."
608
 
609
- #: inc/post-types.php:180
610
  msgid "Migrate posts to newly renamed post type?"
611
  msgstr ""
612
  "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
613
 
614
- #: inc/post-types.php:181
615
  msgid "Check this to migrate posts if and when renaming your post type."
616
  msgstr ""
617
  "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
618
  "Type umbenennen willst."
619
 
620
- #: inc/post-types.php:190
621
  msgid "Save Post Type"
622
  msgstr "Post Type speichern"
623
 
624
- #: inc/post-types.php:191
625
  msgid "Delete Post Type"
626
  msgstr "Post Type löschen"
627
 
628
- #: inc/post-types.php:193
629
  msgid "Add Post Type"
630
  msgstr "Post Type hinzufügen"
631
 
632
- #: inc/post-types.php:204 inc/taxonomies.php:190
633
  msgid "Starter Notes"
634
  msgstr "Tips für Einsteiger"
635
 
636
- #: inc/post-types.php:207
637
  #, php-format
638
  msgid ""
639
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -647,7 +769,7 @@ msgstr ""
647
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
648
  "revision, nav_menu_item."
649
 
650
- #: inc/post-types.php:208
651
  #, php-format
652
  msgid ""
653
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -663,7 +785,7 @@ msgstr ""
663
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
664
  "roten Fragezeichen."
665
 
666
- #: inc/post-types.php:209
667
  #, php-format
668
  msgid ""
669
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -674,251 +796,313 @@ msgstr ""
674
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
675
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
676
 
677
- #: inc/post-types.php:223 inc/taxonomies.php:211
678
  msgid "Menu Name"
679
  msgstr "Menü-Name"
680
 
681
- #: inc/post-types.php:224
682
  msgid "Custom menu name for your custom post type."
683
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
684
 
685
- #: inc/post-types.php:228
686
  msgid "(e.g. My Movies)"
687
  msgstr "(z. B. Mein Film)"
688
 
689
- #: inc/post-types.php:235 inc/taxonomies.php:220
690
  msgid "All Items"
691
  msgstr "Alle Einträge"
692
 
693
- #: inc/post-types.php:240
694
  msgid "(e.g. All Movies)"
695
  msgstr "(z. B. Alle Filme)"
696
 
697
- #: inc/post-types.php:247
698
  msgid "Add New"
699
  msgstr "Neu"
700
 
701
- #: inc/post-types.php:252
702
  msgid "(e.g. Add New)"
703
  msgstr "(z. B. Neuen hinzufügen)"
704
 
705
- #: inc/post-types.php:259 inc/taxonomies.php:256
706
  msgid "Add New Item"
707
  msgstr "Neuen Eintrag erstellen"
708
 
709
- #: inc/post-types.php:264
710
  msgid "(e.g. Add New Movie)"
711
  msgstr "(z. B. Neuen Film hinzufügen)"
712
 
713
- #: inc/post-types.php:276
 
 
 
 
714
  msgid "(e.g. Edit)"
715
  msgstr "(z. B. Bearbeiten)"
716
 
717
- #: inc/post-types.php:283 inc/taxonomies.php:229
718
  msgid "Edit Item"
719
  msgstr "Eintrag bearbeiten"
720
 
721
- #: inc/post-types.php:288
722
  msgid "(e.g. Edit Movie)"
723
  msgstr "(z. B. Film bearbeiten)"
724
 
725
- #: inc/post-types.php:295
726
  msgid "New Item"
727
  msgstr "Neuer Eintrag"
728
 
729
- #: inc/post-types.php:300
730
  msgid "(e.g. New Movie)"
731
  msgstr "(z. B. Neuer Film)"
732
 
733
- #: inc/post-types.php:307
734
  msgid "View"
735
  msgstr "Anzeigen"
736
 
737
- #: inc/post-types.php:312
738
  msgid "(e.g. View)"
739
  msgstr "(z. B. Anzeigen)"
740
 
741
- #: inc/post-types.php:319 inc/taxonomies.php:238
742
  msgid "View Item"
743
  msgstr "Eintrag anzeigen"
744
 
745
- #: inc/post-types.php:324
746
  msgid "(e.g. View Movie)"
747
  msgstr "(z. B. Film anzeigen)"
748
 
749
- #: inc/post-types.php:331
750
  msgid "Search Item"
751
  msgstr "Eintrag suchen"
752
 
753
- #: inc/post-types.php:336
754
  msgid "(e.g. Search Movie)"
755
  msgstr "(z. B. Film suchen)"
756
 
757
- #: inc/post-types.php:343
758
  msgid "Not Found"
759
  msgstr "Nicht gefunden"
760
 
761
- #: inc/post-types.php:348
762
  msgid "(e.g. No Movies found)"
763
  msgstr "(z. B. Keine Filme gefunden)"
764
 
765
- #: inc/post-types.php:355
766
  msgid "Not Found in Trash"
767
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
768
 
769
- #: inc/post-types.php:360
770
  msgid "(e.g. No Movies found in Trash)"
771
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
772
 
773
- #: inc/post-types.php:367
774
  msgid "Parent"
775
  msgstr "Übergeordnet"
776
 
777
- #: inc/post-types.php:372
778
  msgid "(e.g. Parent Movie)"
779
  msgstr "(z. B. Übergeordneter Film)"
780
 
781
- #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
782
- #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
783
- #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
784
- #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
785
- #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
786
- #: inc/taxonomies.php:469
 
787
  msgid "False"
788
  msgstr "deaktiviert"
789
 
790
- #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
791
- #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
792
- #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
793
- #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
794
- #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
795
- #: inc/taxonomies.php:470
 
796
  msgid "True"
797
  msgstr "aktiviert"
798
 
799
- #: inc/post-types.php:395
800
  msgid "Public"
801
  msgstr "Öffentlich"
802
 
803
- #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
804
- #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
805
- #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
806
- msgid "(default: True)"
807
- msgstr "(Voreinstellung: aktiviert)"
808
 
809
- #: inc/post-types.php:397
810
  msgid ""
 
811
  "Whether posts of this type should be shown in the admin UI and is publicly "
812
  "queryable."
813
  msgstr ""
814
  "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
815
- "öffentlich durchsuchbar sind."
 
 
816
 
817
- #: inc/post-types.php:415 inc/taxonomies.php:375
818
  msgid "Show UI"
819
  msgstr "Benutzeroberfläche anzeigen"
820
 
821
- #: inc/post-types.php:417
 
 
 
 
 
 
822
  msgid "Whether to generate a default UI for managing this post type."
823
  msgstr ""
824
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
825
  "angelegt werden."
826
 
827
- #: inc/post-types.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
828
  msgid "Has Archive"
829
  msgstr "Hat ein Archiv"
830
 
831
- #: inc/post-types.php:426
832
  msgid "Whether the post type will have a post type archive URL."
833
  msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
834
 
835
- #: inc/post-types.php:427
836
  msgid "If left blank, the archive slug will default to the post type slug."
837
  msgstr ""
838
  "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
839
  "Post Type-Kurzlink gesetzt."
840
 
841
- #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
842
- #: inc/taxonomies.php:359 inc/taxonomies.php:479
843
- msgid "(default: False)"
844
- msgstr "(Voreinstellung: deaktiviert)"
845
-
846
- #: inc/post-types.php:453
847
  msgid "Slug to be used for archive URL."
848
  msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
849
 
850
- #: inc/post-types.php:473
851
  msgid "Exclude From Search"
852
  msgstr "Von der Suche ausschließen"
853
 
854
- #: inc/post-types.php:475
855
  msgid ""
856
  "Whether to exclude posts with this post type from front end search results."
857
  msgstr ""
858
  "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
859
  "ausgeschlossen werden sollen."
860
 
861
- #: inc/post-types.php:486
862
  msgid "Capability Type"
863
  msgstr "Fähigkeiten"
864
 
865
- #: inc/post-types.php:487
866
  msgid "The post type to use for checking read, edit, and delete capabilities"
867
  msgstr ""
868
  "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
869
  "Bearbeiten und Löschen zu prüfen"
870
 
871
- #: inc/post-types.php:504 inc/taxonomies.php:358
872
  msgid "Hierarchical"
873
  msgstr "Hierarchisch"
874
 
875
- #: inc/post-types.php:506
876
  msgid "Whether the post type can have parent-child relationships"
877
  msgstr "Darf der Post Type hierarchische Beziehungen haben"
878
 
879
- #: inc/post-types.php:524 inc/taxonomies.php:418
880
  msgid "Rewrite"
881
  msgstr "Rewrite"
882
 
883
- #: inc/post-types.php:526
884
  msgid "Whether or not WordPress should use rewrites for this post type"
885
  msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
886
 
887
- #: inc/post-types.php:537 inc/taxonomies.php:429
888
  msgid "Custom Rewrite Slug"
889
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
890
 
891
- #: inc/post-types.php:538
892
  msgid "(default: post type slug)"
893
  msgstr "(Voreinstellung: Post Type-Kurzlink)"
894
 
895
- #: inc/post-types.php:539
896
  msgid "Custom post type slug to use instead of the default."
897
  msgstr ""
898
  "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
899
  "benutzt werden soll."
900
 
901
- #: inc/post-types.php:556
902
  msgid "With Front"
903
  msgstr "Front Base voranstellen"
904
 
905
- #: inc/post-types.php:558 inc/taxonomies.php:446
906
  msgid "Should the permastruct be prepended with the front base."
907
  msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
908
 
909
- #: inc/post-types.php:576 inc/taxonomies.php:392
910
  msgid "Query Var"
911
  msgstr "Abfrage Variable"
912
 
913
- #: inc/post-types.php:578
914
  msgid "Sets the query_var key for this post type."
915
  msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
916
 
917
- #: inc/post-types.php:586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
918
  msgid "Menu Position"
919
  msgstr "Menü Position"
920
 
921
- #: inc/post-types.php:587
922
  msgid ""
923
  "The position in the menu order the post type should appear. show_in_menu "
924
  "must be true."
@@ -926,28 +1110,27 @@ msgstr ""
926
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
927
  "anzeigen\" muss dafür aktiviert sein."
928
 
929
- #: inc/post-types.php:588
930
- #, fuzzy
931
  msgid ""
932
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
933
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
934
  "the \"menu_position\" section. Range of 5-100"
935
  msgstr ""
936
- "<a href=\"http://codex.wordpress.org/Function_Reference/"
937
- "register_post_type#Parameters\">Lies mehr </a> zu den verfügbaren "
938
- "Einstellungsmöglichkeiten für die „Menü Position\" Funktion. Die möglichen "
939
- "Werte reichen von 5 bis 100."
940
 
941
- #: inc/post-types.php:603
942
  msgid "Show in Menu"
943
  msgstr "Im Menü anzeigen"
944
 
945
- #: inc/post-types.php:604
946
  msgid ""
947
  "Whether to show the post type in the admin menu and where to show that menu."
948
  msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
949
 
950
- #: inc/post-types.php:605
951
  msgid ""
952
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
953
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -956,40 +1139,40 @@ msgstr ""
956
  "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
957
  "angegeben sein wird der Post Type als Untermenü davon angezeigt."
958
 
959
- #: inc/post-types.php:631
960
  msgid "Top-level page file name to make post type a sub-menu of."
961
  msgstr ""
962
  "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
963
 
964
- #: inc/post-types.php:643
965
  msgid "Menu Icon"
966
  msgstr "Menü-Icon"
967
 
968
- #: inc/post-types.php:644
969
  msgid "(Full URL for icon or Dashicon class)"
970
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
971
 
972
- #: inc/post-types.php:645
973
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
974
  msgstr ""
975
  "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
976
  "Dashicon-Klasse."
977
 
978
- #: inc/post-types.php:658
979
  msgid "Title"
980
  msgstr "Titel"
981
 
982
- #: inc/post-types.php:659
983
  msgid "Adds the title meta box when creating content for this custom post type"
984
  msgstr ""
985
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
986
  "erstellt werden"
987
 
988
- #: inc/post-types.php:673
989
  msgid "Editor"
990
  msgstr "Text-Editor"
991
 
992
- #: inc/post-types.php:674
993
  msgid ""
994
  "Adds the content editor meta box when creating content for this custom post "
995
  "type"
@@ -997,33 +1180,33 @@ msgstr ""
997
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
998
  "Type erstellt werden"
999
 
1000
- #: inc/post-types.php:688
1001
  msgid "Excerpt"
1002
  msgstr "Auszug"
1003
 
1004
- #: inc/post-types.php:689
1005
  msgid ""
1006
  "Adds the excerpt meta box when creating content for this custom post type"
1007
  msgstr ""
1008
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1009
  "erstellt werden"
1010
 
1011
- #: inc/post-types.php:703
1012
  msgid "Trackbacks"
1013
  msgstr "Trackbacks"
1014
 
1015
- #: inc/post-types.php:704
1016
  msgid ""
1017
  "Adds the trackbacks meta box when creating content for this custom post type"
1018
  msgstr ""
1019
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1020
  "Type erstellt werden"
1021
 
1022
- #: inc/post-types.php:718
1023
  msgid "Custom Fields"
1024
  msgstr "Eigene Felder"
1025
 
1026
- #: inc/post-types.php:719
1027
  msgid ""
1028
  "Adds the custom fields meta box when creating content for this custom post "
1029
  "type"
@@ -1031,33 +1214,33 @@ msgstr ""
1031
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1032
  "Type erstellt werden"
1033
 
1034
- #: inc/post-types.php:733
1035
  msgid "Comments"
1036
  msgstr "Kommentare"
1037
 
1038
- #: inc/post-types.php:734
1039
  msgid ""
1040
  "Adds the comments meta box when creating content for this custom post type"
1041
  msgstr ""
1042
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1043
  "Type erstellt werden"
1044
 
1045
- #: inc/post-types.php:748
1046
  msgid "Revisions"
1047
  msgstr "Revisionen"
1048
 
1049
- #: inc/post-types.php:749
1050
  msgid ""
1051
  "Adds the revisions meta box when creating content for this custom post type"
1052
  msgstr ""
1053
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1054
  "Type erstellt werden"
1055
 
1056
- #: inc/post-types.php:763
1057
  msgid "Featured Image"
1058
  msgstr "Beitragsbild"
1059
 
1060
- #: inc/post-types.php:764
1061
  msgid ""
1062
  "Adds the featured image meta box when creating content for this custom post "
1063
  "type"
@@ -1065,22 +1248,22 @@ msgstr ""
1065
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1066
  "Type erstellt werden"
1067
 
1068
- #: inc/post-types.php:778
1069
  msgid "Author"
1070
  msgstr "Autor"
1071
 
1072
- #: inc/post-types.php:779
1073
  msgid ""
1074
  "Adds the author meta box when creating content for this custom post type"
1075
  msgstr ""
1076
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1077
  "erstellt werden"
1078
 
1079
- #: inc/post-types.php:793
1080
  msgid "Page Attributes"
1081
  msgstr "Seiten Attribute"
1082
 
1083
- #: inc/post-types.php:794
1084
  msgid ""
1085
  "Adds the page attribute meta box when creating content for this custom post "
1086
  "type"
@@ -1088,77 +1271,77 @@ msgstr ""
1088
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1089
  "Post Type erstellt werden"
1090
 
1091
- #: inc/post-types.php:808
1092
  msgid "Post Formats"
1093
  msgstr "Format"
1094
 
1095
- #: inc/post-types.php:809
1096
  msgid "Adds post format support"
1097
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1098
 
1099
- #: inc/post-types.php:814
1100
  msgid "Use the option below to explicitly set \"supports\" to false."
1101
  msgstr ""
1102
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1103
  "zu deaktivieren."
1104
 
1105
- #: inc/post-types.php:822
1106
  msgid "None"
1107
  msgstr "Keine"
1108
 
1109
- #: inc/post-types.php:823
1110
  msgid "Remove all support features"
1111
  msgstr "Entfernt alle „Unterstützt“-Features"
1112
 
1113
- #: inc/post-types.php:829
1114
  msgid "Custom \"Supports\""
1115
  msgstr "Benutzerdefinierte „Unterstützt“"
1116
 
1117
- #: inc/post-types.php:830
1118
  msgid ""
1119
  "Use this input to register custom \"supports\" values, separated by commas."
1120
  msgstr ""
1121
  "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1122
  "definieren welche durch Kommas getrennt sind."
1123
 
1124
- #: inc/post-types.php:836
1125
  msgid "Provide custom support slugs here."
1126
  msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1127
 
1128
- #: inc/post-types.php:842
1129
  msgid "Built-in Taxonomies"
1130
  msgstr "Vorhandene Taxonomien"
1131
 
1132
- #: inc/post-types.php:871 inc/taxonomies.php:172
1133
  #, php-format
1134
  msgid "Adds %s support"
1135
  msgstr "Fügt %s Unterstützung hinzu"
1136
 
1137
- #: inc/post-types.php:977
1138
  msgid "Please provide a post type to delete"
1139
  msgstr "Bitte gib einen Post Type zum Löschen an"
1140
 
1141
- #: inc/post-types.php:1037
1142
  msgid "Please provide a post type name"
1143
  msgstr "Bitte gib einen Namen für den Post Type an"
1144
 
1145
- #: inc/post-types.php:1061
1146
  msgid "Please do not use quotes in post type names or rewrite slugs"
1147
  msgstr ""
1148
  "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1149
  "Kurzlinks"
1150
 
1151
- #: inc/post-types.php:1068
1152
  #, php-format
1153
  msgid "Please choose a different post type name. %s is already registered."
1154
  msgstr ""
1155
  "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1156
 
1157
- #: inc/support.php:41
1158
  msgid "Custom Post Type UI Support"
1159
  msgstr "Custom Post Type UI Support"
1160
 
1161
- #: inc/support.php:43
1162
  #, php-format
1163
  msgid ""
1164
  "Please note that this plugin will NOT handle display of registered post "
@@ -1170,15 +1353,28 @@ msgstr ""
1170
  "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1171
  "unsere %s"
1172
 
1173
- #: inc/support.php:44
1174
  msgid "Support Forums"
1175
  msgstr "Support Foren"
1176
 
1177
- #: inc/support.php:50
1178
  msgid "General"
1179
  msgstr "Allgemein"
1180
 
1181
- #: inc/support.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
1182
  msgid ""
1183
  "I changed my custom post type name and now I can not get to my posts. How do "
1184
  "I get them back?"
@@ -1186,7 +1382,7 @@ msgstr ""
1186
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1187
  "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1188
 
1189
- #: inc/support.php:54
1190
  msgid ""
1191
  "You can either change the custom post type name back to the original name or "
1192
  "try the Post Type Switcher plugin"
@@ -1194,7 +1390,7 @@ msgstr ""
1194
  "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1195
  "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1196
 
1197
- #: inc/support.php:59
1198
  msgid ""
1199
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1200
  "shown. How do I remove the duplicate?"
@@ -1202,7 +1398,7 @@ msgstr ""
1202
  "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1203
  "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1204
 
1205
- #: inc/support.php:60
1206
  msgid ""
1207
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1208
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1214,7 +1410,7 @@ msgstr ""
1214
  "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1215
  "ursprünglichen Eintrag löschen."
1216
 
1217
- #: inc/support.php:63
1218
  msgid ""
1219
  "I have added post thumbnail and/or post format support to my post type, but "
1220
  "those do not appear when adding a post type post."
@@ -1223,24 +1419,44 @@ msgstr ""
1223
  "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1224
  "mit diesem Post Type hinzufüge."
1225
 
1226
- #: inc/support.php:64
1227
  msgid ""
1228
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1229
  msgstr ""
1230
  "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1231
  "Thumbnails\" aktiviert hat"
1232
 
1233
- #: inc/support.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1234
  msgid "Front-end Display"
1235
  msgstr "Front-End Anzeige"
1236
 
1237
- #: inc/support.php:72
1238
  msgid "What template files should I edit to alter my post type display?"
1239
  msgstr ""
1240
  "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1241
  "Types zu verändern?"
1242
 
1243
- #: inc/support.php:73
1244
  #, php-format
1245
  msgid ""
1246
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
@@ -1249,12 +1465,12 @@ msgstr ""
1249
  "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1250
  "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1251
 
1252
- #: inc/support.php:80
1253
  msgid "How do I display my custom post type on my site?"
1254
  msgstr ""
1255
  "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1256
 
1257
- #: inc/support.php:81
1258
  #, php-format
1259
  msgid ""
1260
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1266,7 +1482,7 @@ msgstr ""
1266
  "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1267
  "\" lauten."
1268
 
1269
- #: inc/support.php:87
1270
  msgid ""
1271
  "I have added categories and tags to my custom post type, but they do not "
1272
  "appear in the archives."
@@ -1274,7 +1490,7 @@ msgstr ""
1274
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1275
  "sie werden nicht in den Archiven angezeigt."
1276
 
1277
- #: inc/support.php:88
1278
  #, php-format
1279
  msgid ""
1280
  "You will need to add your newly created post type to the types that the "
@@ -1285,15 +1501,15 @@ msgstr ""
1285
  "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1286
  "Tutorial dazu unter %s"
1287
 
1288
- #: inc/support.php:97
1289
  msgid "Advanced"
1290
  msgstr "Erweitert"
1291
 
1292
- #: inc/support.php:100
1293
  msgid "How do I add custom metaboxes to my post type?"
1294
  msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
1295
 
1296
- #: inc/support.php:102
1297
  #, php-format
1298
  msgid ""
1299
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
@@ -1302,25 +1518,25 @@ msgstr ""
1302
  "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1303
  "WordPress\". Beides wird von den WebDevStudios entwickelt."
1304
 
1305
- #: inc/support.php:108
1306
  msgid ""
1307
  "How do I add a newly registered taxonomy to a post type that already exists?"
1308
  msgstr ""
1309
  "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1310
  "bereits existiert?"
1311
 
1312
- #: inc/support.php:110
1313
  #, php-format
1314
  msgid "Check out the %s function for documentation and usage examples."
1315
  msgstr ""
1316
  "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1317
  "Nutzungsbeispielen."
1318
 
1319
- #: inc/support.php:116
1320
  msgid "Post relationships?"
1321
  msgstr "Beitragsbeziehungen?"
1322
 
1323
- #: inc/support.php:117
1324
  #, php-format
1325
  msgid ""
1326
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
@@ -1329,11 +1545,11 @@ msgstr ""
1329
  "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1330
  "%s Plugins veröffentlicht."
1331
 
1332
- #: inc/support.php:126
1333
  msgid "Is there any function reference list?"
1334
  msgstr "Gibt es eine Funktion Referenz-Liste?"
1335
 
1336
- #: inc/support.php:127
1337
  #, php-format
1338
  msgid ""
1339
  "%s has compiled a nice list of functions used by our plugin. Note not all "
@@ -1341,16 +1557,16 @@ msgid ""
1341
  msgstr ""
1342
  "%s hat eine schöne Liste an Funktionen zusammengestellt die von unserem "
1343
  "Plugin benutzt werden. Merke, nicht alle genannten werden hilfreich sein da "
1344
- "sie an Book gekoppelt sind."
1345
 
1346
- #: inc/support.php:131
1347
  msgid ""
1348
  "How do I filter the \"enter title here\" text in the post editor screen?"
1349
  msgstr ""
1350
  "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1351
  "\"-Fenster ändern?"
1352
 
1353
- #: inc/support.php:132
1354
  msgid ""
1355
  "Change text inside the post/page editor title field. Should be able to adapt "
1356
  "as necessary."
@@ -1358,7 +1574,7 @@ msgstr ""
1358
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1359
  "möglich sein dies anzupassen falls notwendig."
1360
 
1361
- #: inc/taxonomies.php:85
1362
  msgid ""
1363
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1364
  "registers a new taxonomy entry for your install."
@@ -1367,15 +1583,15 @@ msgstr ""
1367
  "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1368
  "Eintrag für Deine Installation."
1369
 
1370
- #: inc/taxonomies.php:118
1371
  msgid "Taxonomy Slug"
1372
  msgstr "Taxonomie-Kurzlink"
1373
 
1374
- #: inc/taxonomies.php:119
1375
  msgid "(e.g. actor)"
1376
  msgstr "(z. B. regisseure)"
1377
 
1378
- #: inc/taxonomies.php:120
1379
  msgid ""
1380
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1381
  "and unique"
@@ -1383,44 +1599,51 @@ msgstr ""
1383
  "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1384
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1385
 
1386
- #: inc/taxonomies.php:128 inc/taxonomies.php:210
1387
  msgid "(e.g. Actors)"
1388
  msgstr "(z. B. Regisseure)"
1389
 
1390
- #: inc/taxonomies.php:130
1391
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1392
  msgstr ""
1393
  "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1394
  "benutzerdefinierte Taxonomien anzuzeigen."
1395
 
1396
- #: inc/taxonomies.php:137
1397
  msgid "(e.g. Actor)"
1398
  msgstr "(z. B. Regisseur)"
1399
 
1400
- #: inc/taxonomies.php:139
1401
  msgid ""
1402
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1403
  msgstr ""
1404
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1405
  "Beschriftungen in der Einzahl benötigt werden."
1406
 
1407
- #: inc/taxonomies.php:142
 
 
 
 
 
 
 
1408
  msgid "Attach to Post Type"
1409
  msgstr "Mit Post Type verbinden"
1410
 
1411
- #: inc/taxonomies.php:181
1412
  msgid "Save Taxonomy"
1413
  msgstr "Taxonomie speichern"
1414
 
1415
- #: inc/taxonomies.php:182
1416
  msgid "Delete Taxonomy"
1417
  msgstr "Taxonomie löschen"
1418
 
1419
- #: inc/taxonomies.php:184
1420
  msgid "Add Taxonomy"
1421
  msgstr "Taxonomie hinzufügen"
1422
 
1423
- #: inc/taxonomies.php:193
1424
  #, php-format
1425
  msgid ""
1426
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1431,7 +1654,7 @@ msgstr ""
1431
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1432
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1433
 
1434
- #: inc/taxonomies.php:194
1435
  #, php-format
1436
  msgid ""
1437
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1448,7 +1671,7 @@ msgstr ""
1448
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1449
  "roten Fragezeichen."
1450
 
1451
- #: inc/taxonomies.php:195
1452
  #, php-format
1453
  msgid ""
1454
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1463,180 +1686,184 @@ msgstr ""
1463
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1464
  "Begriffe nicht in der Datenbank aktualisiert."
1465
 
1466
- #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1467
- #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1468
- #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1469
- #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1470
- #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1471
  msgid ""
1472
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1473
  msgstr ""
1474
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1475
  "Anzeige von Taxonomien verwendet."
1476
 
1477
- #: inc/taxonomies.php:219
1478
  msgid "(e.g. All Actors)"
1479
  msgstr "(z. B. Alle Regisseure)"
1480
 
1481
- #: inc/taxonomies.php:228
1482
  msgid "(e.g. Edit Actor)"
1483
  msgstr "(z. B. Regisseur bearbeiten)"
1484
 
1485
- #: inc/taxonomies.php:237
1486
  msgid "(e.g. View Actor)"
1487
  msgstr "(z. B. Regisseur anzeigen)"
1488
 
1489
- #: inc/taxonomies.php:246
1490
  msgid "(e.g. Update Actor Name)"
1491
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1492
 
1493
- #: inc/taxonomies.php:247
1494
  msgid "Update Item Name"
1495
  msgstr "Eintragsname aktualisieren"
1496
 
1497
- #: inc/taxonomies.php:255
1498
  msgid "(e.g. Add New Actor)"
1499
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1500
 
1501
- #: inc/taxonomies.php:264
1502
  msgid "(e.g. New Actor Name)"
1503
  msgstr "(z. B. Neuer Regisseursname)"
1504
 
1505
- #: inc/taxonomies.php:265
1506
  msgid "New Item Name"
1507
  msgstr "Neuer Eintragsname"
1508
 
1509
- #: inc/taxonomies.php:273
1510
  msgid "(e.g. Parent Actor)"
1511
  msgstr "(z. B. Übergeordneter Regisseur)"
1512
 
1513
- #: inc/taxonomies.php:274
1514
  msgid "Parent Item"
1515
  msgstr "Übergeordneter Eintrag"
1516
 
1517
- #: inc/taxonomies.php:282
1518
  msgid "(e.g. Parent Actor:)"
1519
  msgstr "(z. B. Übergeordneter Regisseur:)"
1520
 
1521
- #: inc/taxonomies.php:283
1522
  msgid "Parent Item Colon"
1523
  msgstr "Übergeordneter Eintrag Komma"
1524
 
1525
- #: inc/taxonomies.php:291
1526
  msgid "(e.g. Search Actors)"
1527
  msgstr "(z. B. Regisseure durchsuchen)"
1528
 
1529
- #: inc/taxonomies.php:292
1530
  msgid "Search Items"
1531
  msgstr "Einträge durchsuchen"
1532
 
1533
- #: inc/taxonomies.php:300
1534
  msgid "(e.g. Popular Actors)"
1535
  msgstr "(z. B. beliebte Regisseure)"
1536
 
1537
- #: inc/taxonomies.php:301
1538
  msgid "Popular Items"
1539
  msgstr "Beliebte Einträge"
1540
 
1541
- #: inc/taxonomies.php:309
1542
- msgid "(e.g. Separate actors with commas)"
 
1543
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1544
 
1545
- #: inc/taxonomies.php:310
1546
  msgid "Separate Items with Commas"
1547
  msgstr "Trenne Einträge mittels Komma"
1548
 
1549
- #: inc/taxonomies.php:318
1550
- msgid "(e.g. Add or remove actors)"
 
1551
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1552
 
1553
- #: inc/taxonomies.php:319
1554
  msgid "Add or Remove Items"
1555
  msgstr "Lösche oder füge Einträge hinzu"
1556
 
1557
- #: inc/taxonomies.php:327
1558
- msgid "(e.g. Choose from the most used actors)"
 
1559
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1560
 
1561
- #: inc/taxonomies.php:328
1562
  msgid "Choose From Most Used"
1563
  msgstr "Wähle aus den am meisten Verwendeten"
1564
 
1565
- #: inc/taxonomies.php:336
1566
- msgid "(e.g. No actors found)"
 
1567
  msgstr "(z. B. Keine Regisseure gefunden)"
1568
 
1569
- #: inc/taxonomies.php:337
1570
  msgid "Not found"
1571
  msgstr "Nicht gefunden"
1572
 
1573
- #: inc/taxonomies.php:360
1574
  msgid "Whether the taxonomy can have parent-child relationships"
1575
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1576
 
1577
- #: inc/taxonomies.php:377
1578
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1579
  msgstr ""
1580
  "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1581
  "benutzerdefinierten Taxonomie erstellt werden soll."
1582
 
1583
- #: inc/taxonomies.php:394
1584
  msgid "Sets the query_var key for this taxonomy."
1585
  msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1586
 
1587
- #: inc/taxonomies.php:402
1588
- msgid "(default: none). Query Var needs to be true to use."
1589
  msgstr ""
1590
- "(Voreinstellung: Keine - Abfrage Variable muss aktiviert sein um es benutzen "
1591
- "zu können)"
1592
 
1593
- #: inc/taxonomies.php:403
1594
  msgid "Custom Query Var String"
1595
  msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1596
 
1597
- #: inc/taxonomies.php:404
1598
  msgid "Sets a custom query_var slug for this taxonomy."
1599
  msgstr ""
1600
- "Definiere einen benutzerdefinierten Abfrage Variablen-Kurzlink für diese "
1601
  "Taxonomie."
1602
 
1603
- #: inc/taxonomies.php:420
1604
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1605
  msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1606
 
1607
- #: inc/taxonomies.php:428
1608
  msgid "(default: taxonomy name)"
1609
  msgstr "(Voreinstellung: Taxanomie Name)"
1610
 
1611
- #: inc/taxonomies.php:430
1612
  msgid "Custom taxonomy rewrite slug."
1613
  msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1614
 
1615
- #: inc/taxonomies.php:444
1616
  msgid "Rewrite With Front"
1617
  msgstr "Rewrite mit vorangestellter Front Base"
1618
 
1619
- #: inc/taxonomies.php:445
1620
  msgid "(default: true)"
1621
  msgstr "(Voreinstellung: aktiviert)"
1622
 
1623
- #: inc/taxonomies.php:461
1624
  msgid "Rewrite Hierarchical"
1625
  msgstr "Hierarchischer Rewrite"
1626
 
1627
- #: inc/taxonomies.php:462
1628
  msgid "(default: false)"
1629
  msgstr "(Voreinstellung: deaktiviert)"
1630
 
1631
- #: inc/taxonomies.php:463
1632
  msgid "Should the permastruct allow hierarchical urls."
1633
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1634
 
1635
- #: inc/taxonomies.php:478
1636
  msgid "Show Admin Column"
1637
  msgstr "Anzeige von Admin-Spalten"
1638
 
1639
- #: inc/taxonomies.php:480
1640
  msgid ""
1641
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1642
  "types."
@@ -1644,21 +1871,27 @@ msgstr ""
1644
  "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1645
  "Post Types erlaubt werden."
1646
 
1647
- #: inc/taxonomies.php:585
 
 
 
 
 
 
1648
  msgid "Please provide a taxonomy to delete"
1649
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1650
 
1651
- #: inc/taxonomies.php:636
1652
  msgid "Please provide a taxonomy name"
1653
  msgstr "Gib bitte einen Taxonomie-Namen an"
1654
 
1655
- #: inc/taxonomies.php:652
1656
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1657
  msgstr ""
1658
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1659
  "Kurzlinks"
1660
 
1661
- #: inc/taxonomies.php:658
1662
  #, php-format
1663
  msgid "Please choose a different taxonomy name. %s is already used."
1664
  msgstr ""
@@ -1683,6 +1916,49 @@ msgstr "WebDevStudios"
1683
  msgid "http://webdevstudios.com/"
1684
  msgstr "http://webdevstudios.com/"
1685
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1686
  #~ msgid "Whether posts of this type should be shown in the admin UI"
1687
  #~ msgstr ""
1688
  #~ "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
@@ -1785,9 +2061,6 @@ msgstr "http://webdevstudios.com/"
1785
  #~ "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
1786
  #~ "benutzerdefinierten Taxonomien erstellt werden"
1787
 
1788
- #~ msgid "Custom Query Var Slug"
1789
- #~ msgstr "Benutzerdefinierter Query Var-Kurzlink"
1790
-
1791
  #~ msgid "Triggers the handling of rewrites for this taxonomy"
1792
  #~ msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
1793
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.2\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-post-type-"
5
  "ui\n"
6
+ "POT-Creation-Date: 2015-12-13 00:08-0600\n"
7
+ "PO-Revision-Date: 2015-12-13 00:09-0600\n"
8
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
10
  "koller@gmail.com>\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.6\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
24
  "X-Poedit-SearchPathExcluded-0: tests\n"
25
  "X-Poedit-SearchPathExcluded-1: *.js\n"
26
 
27
+ #: classes/class.cptui_debug_info.php:7
28
+ msgid ""
29
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
30
+ "requested to send the information below to the plugin developer. Simply "
31
+ "insert the email they provided in the input field at the bottom and click "
32
+ "the \"Send debug info\" button. Only the data below will be sent to them."
33
+ msgstr ""
34
+
35
+ #: classes/class.cptui_debug_info.php:186
36
+ #, php-format
37
+ msgid "CPTUI debug information for %s"
38
+ msgstr ""
39
+
40
+ #: custom-post-type-ui.php:61
41
  msgid "Custom Post Types"
42
  msgstr "Custom Post Types"
43
 
44
+ #: custom-post-type-ui.php:61
45
  msgid "CPT UI"
46
  msgstr "CPT UI"
47
 
48
+ #: custom-post-type-ui.php:62 inc/listings.php:155
49
  msgid "Add/Edit Post Types"
50
  msgstr "Post Types hinzufügen/editieren"
51
 
52
+ #: custom-post-type-ui.php:63 inc/listings.php:287
53
  msgid "Add/Edit Taxonomies"
54
  msgstr "Taxonomien hinzufügen/editieren"
55
 
56
+ #: custom-post-type-ui.php:64
57
  msgid "Registered Types and Taxes"
58
  msgstr "Registrierte Post Types und Taxonomien"
59
 
60
+ #: custom-post-type-ui.php:64
61
  msgid "Registered Types/Taxes"
62
  msgstr "Registrierte Post Types/Taxonomien"
63
 
64
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
65
  msgid "Import/Export"
66
  msgstr "Import/Export"
67
 
68
+ #: custom-post-type-ui.php:66
69
  msgid "Help/Support"
70
  msgstr "Hilfe/Support"
71
 
72
+ #: custom-post-type-ui.php:70
73
  msgid "About CPT UI"
74
  msgstr "Über CPT UI"
75
 
76
  #. Plugin Name of the plugin/theme
77
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
78
  msgid "Custom Post Type UI"
79
  msgstr "Custom Post Type UI"
80
 
81
+ #: custom-post-type-ui.php:385
82
  msgid ""
83
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
84
  "with our plugin provides efficiency and speed in creating post types and "
86
  msgstr ""
87
  "Danke dass Du Dich für Custom Post Type UI entschieden hast. Wir hoffen, "
88
  "dass Du mit Hilfe unseres Plugins auf eine einfache und schnelle Weise neue "
89
+ "Post Types und Taxonomien erstellen kannst sowie Deine Inhalte besser "
90
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
91
 
92
+ #: custom-post-type-ui.php:387
93
+ #, php-format
94
+ msgid "What's new in version %s"
95
+ msgstr ""
96
 
97
+ #: custom-post-type-ui.php:392
98
+ msgid "Updated internationalization"
99
+ msgstr ""
100
+
101
+ #: custom-post-type-ui.php:393
102
  msgid ""
103
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
104
+ "to help aid in translating Custom Post Type UI"
 
 
105
  msgstr ""
 
 
 
 
 
106
 
107
+ #: custom-post-type-ui.php:396
108
+ msgid "Debugging information"
109
+ msgstr ""
110
 
111
+ #: custom-post-type-ui.php:397
112
  msgid ""
113
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
114
+ "debugging issues with Custom Post Type UI."
 
115
  msgstr ""
 
 
 
 
116
 
117
+ #: custom-post-type-ui.php:400
118
+ msgid "Improved accessibility"
119
+ msgstr ""
120
 
121
+ #: custom-post-type-ui.php:401
122
  msgid ""
123
+ "A lot of work was done in the areas of accessibility to help aid users who "
124
+ "need it. If you have feedback on where it could be further improved, let us "
125
+ "know."
126
  msgstr ""
 
 
127
 
128
+ #: custom-post-type-ui.php:404
129
+ msgid "WP REST API support"
130
+ msgstr ""
131
+
132
+ #: custom-post-type-ui.php:405
133
+ msgid ""
134
+ "We now have support for the required fields for the WP REST API. Now you can "
135
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
136
+ "API lists."
137
+ msgstr ""
138
+
139
+ #: custom-post-type-ui.php:408
140
+ msgid "More parameter support"
141
+ msgstr ""
142
+
143
+ #: custom-post-type-ui.php:409
144
+ msgid ""
145
+ "We have added more parameters for greater customization of your post type "
146
+ "and taxonomy settings."
147
+ msgstr ""
148
+
149
+ #: custom-post-type-ui.php:412
150
+ msgid "New individual \"Get Code\" sections"
151
+ msgstr ""
152
+
153
+ #: custom-post-type-ui.php:413
154
+ msgid ""
155
+ "The \"Get Code\" area now has support for copy/paste of individual post "
156
+ "types and taxonomies."
157
+ msgstr ""
158
+
159
+ #: custom-post-type-ui.php:416
160
+ #, fuzzy
161
+ msgid "Template hierarchy reference"
162
+ msgstr "Hierarchischer Rewrite"
163
+
164
+ #: custom-post-type-ui.php:417
165
+ msgid ""
166
+ "To help aid your development with post types and taxonomies, we have added a "
167
+ "quick reference list of common template files you can use in your theme. "
168
+ "They will be listed on the \"Registered Types/Taxes\" screen."
169
+ msgstr ""
170
+
171
+ #: custom-post-type-ui.php:422
172
  msgid "Help Support This Plugin!"
173
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
174
 
175
+ #: custom-post-type-ui.php:426
176
  msgid "Professional WordPress<br />Third Edition"
177
  msgstr "Professional WordPress<br />(Dritte Auflage)"
178
 
179
+ #: custom-post-type-ui.php:428
180
+ #, fuzzy
181
+ msgid "Professional WordPress Design and Development book cover."
182
+ msgstr "Professional WordPress<br />Plugin Development"
183
+
184
+ #: custom-post-type-ui.php:431
185
  msgid ""
186
  "The leading book on WordPress design and development! Brand new third "
187
  "edition!"
189
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
190
  "Auflage!"
191
 
192
+ #: custom-post-type-ui.php:434
193
  msgid "Professional WordPress<br />Plugin Development"
194
  msgstr "Professional WordPress<br />Plugin Development"
195
 
196
+ #: custom-post-type-ui.php:436
197
+ #, fuzzy
198
+ msgid "Professional WordPress Pluing Development book cover."
199
+ msgstr "Professional WordPress<br />Plugin Development"
200
+
201
+ #: custom-post-type-ui.php:439
202
  msgid "Highest rated WordPress development book on Amazon!"
203
  msgstr ""
204
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
205
  "Amazon!"
206
 
207
+ #: custom-post-type-ui.php:442
208
  msgid "PayPal Donation"
209
  msgstr "PayPal Spende"
210
 
211
+ #: custom-post-type-ui.php:446
212
  msgid "PayPal - The safer, easier way to pay online!"
213
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
214
 
215
+ #: custom-post-type-ui.php:449
216
  msgid "Please donate to the development of Custom Post Type UI:"
217
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
218
 
219
+ #: custom-post-type-ui.php:475
220
  #, php-format
221
  msgid "%s version %s by %s"
222
  msgstr "%s Version %s von den %s"
223
 
224
+ #: custom-post-type-ui.php:486
225
  msgid "Please Report Bugs"
226
  msgstr "Bitte Fehler melden"
227
 
228
+ #: custom-post-type-ui.php:489
229
  msgid "Follow on Twitter:"
230
  msgstr "Auf Twitter folgen:"
231
 
232
+ #: custom-post-type-ui.php:553
233
  msgid "Manage Taxonomies"
234
  msgstr "Verwalte Taxonomien"
235
 
236
+ #: custom-post-type-ui.php:557
237
  msgid "Manage Post Types"
238
  msgstr "Verwalte Post Types"
239
 
240
+ #: custom-post-type-ui.php:585
241
  msgid "Add New Post Type"
242
  msgstr "Neuen Post Type hinzufügen"
243
 
244
+ #: custom-post-type-ui.php:588
245
  msgid "Edit Post Types"
246
  msgstr "Post Types bearbeiten"
247
 
248
+ #: custom-post-type-ui.php:592
249
  msgid "Add New Taxonomy"
250
  msgstr "Neue Taxonomie hinzufügen"
251
 
252
+ #: custom-post-type-ui.php:595
253
  msgid "Edit Taxonomies"
254
  msgstr "Taxonomien bearbeiten"
255
 
256
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
 
257
  msgid "Post Types"
258
  msgstr "Post Types"
259
 
260
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
261
+ #: inc/listings.php:161
262
  msgid "Taxonomies"
263
  msgstr "Taxonomien"
264
 
265
+ #: custom-post-type-ui.php:601
266
  msgid "Get Code"
267
  msgstr "Code erhalten"
268
 
269
+ #: custom-post-type-ui.php:602
270
+ msgid "Debug Info"
271
+ msgstr ""
272
+
273
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
274
+ #: inc/post-types.php:420 inc/taxonomies.php:402
275
  msgid "Settings"
276
  msgstr "Einstellungen"
277
 
278
+ #: custom-post-type-ui.php:685
279
  msgid "Help"
280
  msgstr "Hilfe"
281
 
282
+ #: custom-post-type-ui.php:714
283
  #, php-format
284
  msgid "%s has been successfully added"
285
  msgstr "%s wurde erfolgreich hinzugefügt"
286
 
287
+ #: custom-post-type-ui.php:716
288
  #, php-format
289
  msgid "%s has failed to be added"
290
  msgstr "%s konnte nicht hinzugefügt werden"
291
 
292
+ #: custom-post-type-ui.php:720
293
  #, php-format
294
  msgid "%s has been successfully updated"
295
  msgstr "%s wurde erfolgreich aktualisiert"
296
 
297
+ #: custom-post-type-ui.php:722
298
  #, php-format
299
  msgid "%s has failed to be updated"
300
  msgstr "%s konnte nicht aktualisiert werden"
301
 
302
+ #: custom-post-type-ui.php:726
303
  #, php-format
304
  msgid "%s has been successfully deleted"
305
  msgstr "%s wurde erfolgreich gelöscht"
306
 
307
+ #: custom-post-type-ui.php:728
308
  #, php-format
309
  msgid "%s has failed to be deleted"
310
  msgstr "%s konnte nicht gelöscht werden"
311
 
312
+ #: custom-post-type-ui.php:732
313
  #, php-format
314
  msgid "%s has been successfully imported"
315
  msgstr "%s wurde erfolgreich importiert"
316
 
317
+ #: custom-post-type-ui.php:734
318
  #, php-format
319
  msgid "%s has failed to be imported"
320
  msgstr "%s konnte nicht importiert werden"
321
 
322
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
323
  #, php-format
324
  msgid "Add new %s"
325
  msgstr "Neue %s hinzufügen"
326
 
327
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
328
+ #: inc/listings.php:220
329
  #, php-format
330
  msgid "Edit %s"
331
  msgstr "%s bearbeiten"
332
 
333
+ #: custom-post-type-ui.php:819
334
  #, php-format
335
  msgid "New %s"
336
  msgstr "%s hinzufügen"
337
 
338
+ #: custom-post-type-ui.php:820
339
  #, php-format
340
  msgid "View %s"
341
  msgstr "%s anzeigen"
342
 
343
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
344
  #, php-format
345
  msgid "All %s"
346
  msgstr "Alle %s"
347
 
348
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
349
  #, php-format
350
  msgid "Search %s"
351
  msgstr "%s durchsuchen"
352
 
353
+ #: custom-post-type-ui.php:823
354
  #, php-format
355
  msgid "No %s found."
356
  msgstr "Keine %s gefunden."
357
 
358
+ #: custom-post-type-ui.php:824
359
  #, php-format
360
  msgid "No %s found in trash."
361
  msgstr "Keine %s im Papierkorb gefunden."
362
 
363
+ #: custom-post-type-ui.php:828
364
  #, php-format
365
  msgid "Popular %s"
366
  msgstr "Beliebte %s"
367
 
368
+ #: custom-post-type-ui.php:830
369
  #, php-format
370
  msgid "Parent %s"
371
  msgstr "Übergeordnet %s"
372
 
373
+ #: custom-post-type-ui.php:831
374
  #, php-format
375
  msgid "Parent %s:"
376
  msgstr "Übergeordnet %s:"
377
 
378
+ #: custom-post-type-ui.php:833
379
  #, php-format
380
  msgid "Update %s"
381
  msgstr "%s aktualisieren"
382
 
383
+ #: custom-post-type-ui.php:835
384
  #, php-format
385
  msgid "New %s name"
386
  msgstr "Neuer %s Name"
387
 
388
+ #: custom-post-type-ui.php:836
389
  #, php-format
390
  msgid "Separate %s with commas"
391
  msgstr "%s mit Kommas trennen"
392
 
393
+ #: custom-post-type-ui.php:837
394
  #, php-format
395
  msgid "Add or remove %s"
396
  msgstr "%s hinzufügen oder entfernen"
397
 
398
+ #: custom-post-type-ui.php:838
399
  #, php-format
400
  msgid "Choose from the most used %s"
401
  msgstr "Aus den am häufigsten verwendeten %s auswählen"
402
 
403
+ #: inc/import_export.php:77
404
+ msgid "No taxonomies to display at this time"
405
+ msgstr "Es gibt keine Taxonomien zum Anzeigen."
406
+
407
+ #: inc/import_export.php:184
408
+ msgid "No post types to display at this time"
409
+ msgstr "Es gibt keine Post Types zum Anzeigen."
410
+
411
+ #: inc/import_export.php:372
412
+ msgid "Post types"
413
+ msgstr "Post Types"
414
+
415
+ #: inc/import_export.php:404
416
  msgid ""
417
  "If you are wanting to migrate registered post types or taxonomies from this "
418
  "site to another, that will also use Custom Post Type UI, use the import and "
425
  "Rücken zukehren wollen dann folge bitte den Informationen im \"Code "
426
  "erhalten“-Reiter."
427
 
428
+ #: inc/import_export.php:407
429
  msgid "NOTE"
430
  msgstr "Anmerkung"
431
 
432
+ #: inc/import_export.php:408
433
+ #, fuzzy
434
+ msgid ""
435
+ "This will not export the associated posts or taxonomy terms, just the "
436
+ "settings."
437
  msgstr ""
438
  "Es werden nur die Einstellungen exportiert, nicht die dazugehörigen Beiträge."
439
 
440
+ #: inc/import_export.php:415
441
  msgid "Import Post Types"
442
  msgstr "Post Types importieren"
443
 
444
+ #: inc/import_export.php:419 inc/import_export.php:459
445
  msgid "Paste content here."
446
  msgstr "Inhalt hier einfügen."
447
 
448
+ #: inc/import_export.php:422 inc/import_export.php:462
449
  msgid "Note:"
450
  msgstr "Anmerkung:"
451
 
452
+ #: inc/import_export.php:422 inc/import_export.php:462
453
  msgid "Importing will overwrite previous registered settings."
454
  msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
455
 
456
+ #: inc/import_export.php:426
457
  msgid ""
458
  "To import post types from a different WordPress site, paste the exported "
459
  "content from that site and click the \"Import\" button."
461
  "Um die Post Types einer anderen WordPress-Seite zu importieren, füge deren "
462
  "exportierte Inhalte ein und klicke den \"Importieren“-Button."
463
 
464
+ #: inc/import_export.php:430 inc/import_export.php:470
465
  msgid "Import"
466
  msgstr "Importieren"
467
 
468
+ #: inc/import_export.php:435
469
  msgid "Export Post Types"
470
  msgstr "Post Types exportieren"
471
 
472
+ #: inc/import_export.php:442
473
  msgid "No post types registered yet."
474
  msgstr "Es wurden noch keine Post Types erstellt."
475
 
476
+ #: inc/import_export.php:445 inc/import_export.php:485
477
  msgid ""
478
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
479
  "(Mac)."
481
  "Um die System-Informationen zu kopieren, klicke unten und drücken dann Ctrl "
482
  "+ C am PC oder Cmd + C am Mac."
483
 
484
+ #: inc/import_export.php:448
485
  msgid ""
486
  "Use the content above to import current post types into a different "
487
  "WordPress site. You can also use this to simply back up your post type "
491
  "Post Types in eine andere WordPress Webseite zu importieren. Du kannst dies "
492
  "ebenso einfach dazu benutzen um Deine Post Type-Einstellungen zu sichern."
493
 
494
+ #: inc/import_export.php:455
495
  msgid "Import Taxonomies"
496
  msgstr "Taxonomien importieren"
497
 
498
+ #: inc/import_export.php:466
499
  msgid ""
500
  "To import taxonomies from a different WordPress site, paste the exported "
501
  "content from that site and click the \"Import\" button."
504
  "die Zwischenablage die exportierten Inhalte dieser Seite ein und klicke den "
505
  "\"Importieren“-Button."
506
 
507
+ #: inc/import_export.php:475
508
  msgid "Export Taxonomies"
509
  msgstr "Taxonomien exportieren"
510
 
511
+ #: inc/import_export.php:482
512
  msgid "No taxonomies registered yet."
513
  msgstr "Es wurden noch keine Taxonomien definiert."
514
 
515
+ #: inc/import_export.php:488
516
  msgid ""
517
  "Use the content above to import current taxonomies into a different "
518
  "WordPress site. You can also use this to simply back up your taxonomy "
522
  "Taxonomien in eine andere WordPress Webseite zu importieren. Du kannst dies "
523
  "ebenso einfach dazu benutzen um Deine Taxonomie-Einstellungen zu sichern."
524
 
525
+ #: inc/import_export.php:499
526
  msgid "Get Post Type and Taxonomy Code"
527
  msgstr "Erhalte Post Type- und Taxonomie-Code"
528
 
529
+ #: inc/import_export.php:501
530
  msgid "All CPT UI Post Types"
531
  msgstr "Alle CPT UI-Post Types"
532
 
533
+ #: inc/import_export.php:504 inc/import_export.php:513
534
+ #: inc/import_export.php:521 inc/import_export.php:530
535
  msgid "Copy/paste the code below into your functions.php file."
536
  msgstr ""
537
  "Kopiere den Code in die Zwischenablage und füge ihn im Anschluss in Deine "
538
  "functions.php-Datei ein."
539
 
540
+ #: inc/import_export.php:512
541
+ #, php-format
542
+ msgid "%s Post Type"
543
+ msgstr "%s Post Type"
544
+
545
+ #: inc/import_export.php:518
546
  msgid "All CPT UI Taxonomies"
547
  msgstr "Alle CPT UI-Taxonomien"
548
 
549
+ #: inc/import_export.php:529
550
+ #, php-format
551
+ msgid "%s Taxonomy"
552
+ msgstr "%s Taxonomie"
553
 
554
+ #: inc/import_export.php:549
555
+ msgid "Please provide an email address to send debug information to: "
556
+ msgstr ""
557
 
558
+ #: inc/import_export.php:551
559
+ msgid "Send debug info"
560
+ msgstr ""
561
 
562
  #: inc/listings.php:10
563
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
564
  msgstr "In Custom Post Type UI registrierte Post Types und Taxonomien."
565
 
566
+ #: inc/listings.php:16 inc/listings.php:164
567
  #, php-format
568
  msgid "Total count: %d"
569
  msgstr "Anzahl: %d"
570
 
571
+ #: inc/listings.php:21
572
  msgid "Post Type"
573
  msgstr "Post Type"
574
 
575
+ #: inc/listings.php:23 inc/post-types.php:754
576
  msgid "Supports"
577
  msgstr "Unterstützt"
578
 
579
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
580
+ #: inc/taxonomies.php:260
581
  msgid "Labels"
582
  msgstr "Beschriftungen"
583
 
584
+ #: inc/listings.php:26 inc/listings.php:173
585
+ #, fuzzy
586
+ msgid "Template Hierarchy"
587
+ msgstr "Hierarchischer Rewrite"
588
 
589
+ #: inc/listings.php:81
590
  msgid "View frontend archive"
591
  msgstr "Frontend-Archiv anzeigen"
592
 
593
+ #: inc/listings.php:114 inc/listings.php:249
594
  msgid "No custom labels to display"
595
  msgstr "Keine benutzerdefinierten Beschriftungen zum Anzeigen"
596
 
597
+ #: inc/listings.php:119
598
+ msgid "Archives file name examples."
599
+ msgstr ""
600
+
601
+ #: inc/listings.php:125
602
+ msgid "Single Posts file name examples."
603
+ msgstr ""
604
+
605
+ #: inc/listings.php:134 inc/listings.php:267
606
+ msgid "Template hierarchy Theme Handbook"
607
+ msgstr ""
608
+
609
+ #: inc/listings.php:152
610
+ #, php-format
611
+ msgid "No post types registered for display. Visit %s to get started."
612
+ msgstr ""
613
+ "Es wurden noch keine Post Types für die Darstellung erstellt. Besuche %s um "
614
+ "jetzt damit zu beginnen."
615
+
616
+ #: inc/listings.php:169
617
  msgid "Taxonomy"
618
  msgstr "Taxonomie"
619
 
620
+ #: inc/listings.php:254
621
+ #, fuzzy
622
+ msgid "Archives"
623
+ msgstr ""
624
+ "Sie müssen Ihren neu erstellten Post Type zu der Gruppe hinzufügen nach der "
625
+ "die Kategorie- und Ettiketten-Archive durchsucht werden. Sie finden ein "
626
+ "Tutorial dazu unter %s"
627
+
628
+ #: inc/listings.php:263
629
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
630
+ msgstr ""
631
+
632
+ #: inc/listings.php:284
633
+ #, php-format
634
+ msgid "No taxonomies registered for display. Visit %s to get started."
635
+ msgstr ""
636
+ "Es wurden noch keine Taxonomien für die Darstellung erstellt. Besuche %s um "
637
+ "jetzt damit zu beginnen."
638
+
639
+ #: inc/post-types.php:34 inc/taxonomies.php:29
640
  msgid "Are you sure you want to delete this?"
641
  msgstr "Bist Du sicher, dass Du dies löschen möchtest?"
642
 
643
+ #: inc/post-types.php:93
644
  msgid ""
645
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
646
  "registers a new post type entry for your install."
649
  "notwendig ist. Die Änderung des Namens registriert einen neue Post Type "
650
  "Eintrag für Deine Installation."
651
 
652
+ #: inc/post-types.php:94
653
  msgid ""
654
  "Use appropriate checkbox above save/delete buttons if you wish to change "
655
  "slugs and update post types for existing posts."
658
  "Kurzlink ändern willst und den Post Type für bereits existierende Beiträge "
659
  "anpassen willst."
660
 
661
+ #: inc/post-types.php:95 inc/taxonomies.php:90
662
  msgid "Select: "
663
+ msgstr "Auswählen: "
664
 
665
+ #: inc/post-types.php:107 inc/taxonomies.php:102
666
  msgid "Select"
667
  msgstr "Auswählen"
668
 
669
+ #: inc/post-types.php:137
670
  msgid "Post Type Slug"
671
  msgstr "Post Type-Kurzlink"
672
 
673
+ #: inc/post-types.php:138
674
  msgid "(e.g. movie)"
675
  msgstr "(z. B. film)"
676
 
677
+ #: inc/post-types.php:139
678
  msgid ""
679
  "The post type name. Used to retrieve custom post type content. Should be "
680
  "short and unique"
682
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
683
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
684
 
685
+ #: inc/post-types.php:150 inc/taxonomies.php:140
686
  msgid "Plural Label"
687
  msgstr "Beschriftung (Plural)"
688
 
689
+ #: inc/post-types.php:151
690
  msgid "(e.g. Movies)"
691
  msgstr "(z. B. Filme)"
692
 
693
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
694
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
695
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
696
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
697
+ #: inc/post-types.php:411
698
  msgid "Post type label. Used in the admin menu for displaying post types."
699
  msgstr ""
700
  "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
701
  "verwendet den Post Type anzuzeigen."
702
 
703
+ #: inc/post-types.php:162 inc/taxonomies.php:149
704
  msgid "Singular Label"
705
  msgstr "Beschriftung (Singular)"
706
 
707
+ #: inc/post-types.php:163
708
  msgid "(e.g. Movie)"
709
  msgstr "(z. B. Film)"
710
 
711
+ #: inc/post-types.php:164
712
  msgid ""
713
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
714
  "needed."
716
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
717
  "Beschriftungen in der Einzahl benötigt werden."
718
 
719
+ #: inc/post-types.php:180 inc/taxonomies.php:166
720
  msgid "Description"
721
  msgstr "Beschreibung"
722
 
723
+ #: inc/post-types.php:181
724
  msgid ""
725
  "Custom Post Type Description. Describe what your custom post type is used "
726
  "for."
728
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
729
  "verwendet wird."
730
 
731
+ #: inc/post-types.php:193
732
  msgid "Migrate posts to newly renamed post type?"
733
  msgstr ""
734
  "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
735
 
736
+ #: inc/post-types.php:194
737
  msgid "Check this to migrate posts if and when renaming your post type."
738
  msgstr ""
739
  "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
740
  "Type umbenennen willst."
741
 
742
+ #: inc/post-types.php:213
743
  msgid "Save Post Type"
744
  msgstr "Post Type speichern"
745
 
746
+ #: inc/post-types.php:224
747
  msgid "Delete Post Type"
748
  msgstr "Post Type löschen"
749
 
750
+ #: inc/post-types.php:236
751
  msgid "Add Post Type"
752
  msgstr "Post Type hinzufügen"
753
 
754
+ #: inc/post-types.php:247 inc/taxonomies.php:249
755
  msgid "Starter Notes"
756
  msgstr "Tips für Einsteiger"
757
 
758
+ #: inc/post-types.php:250
759
  #, php-format
760
  msgid ""
761
  "Post Type names should have %smax 20 characters%s, and only contain "
769
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
770
  "revision, nav_menu_item."
771
 
772
+ #: inc/post-types.php:251
773
  #, php-format
774
  msgid ""
775
  "If you are unfamiliar with the advanced post type settings, just fill in the "
785
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
786
  "roten Fragezeichen."
787
 
788
+ #: inc/post-types.php:252
789
  #, php-format
790
  msgid ""
791
  "Deleting custom post types will %sNOT%s delete any content into the database "
796
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
797
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
798
 
799
+ #: inc/post-types.php:266 inc/taxonomies.php:270
800
  msgid "Menu Name"
801
  msgstr "Menü-Name"
802
 
803
+ #: inc/post-types.php:267
804
  msgid "Custom menu name for your custom post type."
805
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
806
 
807
+ #: inc/post-types.php:271
808
  msgid "(e.g. My Movies)"
809
  msgstr "(z. B. Mein Film)"
810
 
811
+ #: inc/post-types.php:278 inc/taxonomies.php:279
812
  msgid "All Items"
813
  msgstr "Alle Einträge"
814
 
815
+ #: inc/post-types.php:283
816
  msgid "(e.g. All Movies)"
817
  msgstr "(z. B. Alle Filme)"
818
 
819
+ #: inc/post-types.php:290
820
  msgid "Add New"
821
  msgstr "Neu"
822
 
823
+ #: inc/post-types.php:295
824
  msgid "(e.g. Add New)"
825
  msgstr "(z. B. Neuen hinzufügen)"
826
 
827
+ #: inc/post-types.php:302 inc/taxonomies.php:315
828
  msgid "Add New Item"
829
  msgstr "Neuen Eintrag erstellen"
830
 
831
+ #: inc/post-types.php:307
832
  msgid "(e.g. Add New Movie)"
833
  msgstr "(z. B. Neuen Film hinzufügen)"
834
 
835
+ #: inc/post-types.php:314
836
+ msgid "Edit"
837
+ msgstr "Bearbeiten"
838
+
839
+ #: inc/post-types.php:319
840
  msgid "(e.g. Edit)"
841
  msgstr "(z. B. Bearbeiten)"
842
 
843
+ #: inc/post-types.php:326 inc/taxonomies.php:288
844
  msgid "Edit Item"
845
  msgstr "Eintrag bearbeiten"
846
 
847
+ #: inc/post-types.php:331
848
  msgid "(e.g. Edit Movie)"
849
  msgstr "(z. B. Film bearbeiten)"
850
 
851
+ #: inc/post-types.php:338
852
  msgid "New Item"
853
  msgstr "Neuer Eintrag"
854
 
855
+ #: inc/post-types.php:343
856
  msgid "(e.g. New Movie)"
857
  msgstr "(z. B. Neuer Film)"
858
 
859
+ #: inc/post-types.php:350
860
  msgid "View"
861
  msgstr "Anzeigen"
862
 
863
+ #: inc/post-types.php:355
864
  msgid "(e.g. View)"
865
  msgstr "(z. B. Anzeigen)"
866
 
867
+ #: inc/post-types.php:362 inc/taxonomies.php:297
868
  msgid "View Item"
869
  msgstr "Eintrag anzeigen"
870
 
871
+ #: inc/post-types.php:367
872
  msgid "(e.g. View Movie)"
873
  msgstr "(z. B. Film anzeigen)"
874
 
875
+ #: inc/post-types.php:374
876
  msgid "Search Item"
877
  msgstr "Eintrag suchen"
878
 
879
+ #: inc/post-types.php:379
880
  msgid "(e.g. Search Movie)"
881
  msgstr "(z. B. Film suchen)"
882
 
883
+ #: inc/post-types.php:386
884
  msgid "Not Found"
885
  msgstr "Nicht gefunden"
886
 
887
+ #: inc/post-types.php:391
888
  msgid "(e.g. No Movies found)"
889
  msgstr "(z. B. Keine Filme gefunden)"
890
 
891
+ #: inc/post-types.php:398
892
  msgid "Not Found in Trash"
893
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
894
 
895
+ #: inc/post-types.php:403
896
  msgid "(e.g. No Movies found in Trash)"
897
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
898
 
899
+ #: inc/post-types.php:410
900
  msgid "Parent"
901
  msgstr "Übergeordnet"
902
 
903
+ #: inc/post-types.php:415
904
  msgid "(e.g. Parent Movie)"
905
  msgstr "(z. B. Übergeordneter Film)"
906
 
907
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
908
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
909
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
910
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
911
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
912
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
913
+ #: inc/taxonomies.php:548
914
  msgid "False"
915
  msgstr "deaktiviert"
916
 
917
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
918
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
919
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
920
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
921
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
922
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
923
+ #: inc/taxonomies.php:549
924
  msgid "True"
925
  msgstr "aktiviert"
926
 
927
+ #: inc/post-types.php:438
928
  msgid "Public"
929
  msgstr "Öffentlich"
930
 
931
+ #: inc/post-types.php:439
932
+ msgid "(CPTUI default: True.)"
933
+ msgstr "(CPTUI Voreinstellung: aktiviert)"
 
 
934
 
935
+ #: inc/post-types.php:440
936
  msgid ""
937
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
938
  "Whether posts of this type should be shown in the admin UI and is publicly "
939
  "queryable."
940
  msgstr ""
941
  "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
942
+ "öffentlich durchsuchbar sind. Standardmäßig ist dies im WordPress Core "
943
+ "deaktiviert. Zur besseren Benutzbarkeit ist dies in CPTUI dagegen "
944
+ "standardmäßig aktiviert."
945
 
946
+ #: inc/post-types.php:458 inc/taxonomies.php:434
947
  msgid "Show UI"
948
  msgstr "Benutzeroberfläche anzeigen"
949
 
950
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
951
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
952
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
953
+ msgid "(default: True)"
954
+ msgstr "(Voreinstellung: aktiviert)"
955
+
956
+ #: inc/post-types.php:460
957
  msgid "Whether to generate a default UI for managing this post type."
958
  msgstr ""
959
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
960
  "angelegt werden."
961
 
962
+ #: inc/post-types.php:478
963
+ #, fuzzy
964
+ msgid "Show in Nav Menus"
965
+ msgstr "Im Menü anzeigen"
966
+
967
+ #: inc/post-types.php:479
968
+ #, fuzzy
969
+ msgid "(CPTUI default: true)"
970
+ msgstr "(CPTUI Voreinstellung: aktiviert)"
971
+
972
+ #: inc/post-types.php:480
973
+ msgid "Whether post type is available for selection in navigation menus."
974
+ msgstr ""
975
+
976
+ #: inc/post-types.php:498 inc/taxonomies.php:557
977
+ msgid "Show in REST API"
978
+ msgstr "In der REST API anzeigen"
979
+
980
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
981
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
982
+ #: inc/taxonomies.php:558
983
+ msgid "(default: False)"
984
+ msgstr "(Voreinstellung: deaktiviert)"
985
+
986
+ #: inc/post-types.php:500
987
+ msgid "Whether to show this post type data in the WP REST API."
988
+ msgstr ""
989
+ "Ob die Daten des Post Types in der WP REST API angezeigt werden sollen."
990
+
991
+ #: inc/post-types.php:508 inc/taxonomies.php:567
992
+ msgid "REST API base slug"
993
+ msgstr ""
994
+
995
+ #: inc/post-types.php:509 inc/taxonomies.php:568
996
+ #, fuzzy
997
+ msgid "Slug to use in REST API URLs."
998
+ msgstr "In der REST API anzeigen"
999
+
1000
+ #: inc/post-types.php:519
1001
  msgid "Has Archive"
1002
  msgstr "Hat ein Archiv"
1003
 
1004
+ #: inc/post-types.php:520
1005
  msgid "Whether the post type will have a post type archive URL."
1006
  msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
1007
 
1008
+ #: inc/post-types.php:521
1009
  msgid "If left blank, the archive slug will default to the post type slug."
1010
  msgstr ""
1011
  "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
1012
  "Post Type-Kurzlink gesetzt."
1013
 
1014
+ #: inc/post-types.php:547
 
 
 
 
 
1015
  msgid "Slug to be used for archive URL."
1016
  msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
1017
 
1018
+ #: inc/post-types.php:567
1019
  msgid "Exclude From Search"
1020
  msgstr "Von der Suche ausschließen"
1021
 
1022
+ #: inc/post-types.php:569
1023
  msgid ""
1024
  "Whether to exclude posts with this post type from front end search results."
1025
  msgstr ""
1026
  "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
1027
  "ausgeschlossen werden sollen."
1028
 
1029
+ #: inc/post-types.php:580
1030
  msgid "Capability Type"
1031
  msgstr "Fähigkeiten"
1032
 
1033
+ #: inc/post-types.php:581
1034
  msgid "The post type to use for checking read, edit, and delete capabilities"
1035
  msgstr ""
1036
  "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
1037
  "Bearbeiten und Löschen zu prüfen"
1038
 
1039
+ #: inc/post-types.php:598 inc/taxonomies.php:417
1040
  msgid "Hierarchical"
1041
  msgstr "Hierarchisch"
1042
 
1043
+ #: inc/post-types.php:600
1044
  msgid "Whether the post type can have parent-child relationships"
1045
  msgstr "Darf der Post Type hierarchische Beziehungen haben"
1046
 
1047
+ #: inc/post-types.php:618 inc/taxonomies.php:477
1048
  msgid "Rewrite"
1049
  msgstr "Rewrite"
1050
 
1051
+ #: inc/post-types.php:620
1052
  msgid "Whether or not WordPress should use rewrites for this post type"
1053
  msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
1054
 
1055
+ #: inc/post-types.php:631 inc/taxonomies.php:488
1056
  msgid "Custom Rewrite Slug"
1057
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
1058
 
1059
+ #: inc/post-types.php:632
1060
  msgid "(default: post type slug)"
1061
  msgstr "(Voreinstellung: Post Type-Kurzlink)"
1062
 
1063
+ #: inc/post-types.php:633
1064
  msgid "Custom post type slug to use instead of the default."
1065
  msgstr ""
1066
  "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
1067
  "benutzt werden soll."
1068
 
1069
+ #: inc/post-types.php:650
1070
  msgid "With Front"
1071
  msgstr "Front Base voranstellen"
1072
 
1073
+ #: inc/post-types.php:652 inc/taxonomies.php:505
1074
  msgid "Should the permastruct be prepended with the front base."
1075
  msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
1076
 
1077
+ #: inc/post-types.php:670 inc/taxonomies.php:451
1078
  msgid "Query Var"
1079
  msgstr "Abfrage Variable"
1080
 
1081
+ #: inc/post-types.php:672
1082
  msgid "Sets the query_var key for this post type."
1083
  msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
1084
 
1085
+ #: inc/post-types.php:683
1086
+ msgid "Custom Query Var Slug"
1087
+ msgstr "Benutzerdefinierter Query Var-Kurzlink"
1088
+
1089
+ #: inc/post-types.php:684
1090
+ msgid "(default: post type slug) Query var needs to be true to use."
1091
+ msgstr ""
1092
+ "(Voreinstellung: Post Type Kurzlink) Die Abfrage-Variable muss zur Nutzung "
1093
+ "aktiviert sein."
1094
+
1095
+ #: inc/post-types.php:685
1096
+ msgid "Custom query var slug to use instead of the default."
1097
+ msgstr ""
1098
+ "Verwende einen benutzerdefinierten Abfrage-Variable-Kurzlink anstelle des "
1099
+ "standardmäßigen."
1100
+
1101
+ #: inc/post-types.php:692
1102
  msgid "Menu Position"
1103
  msgstr "Menü Position"
1104
 
1105
+ #: inc/post-types.php:693
1106
  msgid ""
1107
  "The position in the menu order the post type should appear. show_in_menu "
1108
  "must be true."
1110
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
1111
  "anzeigen\" muss dafür aktiviert sein."
1112
 
1113
+ #: inc/post-types.php:694
 
1114
  msgid ""
1115
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1116
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
1117
  "the \"menu_position\" section. Range of 5-100"
1118
  msgstr ""
1119
+ "Lies mehr zu den <a href=„http://codex.wordpress.org/Function_Reference/"
1120
+ "register_post_type#Parameters“ target=\"_blank\">verfügbaren "
1121
+ "Einstellungsmöglichkeiten</a> für die „Menü Position Funktion. Die "
1122
+ "möglichen Werte reichen von 5 bis 100."
1123
 
1124
+ #: inc/post-types.php:709
1125
  msgid "Show in Menu"
1126
  msgstr "Im Menü anzeigen"
1127
 
1128
+ #: inc/post-types.php:710
1129
  msgid ""
1130
  "Whether to show the post type in the admin menu and where to show that menu."
1131
  msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
1132
 
1133
+ #: inc/post-types.php:711
1134
  msgid ""
1135
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1136
  "php\" is indicated for second input, post type will be sub menu of that."
1139
  "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
1140
  "angegeben sein wird der Post Type als Untermenü davon angezeigt."
1141
 
1142
+ #: inc/post-types.php:737
1143
  msgid "Top-level page file name to make post type a sub-menu of."
1144
  msgstr ""
1145
  "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
1146
 
1147
+ #: inc/post-types.php:749
1148
  msgid "Menu Icon"
1149
  msgstr "Menü-Icon"
1150
 
1151
+ #: inc/post-types.php:750
1152
  msgid "(Full URL for icon or Dashicon class)"
1153
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
1154
 
1155
+ #: inc/post-types.php:751
1156
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1157
  msgstr ""
1158
  "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
1159
  "Dashicon-Klasse."
1160
 
1161
+ #: inc/post-types.php:764
1162
  msgid "Title"
1163
  msgstr "Titel"
1164
 
1165
+ #: inc/post-types.php:765
1166
  msgid "Adds the title meta box when creating content for this custom post type"
1167
  msgstr ""
1168
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1169
  "erstellt werden"
1170
 
1171
+ #: inc/post-types.php:779
1172
  msgid "Editor"
1173
  msgstr "Text-Editor"
1174
 
1175
+ #: inc/post-types.php:780
1176
  msgid ""
1177
  "Adds the content editor meta box when creating content for this custom post "
1178
  "type"
1180
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
1181
  "Type erstellt werden"
1182
 
1183
+ #: inc/post-types.php:794
1184
  msgid "Excerpt"
1185
  msgstr "Auszug"
1186
 
1187
+ #: inc/post-types.php:795
1188
  msgid ""
1189
  "Adds the excerpt meta box when creating content for this custom post type"
1190
  msgstr ""
1191
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1192
  "erstellt werden"
1193
 
1194
+ #: inc/post-types.php:809
1195
  msgid "Trackbacks"
1196
  msgstr "Trackbacks"
1197
 
1198
+ #: inc/post-types.php:810
1199
  msgid ""
1200
  "Adds the trackbacks meta box when creating content for this custom post type"
1201
  msgstr ""
1202
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1203
  "Type erstellt werden"
1204
 
1205
+ #: inc/post-types.php:824
1206
  msgid "Custom Fields"
1207
  msgstr "Eigene Felder"
1208
 
1209
+ #: inc/post-types.php:825
1210
  msgid ""
1211
  "Adds the custom fields meta box when creating content for this custom post "
1212
  "type"
1214
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1215
  "Type erstellt werden"
1216
 
1217
+ #: inc/post-types.php:839
1218
  msgid "Comments"
1219
  msgstr "Kommentare"
1220
 
1221
+ #: inc/post-types.php:840
1222
  msgid ""
1223
  "Adds the comments meta box when creating content for this custom post type"
1224
  msgstr ""
1225
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1226
  "Type erstellt werden"
1227
 
1228
+ #: inc/post-types.php:854
1229
  msgid "Revisions"
1230
  msgstr "Revisionen"
1231
 
1232
+ #: inc/post-types.php:855
1233
  msgid ""
1234
  "Adds the revisions meta box when creating content for this custom post type"
1235
  msgstr ""
1236
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1237
  "Type erstellt werden"
1238
 
1239
+ #: inc/post-types.php:869
1240
  msgid "Featured Image"
1241
  msgstr "Beitragsbild"
1242
 
1243
+ #: inc/post-types.php:870
1244
  msgid ""
1245
  "Adds the featured image meta box when creating content for this custom post "
1246
  "type"
1248
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1249
  "Type erstellt werden"
1250
 
1251
+ #: inc/post-types.php:884
1252
  msgid "Author"
1253
  msgstr "Autor"
1254
 
1255
+ #: inc/post-types.php:885
1256
  msgid ""
1257
  "Adds the author meta box when creating content for this custom post type"
1258
  msgstr ""
1259
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1260
  "erstellt werden"
1261
 
1262
+ #: inc/post-types.php:899
1263
  msgid "Page Attributes"
1264
  msgstr "Seiten Attribute"
1265
 
1266
+ #: inc/post-types.php:900
1267
  msgid ""
1268
  "Adds the page attribute meta box when creating content for this custom post "
1269
  "type"
1271
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1272
  "Post Type erstellt werden"
1273
 
1274
+ #: inc/post-types.php:914
1275
  msgid "Post Formats"
1276
  msgstr "Format"
1277
 
1278
+ #: inc/post-types.php:915
1279
  msgid "Adds post format support"
1280
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1281
 
1282
+ #: inc/post-types.php:920
1283
  msgid "Use the option below to explicitly set \"supports\" to false."
1284
  msgstr ""
1285
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1286
  "zu deaktivieren."
1287
 
1288
+ #: inc/post-types.php:928
1289
  msgid "None"
1290
  msgstr "Keine"
1291
 
1292
+ #: inc/post-types.php:929
1293
  msgid "Remove all support features"
1294
  msgstr "Entfernt alle „Unterstützt“-Features"
1295
 
1296
+ #: inc/post-types.php:936
1297
  msgid "Custom \"Supports\""
1298
  msgstr "Benutzerdefinierte „Unterstützt“"
1299
 
1300
+ #: inc/post-types.php:937
1301
  msgid ""
1302
  "Use this input to register custom \"supports\" values, separated by commas."
1303
  msgstr ""
1304
  "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1305
  "definieren welche durch Kommas getrennt sind."
1306
 
1307
+ #: inc/post-types.php:943
1308
  msgid "Provide custom support slugs here."
1309
  msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1310
 
1311
+ #: inc/post-types.php:949
1312
  msgid "Built-in Taxonomies"
1313
  msgstr "Vorhandene Taxonomien"
1314
 
1315
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1316
  #, php-format
1317
  msgid "Adds %s support"
1318
  msgstr "Fügt %s Unterstützung hinzu"
1319
 
1320
+ #: inc/post-types.php:1085
1321
  msgid "Please provide a post type to delete"
1322
  msgstr "Bitte gib einen Post Type zum Löschen an"
1323
 
1324
+ #: inc/post-types.php:1145
1325
  msgid "Please provide a post type name"
1326
  msgstr "Bitte gib einen Namen für den Post Type an"
1327
 
1328
+ #: inc/post-types.php:1169
1329
  msgid "Please do not use quotes in post type names or rewrite slugs"
1330
  msgstr ""
1331
  "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1332
  "Kurzlinks"
1333
 
1334
+ #: inc/post-types.php:1176
1335
  #, php-format
1336
  msgid "Please choose a different post type name. %s is already registered."
1337
  msgstr ""
1338
  "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1339
 
1340
+ #: inc/support.php:45
1341
  msgid "Custom Post Type UI Support"
1342
  msgstr "Custom Post Type UI Support"
1343
 
1344
+ #: inc/support.php:47
1345
  #, php-format
1346
  msgid ""
1347
  "Please note that this plugin will NOT handle display of registered post "
1353
  "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1354
  "unsere %s"
1355
 
1356
+ #: inc/support.php:48
1357
  msgid "Support Forums"
1358
  msgstr "Support Foren"
1359
 
1360
+ #: inc/support.php:54
1361
  msgid "General"
1362
  msgstr "Allgemein"
1363
 
1364
+ #: inc/support.php:57
1365
+ msgid ""
1366
+ "I have post types with spaces in their slug and can not successfully delete "
1367
+ "them. How can I fix that?"
1368
+ msgstr ""
1369
+
1370
+ #: inc/support.php:58
1371
+ msgid ""
1372
+ "Visit the Import/Export page and copy the export code into the import side "
1373
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1374
+ "You should be able to delete the individual post types afterwards."
1375
+ msgstr ""
1376
+
1377
+ #: inc/support.php:62
1378
  msgid ""
1379
  "I changed my custom post type name and now I can not get to my posts. How do "
1380
  "I get them back?"
1382
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1383
  "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1384
 
1385
+ #: inc/support.php:63
1386
  msgid ""
1387
  "You can either change the custom post type name back to the original name or "
1388
  "try the Post Type Switcher plugin"
1390
  "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1391
  "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1392
 
1393
+ #: inc/support.php:68
1394
  msgid ""
1395
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1396
  "shown. How do I remove the duplicate?"
1398
  "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1399
  "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1400
 
1401
+ #: inc/support.php:69
1402
  msgid ""
1403
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1404
  "saved option which gets registered as its own post type or taxonomy. Since "
1410
  "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1411
  "ursprünglichen Eintrag löschen."
1412
 
1413
+ #: inc/support.php:72
1414
  msgid ""
1415
  "I have added post thumbnail and/or post format support to my post type, but "
1416
  "those do not appear when adding a post type post."
1419
  "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1420
  "mit diesem Post Type hinzufüge."
1421
 
1422
+ #: inc/support.php:73
1423
  msgid ""
1424
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1425
  msgstr ""
1426
  "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1427
  "Thumbnails\" aktiviert hat"
1428
 
1429
+ #: inc/support.php:76
1430
+ msgid "Do you have any recommendations for an alternative to Visual Composer."
1431
+ msgstr "Habt Ihr eine Empfehlung für eine Alternative zu Visual Composer."
1432
+
1433
+ #: inc/support.php:77
1434
+ msgid "We recommend using VelocityPage."
1435
+ msgstr "Wir empfehlen die Benutzung von VelocityPage."
1436
+
1437
+ #: inc/support.php:82
1438
+ msgid ""
1439
+ "Is there any way to get CPTUI-registered post types working with Visual "
1440
+ "Composer Media Grid?"
1441
+ msgstr ""
1442
+ "Gibt es eine Möglichkeit mit CPTUI registrierte Post Types unter Visual "
1443
+ "Composer Media Grid zum Laufen zu bekommen?"
1444
+
1445
+ #: inc/support.php:84
1446
+ msgid "Please see the solution from the following forum support thread."
1447
+ msgstr "Gehe bitte zur Lösung in folgendem Foren-Support-Thread."
1448
+
1449
+ #: inc/support.php:91
1450
  msgid "Front-end Display"
1451
  msgstr "Front-End Anzeige"
1452
 
1453
+ #: inc/support.php:94
1454
  msgid "What template files should I edit to alter my post type display?"
1455
  msgstr ""
1456
  "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1457
  "Types zu verändern?"
1458
 
1459
+ #: inc/support.php:95
1460
  #, php-format
1461
  msgid ""
1462
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1465
  "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1466
  "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1467
 
1468
+ #: inc/support.php:102
1469
  msgid "How do I display my custom post type on my site?"
1470
  msgstr ""
1471
  "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1472
 
1473
+ #: inc/support.php:103
1474
  #, php-format
1475
  msgid ""
1476
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1482
  "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1483
  "\" lauten."
1484
 
1485
+ #: inc/support.php:109
1486
  msgid ""
1487
  "I have added categories and tags to my custom post type, but they do not "
1488
  "appear in the archives."
1490
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1491
  "sie werden nicht in den Archiven angezeigt."
1492
 
1493
+ #: inc/support.php:110
1494
  #, php-format
1495
  msgid ""
1496
  "You will need to add your newly created post type to the types that the "
1501
  "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1502
  "Tutorial dazu unter %s"
1503
 
1504
+ #: inc/support.php:119
1505
  msgid "Advanced"
1506
  msgstr "Erweitert"
1507
 
1508
+ #: inc/support.php:122
1509
  msgid "How do I add custom metaboxes to my post type?"
1510
  msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
1511
 
1512
+ #: inc/support.php:124
1513
  #, php-format
1514
  msgid ""
1515
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1518
  "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1519
  "WordPress\". Beides wird von den WebDevStudios entwickelt."
1520
 
1521
+ #: inc/support.php:130
1522
  msgid ""
1523
  "How do I add a newly registered taxonomy to a post type that already exists?"
1524
  msgstr ""
1525
  "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1526
  "bereits existiert?"
1527
 
1528
+ #: inc/support.php:132
1529
  #, php-format
1530
  msgid "Check out the %s function for documentation and usage examples."
1531
  msgstr ""
1532
  "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1533
  "Nutzungsbeispielen."
1534
 
1535
+ #: inc/support.php:138
1536
  msgid "Post relationships?"
1537
  msgstr "Beitragsbeziehungen?"
1538
 
1539
+ #: inc/support.php:139
1540
  #, php-format
1541
  msgid ""
1542
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1545
  "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1546
  "%s Plugins veröffentlicht."
1547
 
1548
+ #: inc/support.php:148
1549
  msgid "Is there any function reference list?"
1550
  msgstr "Gibt es eine Funktion Referenz-Liste?"
1551
 
1552
+ #: inc/support.php:149
1553
  #, php-format
1554
  msgid ""
1555
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1557
  msgstr ""
1558
  "%s hat eine schöne Liste an Funktionen zusammengestellt die von unserem "
1559
  "Plugin benutzt werden. Merke, nicht alle genannten werden hilfreich sein da "
1560
+ "sie an Hooks gekoppelt sind."
1561
 
1562
+ #: inc/support.php:153
1563
  msgid ""
1564
  "How do I filter the \"enter title here\" text in the post editor screen?"
1565
  msgstr ""
1566
  "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1567
  "\"-Fenster ändern?"
1568
 
1569
+ #: inc/support.php:154
1570
  msgid ""
1571
  "Change text inside the post/page editor title field. Should be able to adapt "
1572
  "as necessary."
1574
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1575
  "möglich sein dies anzupassen falls notwendig."
1576
 
1577
+ #: inc/taxonomies.php:89
1578
  msgid ""
1579
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1580
  "registers a new taxonomy entry for your install."
1583
  "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1584
  "Eintrag für Deine Installation."
1585
 
1586
+ #: inc/taxonomies.php:129
1587
  msgid "Taxonomy Slug"
1588
  msgstr "Taxonomie-Kurzlink"
1589
 
1590
+ #: inc/taxonomies.php:130
1591
  msgid "(e.g. actor)"
1592
  msgstr "(z. B. regisseure)"
1593
 
1594
+ #: inc/taxonomies.php:131
1595
  msgid ""
1596
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1597
  "and unique"
1599
  "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1600
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1601
 
1602
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1603
  msgid "(e.g. Actors)"
1604
  msgstr "(z. B. Regisseure)"
1605
 
1606
+ #: inc/taxonomies.php:141
1607
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1608
  msgstr ""
1609
  "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1610
  "benutzerdefinierte Taxonomien anzuzeigen."
1611
 
1612
+ #: inc/taxonomies.php:148
1613
  msgid "(e.g. Actor)"
1614
  msgstr "(z. B. Regisseur)"
1615
 
1616
+ #: inc/taxonomies.php:150
1617
  msgid ""
1618
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1619
  msgstr ""
1620
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1621
  "Beschriftungen in der Einzahl benötigt werden."
1622
 
1623
+ #: inc/taxonomies.php:167
1624
+ #, fuzzy
1625
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1626
+ msgstr ""
1627
+ "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
1628
+ "verwendet wird."
1629
+
1630
+ #: inc/taxonomies.php:170
1631
  msgid "Attach to Post Type"
1632
  msgstr "Mit Post Type verbinden"
1633
 
1634
+ #: inc/taxonomies.php:220
1635
  msgid "Save Taxonomy"
1636
  msgstr "Taxonomie speichern"
1637
 
1638
+ #: inc/taxonomies.php:231
1639
  msgid "Delete Taxonomy"
1640
  msgstr "Taxonomie löschen"
1641
 
1642
+ #: inc/taxonomies.php:243
1643
  msgid "Add Taxonomy"
1644
  msgstr "Taxonomie hinzufügen"
1645
 
1646
+ #: inc/taxonomies.php:252
1647
  #, php-format
1648
  msgid ""
1649
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1654
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1655
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1656
 
1657
+ #: inc/taxonomies.php:253
1658
  #, php-format
1659
  msgid ""
1660
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1671
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1672
  "roten Fragezeichen."
1673
 
1674
+ #: inc/taxonomies.php:254
1675
  #, php-format
1676
  msgid ""
1677
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1686
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1687
  "Begriffe nicht in der Datenbank aktualisiert."
1688
 
1689
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1690
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1691
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1692
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1693
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1694
  msgid ""
1695
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1696
  msgstr ""
1697
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1698
  "Anzeige von Taxonomien verwendet."
1699
 
1700
+ #: inc/taxonomies.php:278
1701
  msgid "(e.g. All Actors)"
1702
  msgstr "(z. B. Alle Regisseure)"
1703
 
1704
+ #: inc/taxonomies.php:287
1705
  msgid "(e.g. Edit Actor)"
1706
  msgstr "(z. B. Regisseur bearbeiten)"
1707
 
1708
+ #: inc/taxonomies.php:296
1709
  msgid "(e.g. View Actor)"
1710
  msgstr "(z. B. Regisseur anzeigen)"
1711
 
1712
+ #: inc/taxonomies.php:305
1713
  msgid "(e.g. Update Actor Name)"
1714
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1715
 
1716
+ #: inc/taxonomies.php:306
1717
  msgid "Update Item Name"
1718
  msgstr "Eintragsname aktualisieren"
1719
 
1720
+ #: inc/taxonomies.php:314
1721
  msgid "(e.g. Add New Actor)"
1722
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1723
 
1724
+ #: inc/taxonomies.php:323
1725
  msgid "(e.g. New Actor Name)"
1726
  msgstr "(z. B. Neuer Regisseursname)"
1727
 
1728
+ #: inc/taxonomies.php:324
1729
  msgid "New Item Name"
1730
  msgstr "Neuer Eintragsname"
1731
 
1732
+ #: inc/taxonomies.php:332
1733
  msgid "(e.g. Parent Actor)"
1734
  msgstr "(z. B. Übergeordneter Regisseur)"
1735
 
1736
+ #: inc/taxonomies.php:333
1737
  msgid "Parent Item"
1738
  msgstr "Übergeordneter Eintrag"
1739
 
1740
+ #: inc/taxonomies.php:341
1741
  msgid "(e.g. Parent Actor:)"
1742
  msgstr "(z. B. Übergeordneter Regisseur:)"
1743
 
1744
+ #: inc/taxonomies.php:342
1745
  msgid "Parent Item Colon"
1746
  msgstr "Übergeordneter Eintrag Komma"
1747
 
1748
+ #: inc/taxonomies.php:350
1749
  msgid "(e.g. Search Actors)"
1750
  msgstr "(z. B. Regisseure durchsuchen)"
1751
 
1752
+ #: inc/taxonomies.php:351
1753
  msgid "Search Items"
1754
  msgstr "Einträge durchsuchen"
1755
 
1756
+ #: inc/taxonomies.php:359
1757
  msgid "(e.g. Popular Actors)"
1758
  msgstr "(z. B. beliebte Regisseure)"
1759
 
1760
+ #: inc/taxonomies.php:360
1761
  msgid "Popular Items"
1762
  msgstr "Beliebte Einträge"
1763
 
1764
+ #: inc/taxonomies.php:368
1765
+ #, fuzzy
1766
+ msgid "(e.g. Separate Actors with commas)"
1767
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1768
 
1769
+ #: inc/taxonomies.php:369
1770
  msgid "Separate Items with Commas"
1771
  msgstr "Trenne Einträge mittels Komma"
1772
 
1773
+ #: inc/taxonomies.php:377
1774
+ #, fuzzy
1775
+ msgid "(e.g. Add or remove Actors)"
1776
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1777
 
1778
+ #: inc/taxonomies.php:378
1779
  msgid "Add or Remove Items"
1780
  msgstr "Lösche oder füge Einträge hinzu"
1781
 
1782
+ #: inc/taxonomies.php:386
1783
+ #, fuzzy
1784
+ msgid "(e.g. Choose from the most used Actors)"
1785
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1786
 
1787
+ #: inc/taxonomies.php:387
1788
  msgid "Choose From Most Used"
1789
  msgstr "Wähle aus den am meisten Verwendeten"
1790
 
1791
+ #: inc/taxonomies.php:395
1792
+ #, fuzzy
1793
+ msgid "(e.g. No Actors found)"
1794
  msgstr "(z. B. Keine Regisseure gefunden)"
1795
 
1796
+ #: inc/taxonomies.php:396
1797
  msgid "Not found"
1798
  msgstr "Nicht gefunden"
1799
 
1800
+ #: inc/taxonomies.php:419
1801
  msgid "Whether the taxonomy can have parent-child relationships"
1802
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1803
 
1804
+ #: inc/taxonomies.php:436
1805
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1806
  msgstr ""
1807
  "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1808
  "benutzerdefinierten Taxonomie erstellt werden soll."
1809
 
1810
+ #: inc/taxonomies.php:453
1811
  msgid "Sets the query_var key for this taxonomy."
1812
  msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1813
 
1814
+ #: inc/taxonomies.php:461
1815
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1816
  msgstr ""
1817
+ "(Voreinstellung: Taxonomie Kurzlink) Die Abfrage-Variable muss zur Nutzung "
1818
+ "aktiviert sein."
1819
 
1820
+ #: inc/taxonomies.php:462
1821
  msgid "Custom Query Var String"
1822
  msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1823
 
1824
+ #: inc/taxonomies.php:463
1825
  msgid "Sets a custom query_var slug for this taxonomy."
1826
  msgstr ""
1827
+ "Definiere einen benutzerdefinierten Abfrage-Variablen-Kurzlink für diese "
1828
  "Taxonomie."
1829
 
1830
+ #: inc/taxonomies.php:479
1831
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1832
  msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1833
 
1834
+ #: inc/taxonomies.php:487
1835
  msgid "(default: taxonomy name)"
1836
  msgstr "(Voreinstellung: Taxanomie Name)"
1837
 
1838
+ #: inc/taxonomies.php:489
1839
  msgid "Custom taxonomy rewrite slug."
1840
  msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1841
 
1842
+ #: inc/taxonomies.php:503
1843
  msgid "Rewrite With Front"
1844
  msgstr "Rewrite mit vorangestellter Front Base"
1845
 
1846
+ #: inc/taxonomies.php:504
1847
  msgid "(default: true)"
1848
  msgstr "(Voreinstellung: aktiviert)"
1849
 
1850
+ #: inc/taxonomies.php:520
1851
  msgid "Rewrite Hierarchical"
1852
  msgstr "Hierarchischer Rewrite"
1853
 
1854
+ #: inc/taxonomies.php:521
1855
  msgid "(default: false)"
1856
  msgstr "(Voreinstellung: deaktiviert)"
1857
 
1858
+ #: inc/taxonomies.php:522
1859
  msgid "Should the permastruct allow hierarchical urls."
1860
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1861
 
1862
+ #: inc/taxonomies.php:537
1863
  msgid "Show Admin Column"
1864
  msgstr "Anzeige von Admin-Spalten"
1865
 
1866
+ #: inc/taxonomies.php:539
1867
  msgid ""
1868
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1869
  "types."
1871
  "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1872
  "Post Types erlaubt werden."
1873
 
1874
+ #: inc/taxonomies.php:559
1875
+ #, fuzzy
1876
+ msgid "Whether to show this taxonomy data in the WP REST API."
1877
+ msgstr ""
1878
+ "Ob die Daten des Post Types in der WP REST API angezeigt werden sollen."
1879
+
1880
+ #: inc/taxonomies.php:676
1881
  msgid "Please provide a taxonomy to delete"
1882
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1883
 
1884
+ #: inc/taxonomies.php:727
1885
  msgid "Please provide a taxonomy name"
1886
  msgstr "Gib bitte einen Taxonomie-Namen an"
1887
 
1888
+ #: inc/taxonomies.php:743
1889
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1890
  msgstr ""
1891
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1892
  "Kurzlinks"
1893
 
1894
+ #: inc/taxonomies.php:749
1895
  #, php-format
1896
  msgid "Please choose a different taxonomy name. %s is already used."
1897
  msgstr ""
1916
  msgid "http://webdevstudios.com/"
1917
  msgstr "http://webdevstudios.com/"
1918
 
1919
+ #~ msgid "Post type migration"
1920
+ #~ msgstr "Post Type Migrierung"
1921
+
1922
+ #~ msgid ""
1923
+ #~ "In the past, if you changed your post type slug, you would lose immediate "
1924
+ #~ "access to the posts in the post type and need to recover another way. We "
1925
+ #~ "have now added support for migrating all posts within the old post type "
1926
+ #~ "to the new post type you renamed it to."
1927
+ #~ msgstr ""
1928
+ #~ "Bisher war es so, sobald Du den Kurzlink eines Post Types verändert hast, "
1929
+ #~ "verlorst Du den direkten Zugriff auf alle seine Beiträge und musstest "
1930
+ #~ "diese anderweitig wiederherstellen. Wir haben jetzt die Unterstützung für "
1931
+ #~ "die Migration von Beiträgen aus dem alten Post Type in den neu "
1932
+ #~ "umbenannten hinzugefügt."
1933
+
1934
+ #~ msgid "UI Refinement"
1935
+ #~ msgstr "Verbesserte Benutzeroberfläche"
1936
+
1937
+ #~ msgid ""
1938
+ #~ "After receiving feedback regarding the 1.0.x changes, we have further "
1939
+ #~ "simplified the UI to reduce the amount of clicking necessary to manage "
1940
+ #~ "your post types and taxonomies."
1941
+ #~ msgstr ""
1942
+ #~ "Nach dem Feedback zu den Änderungen in 1.0.x, haben wir die "
1943
+ #~ "Benutzeroberfläche weiter vereinfacht um die Anzahl der notwendigen "
1944
+ #~ "Mausklicks zur Verwaltung Deiner Post Types und Taxonomien weiter zu "
1945
+ #~ "minimieren."
1946
+
1947
+ #~ msgid "Registered Post Type and Taxonomy Listings"
1948
+ #~ msgstr "Listen der registrierten Post Types und Taxonomien"
1949
+
1950
+ #~ msgid ""
1951
+ #~ "We are bringing back the listing of all CPTUI-registered post types and "
1952
+ #~ "taxonomies for easier quick view of what you have going."
1953
+ #~ msgstr ""
1954
+ #~ "Wir bringen die Listendarstellung aller durch CPT UI registrierten Post "
1955
+ #~ "Types und Taxonomien zurück, damit Du leichter den Überblick behältst."
1956
+
1957
+ #~ msgid "(default: none). Query Var needs to be true to use."
1958
+ #~ msgstr ""
1959
+ #~ "(Voreinstellung: Keine - Abfrage-Variable muss aktiviert sein um es "
1960
+ #~ "benutzen zu können)"
1961
+
1962
  #~ msgid "Whether posts of this type should be shown in the admin UI"
1963
  #~ msgstr ""
1964
  #~ "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
2061
  #~ "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
2062
  #~ "benutzerdefinierten Taxonomien erstellt werden"
2063
 
 
 
 
2064
  #~ msgid "Triggers the handling of rewrites for this taxonomy"
2065
  #~ msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
2066
 
languages/custom-post-type-ui-de_DE_formal.mo ADDED
Binary file
languages/custom-post-type-ui-de_DE_formal.po ADDED
@@ -0,0 +1,2225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.2\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-post-type-"
5
+ "ui\n"
6
+ "POT-Creation-Date: 2015-12-13 00:09-0600\n"
7
+ "PO-Revision-Date: 2015-12-13 00:09-0600\n"
8
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
+ "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
10
+ "koller@gmail.com>\n"
11
+ "Language: de_DE\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.6\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
22
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
+ "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: tests\n"
25
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
26
+
27
+ #: classes/class.cptui_debug_info.php:7
28
+ msgid ""
29
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
30
+ "requested to send the information below to the plugin developer. Simply "
31
+ "insert the email they provided in the input field at the bottom and click "
32
+ "the \"Send debug info\" button. Only the data below will be sent to them."
33
+ msgstr ""
34
+
35
+ #: classes/class.cptui_debug_info.php:186
36
+ #, php-format
37
+ msgid "CPTUI debug information for %s"
38
+ msgstr ""
39
+
40
+ #: custom-post-type-ui.php:61
41
+ msgid "Custom Post Types"
42
+ msgstr "Custom Post Types"
43
+
44
+ #: custom-post-type-ui.php:61
45
+ msgid "CPT UI"
46
+ msgstr "CPT UI"
47
+
48
+ #: custom-post-type-ui.php:62 inc/listings.php:155
49
+ msgid "Add/Edit Post Types"
50
+ msgstr "Post Types hinzufügen/editieren"
51
+
52
+ #: custom-post-type-ui.php:63 inc/listings.php:287
53
+ msgid "Add/Edit Taxonomies"
54
+ msgstr "Taxonomien hinzufügen/editieren"
55
+
56
+ #: custom-post-type-ui.php:64
57
+ msgid "Registered Types and Taxes"
58
+ msgstr "Registrierte Post Types und Taxonomien"
59
+
60
+ #: custom-post-type-ui.php:64
61
+ msgid "Registered Types/Taxes"
62
+ msgstr "Registrierte Post Types/Taxonomien"
63
+
64
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
65
+ msgid "Import/Export"
66
+ msgstr "Import/Export"
67
+
68
+ #: custom-post-type-ui.php:66
69
+ msgid "Help/Support"
70
+ msgstr "Hilfe/Support"
71
+
72
+ #: custom-post-type-ui.php:70
73
+ msgid "About CPT UI"
74
+ msgstr "Über CPT UI"
75
+
76
+ #. Plugin Name of the plugin/theme
77
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
78
+ msgid "Custom Post Type UI"
79
+ msgstr "Custom Post Type UI"
80
+
81
+ #: custom-post-type-ui.php:385
82
+ msgid ""
83
+ "Thank you for choosing Custom Post Type UI. We hope that your experience "
84
+ "with our plugin provides efficiency and speed in creating post types and "
85
+ "taxonomies, to better organize your content, without having to touch code."
86
+ msgstr ""
87
+ "Danke dass Sie sich für Custom Post Type UI entschieden haben. Wir hoffen, "
88
+ "dass Sie mit Hilfe unseres Plugins auf eine einfache und schnelle Weise neue "
89
+ "Post Types und Taxonomien erstellen können sowie Ihre Inhalte besser "
90
+ "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
91
+
92
+ #: custom-post-type-ui.php:387
93
+ #, php-format
94
+ msgid "What's new in version %s"
95
+ msgstr ""
96
+
97
+ #: custom-post-type-ui.php:392
98
+ msgid "Updated internationalization"
99
+ msgstr ""
100
+
101
+ #: custom-post-type-ui.php:393
102
+ msgid ""
103
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
104
+ "to help aid in translating Custom Post Type UI"
105
+ msgstr ""
106
+
107
+ #: custom-post-type-ui.php:396
108
+ msgid "Debugging information"
109
+ msgstr ""
110
+
111
+ #: custom-post-type-ui.php:397
112
+ msgid ""
113
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
114
+ "debugging issues with Custom Post Type UI."
115
+ msgstr ""
116
+
117
+ #: custom-post-type-ui.php:400
118
+ msgid "Improved accessibility"
119
+ msgstr ""
120
+
121
+ #: custom-post-type-ui.php:401
122
+ msgid ""
123
+ "A lot of work was done in the areas of accessibility to help aid users who "
124
+ "need it. If you have feedback on where it could be further improved, let us "
125
+ "know."
126
+ msgstr ""
127
+
128
+ #: custom-post-type-ui.php:404
129
+ msgid "WP REST API support"
130
+ msgstr ""
131
+
132
+ #: custom-post-type-ui.php:405
133
+ msgid ""
134
+ "We now have support for the required fields for the WP REST API. Now you can "
135
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
136
+ "API lists."
137
+ msgstr ""
138
+
139
+ #: custom-post-type-ui.php:408
140
+ msgid "More parameter support"
141
+ msgstr ""
142
+
143
+ #: custom-post-type-ui.php:409
144
+ msgid ""
145
+ "We have added more parameters for greater customization of your post type "
146
+ "and taxonomy settings."
147
+ msgstr ""
148
+
149
+ #: custom-post-type-ui.php:412
150
+ msgid "New individual \"Get Code\" sections"
151
+ msgstr ""
152
+
153
+ #: custom-post-type-ui.php:413
154
+ msgid ""
155
+ "The \"Get Code\" area now has support for copy/paste of individual post "
156
+ "types and taxonomies."
157
+ msgstr ""
158
+
159
+ #: custom-post-type-ui.php:416
160
+ #, fuzzy
161
+ msgid "Template hierarchy reference"
162
+ msgstr "Hierarchischer Rewrite"
163
+
164
+ #: custom-post-type-ui.php:417
165
+ msgid ""
166
+ "To help aid your development with post types and taxonomies, we have added a "
167
+ "quick reference list of common template files you can use in your theme. "
168
+ "They will be listed on the \"Registered Types/Taxes\" screen."
169
+ msgstr ""
170
+
171
+ #: custom-post-type-ui.php:422
172
+ msgid "Help Support This Plugin!"
173
+ msgstr "Unterstützen Sie die Entwicklung dieses Plugins!"
174
+
175
+ #: custom-post-type-ui.php:426
176
+ msgid "Professional WordPress<br />Third Edition"
177
+ msgstr "Professional WordPress<br />(Dritte Auflage)"
178
+
179
+ #: custom-post-type-ui.php:428
180
+ #, fuzzy
181
+ msgid "Professional WordPress Design and Development book cover."
182
+ msgstr "Professional WordPress<br />Plugin Development"
183
+
184
+ #: custom-post-type-ui.php:431
185
+ msgid ""
186
+ "The leading book on WordPress design and development! Brand new third "
187
+ "edition!"
188
+ msgstr ""
189
+ "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
190
+ "Auflage!"
191
+
192
+ #: custom-post-type-ui.php:434
193
+ msgid "Professional WordPress<br />Plugin Development"
194
+ msgstr "Professional WordPress<br />Plugin Development"
195
+
196
+ #: custom-post-type-ui.php:436
197
+ #, fuzzy
198
+ msgid "Professional WordPress Pluing Development book cover."
199
+ msgstr "Professional WordPress<br />Plugin Development"
200
+
201
+ #: custom-post-type-ui.php:439
202
+ msgid "Highest rated WordPress development book on Amazon!"
203
+ msgstr ""
204
+ "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
205
+ "Amazon!"
206
+
207
+ #: custom-post-type-ui.php:442
208
+ msgid "PayPal Donation"
209
+ msgstr "PayPal Spende"
210
+
211
+ #: custom-post-type-ui.php:446
212
+ msgid "PayPal - The safer, easier way to pay online!"
213
+ msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
214
+
215
+ #: custom-post-type-ui.php:449
216
+ msgid "Please donate to the development of Custom Post Type UI:"
217
+ msgstr "Bitte unterstützen Sie die Entwicklung <br />von Custom Post Type UI:"
218
+
219
+ #: custom-post-type-ui.php:475
220
+ #, php-format
221
+ msgid "%s version %s by %s"
222
+ msgstr "%s Version %s von den %s"
223
+
224
+ #: custom-post-type-ui.php:486
225
+ msgid "Please Report Bugs"
226
+ msgstr "Bitte Fehler melden"
227
+
228
+ #: custom-post-type-ui.php:489
229
+ msgid "Follow on Twitter:"
230
+ msgstr "Auf Twitter folgen:"
231
+
232
+ #: custom-post-type-ui.php:553
233
+ msgid "Manage Taxonomies"
234
+ msgstr "Verwalte Taxonomien"
235
+
236
+ #: custom-post-type-ui.php:557
237
+ msgid "Manage Post Types"
238
+ msgstr "Verwalte Post Types"
239
+
240
+ #: custom-post-type-ui.php:585
241
+ msgid "Add New Post Type"
242
+ msgstr "Neuen Post Type hinzufügen"
243
+
244
+ #: custom-post-type-ui.php:588
245
+ msgid "Edit Post Types"
246
+ msgstr "Post Types bearbeiten"
247
+
248
+ #: custom-post-type-ui.php:592
249
+ msgid "Add New Taxonomy"
250
+ msgstr "Neue Taxonomie hinzufügen"
251
+
252
+ #: custom-post-type-ui.php:595
253
+ msgid "Edit Taxonomies"
254
+ msgstr "Taxonomien bearbeiten"
255
+
256
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
257
+ msgid "Post Types"
258
+ msgstr "Post Types"
259
+
260
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
261
+ #: inc/listings.php:161
262
+ msgid "Taxonomies"
263
+ msgstr "Taxonomien"
264
+
265
+ #: custom-post-type-ui.php:601
266
+ msgid "Get Code"
267
+ msgstr "Code erhalten"
268
+
269
+ #: custom-post-type-ui.php:602
270
+ msgid "Debug Info"
271
+ msgstr ""
272
+
273
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
274
+ #: inc/post-types.php:420 inc/taxonomies.php:402
275
+ msgid "Settings"
276
+ msgstr "Einstellungen"
277
+
278
+ #: custom-post-type-ui.php:685
279
+ msgid "Help"
280
+ msgstr "Hilfe"
281
+
282
+ #: custom-post-type-ui.php:714
283
+ #, php-format
284
+ msgid "%s has been successfully added"
285
+ msgstr "%s wurde erfolgreich hinzugefügt"
286
+
287
+ #: custom-post-type-ui.php:716
288
+ #, php-format
289
+ msgid "%s has failed to be added"
290
+ msgstr "%s konnte nicht hinzugefügt werden"
291
+
292
+ #: custom-post-type-ui.php:720
293
+ #, php-format
294
+ msgid "%s has been successfully updated"
295
+ msgstr "%s wurde erfolgreich aktualisiert"
296
+
297
+ #: custom-post-type-ui.php:722
298
+ #, php-format
299
+ msgid "%s has failed to be updated"
300
+ msgstr "%s konnte nicht aktualisiert werden"
301
+
302
+ #: custom-post-type-ui.php:726
303
+ #, php-format
304
+ msgid "%s has been successfully deleted"
305
+ msgstr "%s wurde erfolgreich gelöscht"
306
+
307
+ #: custom-post-type-ui.php:728
308
+ #, php-format
309
+ msgid "%s has failed to be deleted"
310
+ msgstr "%s konnte nicht gelöscht werden"
311
+
312
+ #: custom-post-type-ui.php:732
313
+ #, php-format
314
+ msgid "%s has been successfully imported"
315
+ msgstr "%s wurde erfolgreich importiert"
316
+
317
+ #: custom-post-type-ui.php:734
318
+ #, php-format
319
+ msgid "%s has failed to be imported"
320
+ msgstr "%s konnte nicht importiert werden"
321
+
322
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
323
+ #, php-format
324
+ msgid "Add new %s"
325
+ msgstr "Neue %s hinzufügen"
326
+
327
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
328
+ #: inc/listings.php:220
329
+ #, php-format
330
+ msgid "Edit %s"
331
+ msgstr "%s bearbeiten"
332
+
333
+ #: custom-post-type-ui.php:819
334
+ #, php-format
335
+ msgid "New %s"
336
+ msgstr "%s hinzufügen"
337
+
338
+ #: custom-post-type-ui.php:820
339
+ #, php-format
340
+ msgid "View %s"
341
+ msgstr "%s anzeigen"
342
+
343
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
344
+ #, php-format
345
+ msgid "All %s"
346
+ msgstr "Alle %s"
347
+
348
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
349
+ #, php-format
350
+ msgid "Search %s"
351
+ msgstr "%s durchsuchen"
352
+
353
+ #: custom-post-type-ui.php:823
354
+ #, php-format
355
+ msgid "No %s found."
356
+ msgstr "Keine %s gefunden."
357
+
358
+ #: custom-post-type-ui.php:824
359
+ #, php-format
360
+ msgid "No %s found in trash."
361
+ msgstr "Keine %s im Papierkorb gefunden."
362
+
363
+ #: custom-post-type-ui.php:828
364
+ #, php-format
365
+ msgid "Popular %s"
366
+ msgstr "Beliebte %s"
367
+
368
+ #: custom-post-type-ui.php:830
369
+ #, php-format
370
+ msgid "Parent %s"
371
+ msgstr "Übergeordnet %s"
372
+
373
+ #: custom-post-type-ui.php:831
374
+ #, php-format
375
+ msgid "Parent %s:"
376
+ msgstr "Übergeordnet %s:"
377
+
378
+ #: custom-post-type-ui.php:833
379
+ #, php-format
380
+ msgid "Update %s"
381
+ msgstr "%s aktualisieren"
382
+
383
+ #: custom-post-type-ui.php:835
384
+ #, php-format
385
+ msgid "New %s name"
386
+ msgstr "Neuer %s Name"
387
+
388
+ #: custom-post-type-ui.php:836
389
+ #, php-format
390
+ msgid "Separate %s with commas"
391
+ msgstr "%s mit Kommas trennen"
392
+
393
+ #: custom-post-type-ui.php:837
394
+ #, php-format
395
+ msgid "Add or remove %s"
396
+ msgstr "%s hinzufügen oder entfernen"
397
+
398
+ #: custom-post-type-ui.php:838
399
+ #, php-format
400
+ msgid "Choose from the most used %s"
401
+ msgstr "Aus den am häufigsten verwendeten %s auswählen"
402
+
403
+ #: inc/import_export.php:77
404
+ msgid "No taxonomies to display at this time"
405
+ msgstr "Es gibt keine Taxonomien zum Anzeigen."
406
+
407
+ #: inc/import_export.php:184
408
+ msgid "No post types to display at this time"
409
+ msgstr "Es gibt keine Post Types zum Anzeigen."
410
+
411
+ #: inc/import_export.php:372
412
+ msgid "Post types"
413
+ msgstr "Post Types"
414
+
415
+ #: inc/import_export.php:404
416
+ msgid ""
417
+ "If you are wanting to migrate registered post types or taxonomies from this "
418
+ "site to another, that will also use Custom Post Type UI, use the import and "
419
+ "export functionality. If you are moving away from Custom Post Type UI, use "
420
+ "the information in the \"Get Code\" tab."
421
+ msgstr ""
422
+ "Für den Fall dass Sie Post Types oder Taxonomien von dieser Webseite auf "
423
+ "eine andere, die ebenso Custom Post Type UI nutzt, übertragen wollen, "
424
+ "benutzen Sie bitte die Import und Export Funktion. Sollten Sie Custom Post "
425
+ "Type UI den Rücken zukehren wollen dann folgen Sie bitte den Informationen "
426
+ "im \"Code erhalten“-Reiter."
427
+
428
+ #: inc/import_export.php:407
429
+ msgid "NOTE"
430
+ msgstr "Anmerkung"
431
+
432
+ #: inc/import_export.php:408
433
+ #, fuzzy
434
+ msgid ""
435
+ "This will not export the associated posts or taxonomy terms, just the "
436
+ "settings."
437
+ msgstr ""
438
+ "Es werden nur die Einstellungen exportiert, nicht die dazugehörigen Beiträge."
439
+
440
+ #: inc/import_export.php:415
441
+ msgid "Import Post Types"
442
+ msgstr "Post Types importieren"
443
+
444
+ #: inc/import_export.php:419 inc/import_export.php:459
445
+ msgid "Paste content here."
446
+ msgstr "Inhalt hier einfügen."
447
+
448
+ #: inc/import_export.php:422 inc/import_export.php:462
449
+ msgid "Note:"
450
+ msgstr "Anmerkung:"
451
+
452
+ #: inc/import_export.php:422 inc/import_export.php:462
453
+ msgid "Importing will overwrite previous registered settings."
454
+ msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
455
+
456
+ #: inc/import_export.php:426
457
+ msgid ""
458
+ "To import post types from a different WordPress site, paste the exported "
459
+ "content from that site and click the \"Import\" button."
460
+ msgstr ""
461
+ "Um die Post Types einer anderen WordPress-Seite zu importieren, fügen Sie "
462
+ "deren exportierte Inhalte ein und klicke den \"Importieren“-Button."
463
+
464
+ #: inc/import_export.php:430 inc/import_export.php:470
465
+ msgid "Import"
466
+ msgstr "Importieren"
467
+
468
+ #: inc/import_export.php:435
469
+ msgid "Export Post Types"
470
+ msgstr "Post Types exportieren"
471
+
472
+ #: inc/import_export.php:442
473
+ msgid "No post types registered yet."
474
+ msgstr "Es wurden noch keine Post Types erstellt."
475
+
476
+ #: inc/import_export.php:445 inc/import_export.php:485
477
+ msgid ""
478
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
479
+ "(Mac)."
480
+ msgstr ""
481
+ "Um die System-Informationen zu kopieren, klicken Sie unten und drücken dann "
482
+ "Ctrl + C am PC oder Cmd + C am Mac."
483
+
484
+ #: inc/import_export.php:448
485
+ msgid ""
486
+ "Use the content above to import current post types into a different "
487
+ "WordPress site. You can also use this to simply back up your post type "
488
+ "settings."
489
+ msgstr ""
490
+ "Benutzen Sie die Inhalte des \"Post Types exportieren\"-Feldes um die "
491
+ "aktuellen Post Types in eine andere WordPress Webseite zu importieren. Sie "
492
+ "können dies ebenso einfach dazu benutzen um Ihre Post Type-Einstellungen zu "
493
+ "sichern."
494
+
495
+ #: inc/import_export.php:455
496
+ msgid "Import Taxonomies"
497
+ msgstr "Taxonomien importieren"
498
+
499
+ #: inc/import_export.php:466
500
+ msgid ""
501
+ "To import taxonomies from a different WordPress site, paste the exported "
502
+ "content from that site and click the \"Import\" button."
503
+ msgstr ""
504
+ "Um Taxonomien von einer anderen WordPress Seite zu importieren, fügen Sie "
505
+ "über die Zwischenablage die exportierten Inhalte dieser Seite ein und klicke "
506
+ "den \"Importieren“-Button."
507
+
508
+ #: inc/import_export.php:475
509
+ msgid "Export Taxonomies"
510
+ msgstr "Taxonomien exportieren"
511
+
512
+ #: inc/import_export.php:482
513
+ msgid "No taxonomies registered yet."
514
+ msgstr "Es wurden noch keine Taxonomien definiert."
515
+
516
+ #: inc/import_export.php:488
517
+ msgid ""
518
+ "Use the content above to import current taxonomies into a different "
519
+ "WordPress site. You can also use this to simply back up your taxonomy "
520
+ "settings."
521
+ msgstr ""
522
+ "Benutzen Sie die Inhalte des \"Taxonomie exportieren\"-Feldes um die "
523
+ "aktuellen Taxonomien in eine andere WordPress Webseite zu importieren. Sie "
524
+ "können dies ebenso einfach dazu benutzen um Ihre Taxonomie-Einstellungen zu "
525
+ "sichern."
526
+
527
+ #: inc/import_export.php:499
528
+ msgid "Get Post Type and Taxonomy Code"
529
+ msgstr "Erhalten Sie Post Type- und Taxonomie-Code"
530
+
531
+ #: inc/import_export.php:501
532
+ msgid "All CPT UI Post Types"
533
+ msgstr "Alle CPT UI-Post Types"
534
+
535
+ #: inc/import_export.php:504 inc/import_export.php:513
536
+ #: inc/import_export.php:521 inc/import_export.php:530
537
+ msgid "Copy/paste the code below into your functions.php file."
538
+ msgstr ""
539
+ "Kopiere den Code in die Zwischenablage und füge ihn im Anschluss in Ihre "
540
+ "functions.php-Datei ein."
541
+
542
+ #: inc/import_export.php:512
543
+ #, php-format
544
+ msgid "%s Post Type"
545
+ msgstr "%s Post Type"
546
+
547
+ #: inc/import_export.php:518
548
+ msgid "All CPT UI Taxonomies"
549
+ msgstr "Alle CPT UI-Taxonomien"
550
+
551
+ #: inc/import_export.php:529
552
+ #, php-format
553
+ msgid "%s Taxonomy"
554
+ msgstr "%s Taxonomie"
555
+
556
+ #: inc/import_export.php:549
557
+ msgid "Please provide an email address to send debug information to: "
558
+ msgstr ""
559
+
560
+ #: inc/import_export.php:551
561
+ msgid "Send debug info"
562
+ msgstr ""
563
+
564
+ #: inc/listings.php:10
565
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
566
+ msgstr "In Custom Post Type UI registrierte Post Types und Taxonomien."
567
+
568
+ #: inc/listings.php:16 inc/listings.php:164
569
+ #, php-format
570
+ msgid "Total count: %d"
571
+ msgstr "Anzahl: %d"
572
+
573
+ #: inc/listings.php:21
574
+ msgid "Post Type"
575
+ msgstr "Post Type"
576
+
577
+ #: inc/listings.php:23 inc/post-types.php:754
578
+ msgid "Supports"
579
+ msgstr "Unterstützt"
580
+
581
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
582
+ #: inc/taxonomies.php:260
583
+ msgid "Labels"
584
+ msgstr "Beschriftungen"
585
+
586
+ #: inc/listings.php:26 inc/listings.php:173
587
+ #, fuzzy
588
+ msgid "Template Hierarchy"
589
+ msgstr "Hierarchischer Rewrite"
590
+
591
+ #: inc/listings.php:81
592
+ msgid "View frontend archive"
593
+ msgstr "Frontend-Archiv anzeigen"
594
+
595
+ #: inc/listings.php:114 inc/listings.php:249
596
+ msgid "No custom labels to display"
597
+ msgstr "Keine benutzerdefinierten Beschriftungen zum Anzeigen"
598
+
599
+ #: inc/listings.php:119
600
+ msgid "Archives file name examples."
601
+ msgstr ""
602
+
603
+ #: inc/listings.php:125
604
+ msgid "Single Posts file name examples."
605
+ msgstr ""
606
+
607
+ #: inc/listings.php:134 inc/listings.php:267
608
+ msgid "Template hierarchy Theme Handbook"
609
+ msgstr ""
610
+
611
+ #: inc/listings.php:152
612
+ #, php-format
613
+ msgid "No post types registered for display. Visit %s to get started."
614
+ msgstr ""
615
+ "Es wurden noch keine Post Types für die Darstellung erstellt. Besuchen Sie "
616
+ "%s um jetzt damit zu beginnen."
617
+
618
+ #: inc/listings.php:169
619
+ msgid "Taxonomy"
620
+ msgstr "Taxonomie"
621
+
622
+ #: inc/listings.php:254
623
+ #, fuzzy
624
+ msgid "Archives"
625
+ msgstr ""
626
+ "Du musst Deinen neu erstellten Post Type zu der Gruppe hinzufügen nach der "
627
+ "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
628
+ "Tutorial dazu unter %s"
629
+
630
+ #: inc/listings.php:263
631
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
632
+ msgstr ""
633
+
634
+ #: inc/listings.php:284
635
+ #, php-format
636
+ msgid "No taxonomies registered for display. Visit %s to get started."
637
+ msgstr ""
638
+ "Es wurden noch keine Taxonomien für die Darstellung erstellt. Besuchen Sie "
639
+ "%s um jetzt damit zu beginnen."
640
+
641
+ #: inc/post-types.php:34 inc/taxonomies.php:29
642
+ msgid "Are you sure you want to delete this?"
643
+ msgstr "Sind Sie sicher, dass Sie dies löschen möchten?"
644
+
645
+ #: inc/post-types.php:93
646
+ msgid ""
647
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
648
+ "registers a new post type entry for your install."
649
+ msgstr ""
650
+ "BEARBEITEN SIE NICHT den Post Type-Kurzlink solange dies nicht unbedingt "
651
+ "notwendig ist. Die Änderung des Namens registriert einen neue Post Type "
652
+ "Eintrag für Ihre Installation."
653
+
654
+ #: inc/post-types.php:94
655
+ msgid ""
656
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
657
+ "slugs and update post types for existing posts."
658
+ msgstr ""
659
+ "Benutzen Sie die Checkbox über den Speichern- und Löschen-Buttons falls Sie "
660
+ "den Kurzlink ändern wollen und den Post Type für bereits existierende "
661
+ "Beiträge anpassen."
662
+
663
+ #: inc/post-types.php:95 inc/taxonomies.php:90
664
+ msgid "Select: "
665
+ msgstr "Auswählen: "
666
+
667
+ #: inc/post-types.php:107 inc/taxonomies.php:102
668
+ msgid "Select"
669
+ msgstr "Auswählen"
670
+
671
+ #: inc/post-types.php:137
672
+ msgid "Post Type Slug"
673
+ msgstr "Post Type-Kurzlink"
674
+
675
+ #: inc/post-types.php:138
676
+ msgid "(e.g. movie)"
677
+ msgstr "(z. B. film)"
678
+
679
+ #: inc/post-types.php:139
680
+ msgid ""
681
+ "The post type name. Used to retrieve custom post type content. Should be "
682
+ "short and unique"
683
+ msgstr ""
684
+ "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
685
+ "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
686
+
687
+ #: inc/post-types.php:150 inc/taxonomies.php:140
688
+ msgid "Plural Label"
689
+ msgstr "Beschriftung (Plural)"
690
+
691
+ #: inc/post-types.php:151
692
+ msgid "(e.g. Movies)"
693
+ msgstr "(z. B. Filme)"
694
+
695
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
696
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
697
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
698
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
699
+ #: inc/post-types.php:411
700
+ msgid "Post type label. Used in the admin menu for displaying post types."
701
+ msgstr ""
702
+ "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
703
+ "verwendet den Post Type anzuzeigen."
704
+
705
+ #: inc/post-types.php:162 inc/taxonomies.php:149
706
+ msgid "Singular Label"
707
+ msgstr "Beschriftung (Singular)"
708
+
709
+ #: inc/post-types.php:163
710
+ msgid "(e.g. Movie)"
711
+ msgstr "(z. B. Film)"
712
+
713
+ #: inc/post-types.php:164
714
+ msgid ""
715
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
716
+ "needed."
717
+ msgstr ""
718
+ "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
719
+ "Beschriftungen in der Einzahl benötigt werden."
720
+
721
+ #: inc/post-types.php:180 inc/taxonomies.php:166
722
+ msgid "Description"
723
+ msgstr "Beschreibung"
724
+
725
+ #: inc/post-types.php:181
726
+ msgid ""
727
+ "Custom Post Type Description. Describe what your custom post type is used "
728
+ "for."
729
+ msgstr ""
730
+ "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
731
+ "verwendet wird."
732
+
733
+ #: inc/post-types.php:193
734
+ msgid "Migrate posts to newly renamed post type?"
735
+ msgstr ""
736
+ "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
737
+
738
+ #: inc/post-types.php:194
739
+ msgid "Check this to migrate posts if and when renaming your post type."
740
+ msgstr ""
741
+ "Haken Sie dies an um Beiträge zu übertragen im Falle dessen dass Sie Ihren "
742
+ "Post Type umbenennen wollen."
743
+
744
+ #: inc/post-types.php:213
745
+ msgid "Save Post Type"
746
+ msgstr "Post Type speichern"
747
+
748
+ #: inc/post-types.php:224
749
+ msgid "Delete Post Type"
750
+ msgstr "Post Type löschen"
751
+
752
+ #: inc/post-types.php:236
753
+ msgid "Add Post Type"
754
+ msgstr "Post Type hinzufügen"
755
+
756
+ #: inc/post-types.php:247 inc/taxonomies.php:249
757
+ msgid "Starter Notes"
758
+ msgstr "Tips für Einsteiger"
759
+
760
+ #: inc/post-types.php:250
761
+ #, php-format
762
+ msgid ""
763
+ "Post Type names should have %smax 20 characters%s, and only contain "
764
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
765
+ "letters that do not have accents. Reserved names: post, page, attachment, "
766
+ "revision, nav_menu_item."
767
+ msgstr ""
768
+ "Post Type-Namen dürfen %smaximal 20 Zeichen%s lang sein und nur "
769
+ "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
770
+ "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen. "
771
+ "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
772
+ "revision, nav_menu_item."
773
+
774
+ #: inc/post-types.php:251
775
+ #, php-format
776
+ msgid ""
777
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
778
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
779
+ "values. Labels, if left blank, will be automatically created based on the "
780
+ "post type name. Hover over the question mark for more details."
781
+ msgstr ""
782
+ "Sollten Sie mit der Nutzung der erweiterten Post Type-Einstellungen nicht "
783
+ "vertraut sein, dann tragen Sie nur Werte in das %sPost Type-Namen%s- sowie "
784
+ "das %sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
785
+ "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
786
+ "wurden, werden selbige automatisch, basierend auf dem Post Type-Namen, "
787
+ "erstellt. Für weitergehende Informationen fahren Sie mit dem Mauszeiger über "
788
+ "die roten Fragezeichen."
789
+
790
+ #: inc/post-types.php:252
791
+ #, php-format
792
+ msgid ""
793
+ "Deleting custom post types will %sNOT%s delete any content into the database "
794
+ "or added to those post types. You can easily recreate your post types and "
795
+ "the content will still exist."
796
+ msgstr ""
797
+ "Das Löschen eines Post Types führt %sNICHT%s zur Entfernung von Inhalten aus "
798
+ "der Datenbank. Sie können Ihre Post Types leicht erneut erstellen und die "
799
+ "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
800
+
801
+ #: inc/post-types.php:266 inc/taxonomies.php:270
802
+ msgid "Menu Name"
803
+ msgstr "Menü-Name"
804
+
805
+ #: inc/post-types.php:267
806
+ msgid "Custom menu name for your custom post type."
807
+ msgstr "Benutzerdefinierter Menü-Name für Ihren Custom Post Type."
808
+
809
+ #: inc/post-types.php:271
810
+ msgid "(e.g. My Movies)"
811
+ msgstr "(z. B. Mein Film)"
812
+
813
+ #: inc/post-types.php:278 inc/taxonomies.php:279
814
+ msgid "All Items"
815
+ msgstr "Alle Einträge"
816
+
817
+ #: inc/post-types.php:283
818
+ msgid "(e.g. All Movies)"
819
+ msgstr "(z. B. Alle Filme)"
820
+
821
+ #: inc/post-types.php:290
822
+ msgid "Add New"
823
+ msgstr "Neu"
824
+
825
+ #: inc/post-types.php:295
826
+ msgid "(e.g. Add New)"
827
+ msgstr "(z. B. Neuen hinzufügen)"
828
+
829
+ #: inc/post-types.php:302 inc/taxonomies.php:315
830
+ msgid "Add New Item"
831
+ msgstr "Neuen Eintrag erstellen"
832
+
833
+ #: inc/post-types.php:307
834
+ msgid "(e.g. Add New Movie)"
835
+ msgstr "(z. B. Neuen Film hinzufügen)"
836
+
837
+ #: inc/post-types.php:314
838
+ msgid "Edit"
839
+ msgstr "Bearbeiten"
840
+
841
+ #: inc/post-types.php:319
842
+ msgid "(e.g. Edit)"
843
+ msgstr "(z. B. Bearbeiten)"
844
+
845
+ #: inc/post-types.php:326 inc/taxonomies.php:288
846
+ msgid "Edit Item"
847
+ msgstr "Eintrag bearbeiten"
848
+
849
+ #: inc/post-types.php:331
850
+ msgid "(e.g. Edit Movie)"
851
+ msgstr "(z. B. Film bearbeiten)"
852
+
853
+ #: inc/post-types.php:338
854
+ msgid "New Item"
855
+ msgstr "Neuer Eintrag"
856
+
857
+ #: inc/post-types.php:343
858
+ msgid "(e.g. New Movie)"
859
+ msgstr "(z. B. Neuer Film)"
860
+
861
+ #: inc/post-types.php:350
862
+ msgid "View"
863
+ msgstr "Anzeigen"
864
+
865
+ #: inc/post-types.php:355
866
+ msgid "(e.g. View)"
867
+ msgstr "(z. B. Anzeigen)"
868
+
869
+ #: inc/post-types.php:362 inc/taxonomies.php:297
870
+ msgid "View Item"
871
+ msgstr "Eintrag anzeigen"
872
+
873
+ #: inc/post-types.php:367
874
+ msgid "(e.g. View Movie)"
875
+ msgstr "(z. B. Film anzeigen)"
876
+
877
+ #: inc/post-types.php:374
878
+ msgid "Search Item"
879
+ msgstr "Eintrag suchen"
880
+
881
+ #: inc/post-types.php:379
882
+ msgid "(e.g. Search Movie)"
883
+ msgstr "(z. B. Film suchen)"
884
+
885
+ #: inc/post-types.php:386
886
+ msgid "Not Found"
887
+ msgstr "Nicht gefunden"
888
+
889
+ #: inc/post-types.php:391
890
+ msgid "(e.g. No Movies found)"
891
+ msgstr "(z. B. Keine Filme gefunden)"
892
+
893
+ #: inc/post-types.php:398
894
+ msgid "Not Found in Trash"
895
+ msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
896
+
897
+ #: inc/post-types.php:403
898
+ msgid "(e.g. No Movies found in Trash)"
899
+ msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
900
+
901
+ #: inc/post-types.php:410
902
+ msgid "Parent"
903
+ msgstr "Übergeordnet"
904
+
905
+ #: inc/post-types.php:415
906
+ msgid "(e.g. Parent Movie)"
907
+ msgstr "(z. B. Übergeordneter Film)"
908
+
909
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
910
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
911
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
912
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
913
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
914
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
915
+ #: inc/taxonomies.php:548
916
+ msgid "False"
917
+ msgstr "deaktiviert"
918
+
919
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
920
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
921
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
922
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
923
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
924
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
925
+ #: inc/taxonomies.php:549
926
+ msgid "True"
927
+ msgstr "aktiviert"
928
+
929
+ #: inc/post-types.php:438
930
+ msgid "Public"
931
+ msgstr "Öffentlich"
932
+
933
+ #: inc/post-types.php:439
934
+ msgid "(CPTUI default: True.)"
935
+ msgstr "(CPTUI Voreinstellung: aktiviert)"
936
+
937
+ #: inc/post-types.php:440
938
+ msgid ""
939
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
940
+ "Whether posts of this type should be shown in the admin UI and is publicly "
941
+ "queryable."
942
+ msgstr ""
943
+ "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
944
+ "öffentlich durchsuchbar sind. Standardmäßig ist dies im WordPress Core "
945
+ "deaktiviert. Zur besseren Benutzbarkeit ist dies in CPTUI dagegen "
946
+ "standardmäßig aktiviert."
947
+
948
+ #: inc/post-types.php:458 inc/taxonomies.php:434
949
+ msgid "Show UI"
950
+ msgstr "Benutzeroberfläche anzeigen"
951
+
952
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
953
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
954
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
955
+ msgid "(default: True)"
956
+ msgstr "(Voreinstellung: aktiviert)"
957
+
958
+ #: inc/post-types.php:460
959
+ msgid "Whether to generate a default UI for managing this post type."
960
+ msgstr ""
961
+ "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
962
+ "angelegt werden."
963
+
964
+ #: inc/post-types.php:478
965
+ #, fuzzy
966
+ msgid "Show in Nav Menus"
967
+ msgstr "Im Menü anzeigen"
968
+
969
+ #: inc/post-types.php:479
970
+ #, fuzzy
971
+ msgid "(CPTUI default: true)"
972
+ msgstr "(CPTUI Voreinstellung: aktiviert)"
973
+
974
+ #: inc/post-types.php:480
975
+ msgid "Whether post type is available for selection in navigation menus."
976
+ msgstr ""
977
+
978
+ #: inc/post-types.php:498 inc/taxonomies.php:557
979
+ msgid "Show in REST API"
980
+ msgstr "In der REST API anzeigen"
981
+
982
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
983
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
984
+ #: inc/taxonomies.php:558
985
+ msgid "(default: False)"
986
+ msgstr "(Voreinstellung: deaktiviert)"
987
+
988
+ #: inc/post-types.php:500
989
+ msgid "Whether to show this post type data in the WP REST API."
990
+ msgstr ""
991
+ "Ob die Daten des Post Types in der WP REST API angezeigt werden sollen."
992
+
993
+ #: inc/post-types.php:508 inc/taxonomies.php:567
994
+ msgid "REST API base slug"
995
+ msgstr ""
996
+
997
+ #: inc/post-types.php:509 inc/taxonomies.php:568
998
+ #, fuzzy
999
+ msgid "Slug to use in REST API URLs."
1000
+ msgstr "In der REST API anzeigen"
1001
+
1002
+ #: inc/post-types.php:519
1003
+ msgid "Has Archive"
1004
+ msgstr "Hat ein Archiv"
1005
+
1006
+ #: inc/post-types.php:520
1007
+ msgid "Whether the post type will have a post type archive URL."
1008
+ msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
1009
+
1010
+ #: inc/post-types.php:521
1011
+ msgid "If left blank, the archive slug will default to the post type slug."
1012
+ msgstr ""
1013
+ "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
1014
+ "Post Type-Kurzlink gesetzt."
1015
+
1016
+ #: inc/post-types.php:547
1017
+ msgid "Slug to be used for archive URL."
1018
+ msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
1019
+
1020
+ #: inc/post-types.php:567
1021
+ msgid "Exclude From Search"
1022
+ msgstr "Von der Suche ausschließen"
1023
+
1024
+ #: inc/post-types.php:569
1025
+ msgid ""
1026
+ "Whether to exclude posts with this post type from front end search results."
1027
+ msgstr ""
1028
+ "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
1029
+ "ausgeschlossen werden sollen."
1030
+
1031
+ #: inc/post-types.php:580
1032
+ msgid "Capability Type"
1033
+ msgstr "Fähigkeiten"
1034
+
1035
+ #: inc/post-types.php:581
1036
+ msgid "The post type to use for checking read, edit, and delete capabilities"
1037
+ msgstr ""
1038
+ "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
1039
+ "Bearbeiten und Löschen zu prüfen"
1040
+
1041
+ #: inc/post-types.php:598 inc/taxonomies.php:417
1042
+ msgid "Hierarchical"
1043
+ msgstr "Hierarchisch"
1044
+
1045
+ #: inc/post-types.php:600
1046
+ msgid "Whether the post type can have parent-child relationships"
1047
+ msgstr "Darf der Post Type hierarchische Beziehungen haben"
1048
+
1049
+ #: inc/post-types.php:618 inc/taxonomies.php:477
1050
+ msgid "Rewrite"
1051
+ msgstr "Rewrite"
1052
+
1053
+ #: inc/post-types.php:620
1054
+ msgid "Whether or not WordPress should use rewrites for this post type"
1055
+ msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
1056
+
1057
+ #: inc/post-types.php:631 inc/taxonomies.php:488
1058
+ msgid "Custom Rewrite Slug"
1059
+ msgstr "Benutzerdefinierter Rewrite-Kurzlink"
1060
+
1061
+ #: inc/post-types.php:632
1062
+ msgid "(default: post type slug)"
1063
+ msgstr "(Voreinstellung: Post Type-Kurzlink)"
1064
+
1065
+ #: inc/post-types.php:633
1066
+ msgid "Custom post type slug to use instead of the default."
1067
+ msgstr ""
1068
+ "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
1069
+ "benutzt werden soll."
1070
+
1071
+ #: inc/post-types.php:650
1072
+ msgid "With Front"
1073
+ msgstr "Front Base voranstellen"
1074
+
1075
+ #: inc/post-types.php:652 inc/taxonomies.php:505
1076
+ msgid "Should the permastruct be prepended with the front base."
1077
+ msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
1078
+
1079
+ #: inc/post-types.php:670 inc/taxonomies.php:451
1080
+ msgid "Query Var"
1081
+ msgstr "Abfrage Variable"
1082
+
1083
+ #: inc/post-types.php:672
1084
+ msgid "Sets the query_var key for this post type."
1085
+ msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
1086
+
1087
+ #: inc/post-types.php:683
1088
+ msgid "Custom Query Var Slug"
1089
+ msgstr "Benutzerdefinierter Query Var-Kurzlink"
1090
+
1091
+ #: inc/post-types.php:684
1092
+ msgid "(default: post type slug) Query var needs to be true to use."
1093
+ msgstr ""
1094
+ "(Voreinstellung: Post Type Kurzlink) Die Abfrage-Variable muss zur Nutzung "
1095
+ "aktiviert sein."
1096
+
1097
+ #: inc/post-types.php:685
1098
+ msgid "Custom query var slug to use instead of the default."
1099
+ msgstr ""
1100
+ "Verwenden Sie einen benutzerdefinierten Abfrage-Variable-Kurzlink anstelle "
1101
+ "des standardmäßigen."
1102
+
1103
+ #: inc/post-types.php:692
1104
+ msgid "Menu Position"
1105
+ msgstr "Menü Position"
1106
+
1107
+ #: inc/post-types.php:693
1108
+ msgid ""
1109
+ "The position in the menu order the post type should appear. show_in_menu "
1110
+ "must be true."
1111
+ msgstr ""
1112
+ "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
1113
+ "anzeigen\" muss dafür aktiviert sein."
1114
+
1115
+ #: inc/post-types.php:694
1116
+ msgid ""
1117
+ "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1118
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
1119
+ "the \"menu_position\" section. Range of 5-100"
1120
+ msgstr ""
1121
+ "<a href=„http://codex.wordpress.org/Function_Reference/"
1122
+ "register_post_type#Parameters“>Lesen Sie mehr </a> zu den verfügbaren "
1123
+ "Einstellungsmöglichkeiten für die „Menü Position“ Funktion. Die möglichen "
1124
+ "Werte reichen von 5 bis 100."
1125
+
1126
+ #: inc/post-types.php:709
1127
+ msgid "Show in Menu"
1128
+ msgstr "Im Menü anzeigen"
1129
+
1130
+ #: inc/post-types.php:710
1131
+ msgid ""
1132
+ "Whether to show the post type in the admin menu and where to show that menu."
1133
+ msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
1134
+
1135
+ #: inc/post-types.php:711
1136
+ msgid ""
1137
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1138
+ "php\" is indicated for second input, post type will be sub menu of that."
1139
+ msgstr ""
1140
+ "\"Benutzeroberfläche anzeigen\" muss \"aktiviert\" sein. Sollte eine Top-"
1141
+ "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
1142
+ "angegeben sein wird der Post Type als Untermenü davon angezeigt."
1143
+
1144
+ #: inc/post-types.php:737
1145
+ msgid "Top-level page file name to make post type a sub-menu of."
1146
+ msgstr ""
1147
+ "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
1148
+
1149
+ #: inc/post-types.php:749
1150
+ msgid "Menu Icon"
1151
+ msgstr "Menü-Icon"
1152
+
1153
+ #: inc/post-types.php:750
1154
+ msgid "(Full URL for icon or Dashicon class)"
1155
+ msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
1156
+
1157
+ #: inc/post-types.php:751
1158
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1159
+ msgstr ""
1160
+ "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
1161
+ "Dashicon-Klasse."
1162
+
1163
+ #: inc/post-types.php:764
1164
+ msgid "Title"
1165
+ msgstr "Titel"
1166
+
1167
+ #: inc/post-types.php:765
1168
+ msgid "Adds the title meta box when creating content for this custom post type"
1169
+ msgstr ""
1170
+ "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1171
+ "erstellt werden"
1172
+
1173
+ #: inc/post-types.php:779
1174
+ msgid "Editor"
1175
+ msgstr "Text-Editor"
1176
+
1177
+ #: inc/post-types.php:780
1178
+ msgid ""
1179
+ "Adds the content editor meta box when creating content for this custom post "
1180
+ "type"
1181
+ msgstr ""
1182
+ "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
1183
+ "Type erstellt werden"
1184
+
1185
+ #: inc/post-types.php:794
1186
+ msgid "Excerpt"
1187
+ msgstr "Auszug"
1188
+
1189
+ #: inc/post-types.php:795
1190
+ msgid ""
1191
+ "Adds the excerpt meta box when creating content for this custom post type"
1192
+ msgstr ""
1193
+ "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1194
+ "erstellt werden"
1195
+
1196
+ #: inc/post-types.php:809
1197
+ msgid "Trackbacks"
1198
+ msgstr "Trackbacks"
1199
+
1200
+ #: inc/post-types.php:810
1201
+ msgid ""
1202
+ "Adds the trackbacks meta box when creating content for this custom post type"
1203
+ msgstr ""
1204
+ "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1205
+ "Type erstellt werden"
1206
+
1207
+ #: inc/post-types.php:824
1208
+ msgid "Custom Fields"
1209
+ msgstr "Eigene Felder"
1210
+
1211
+ #: inc/post-types.php:825
1212
+ msgid ""
1213
+ "Adds the custom fields meta box when creating content for this custom post "
1214
+ "type"
1215
+ msgstr ""
1216
+ "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1217
+ "Type erstellt werden"
1218
+
1219
+ #: inc/post-types.php:839
1220
+ msgid "Comments"
1221
+ msgstr "Kommentare"
1222
+
1223
+ #: inc/post-types.php:840
1224
+ msgid ""
1225
+ "Adds the comments meta box when creating content for this custom post type"
1226
+ msgstr ""
1227
+ "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1228
+ "Type erstellt werden"
1229
+
1230
+ #: inc/post-types.php:854
1231
+ msgid "Revisions"
1232
+ msgstr "Revisionen"
1233
+
1234
+ #: inc/post-types.php:855
1235
+ msgid ""
1236
+ "Adds the revisions meta box when creating content for this custom post type"
1237
+ msgstr ""
1238
+ "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1239
+ "Type erstellt werden"
1240
+
1241
+ #: inc/post-types.php:869
1242
+ msgid "Featured Image"
1243
+ msgstr "Beitragsbild"
1244
+
1245
+ #: inc/post-types.php:870
1246
+ msgid ""
1247
+ "Adds the featured image meta box when creating content for this custom post "
1248
+ "type"
1249
+ msgstr ""
1250
+ "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1251
+ "Type erstellt werden"
1252
+
1253
+ #: inc/post-types.php:884
1254
+ msgid "Author"
1255
+ msgstr "Autor"
1256
+
1257
+ #: inc/post-types.php:885
1258
+ msgid ""
1259
+ "Adds the author meta box when creating content for this custom post type"
1260
+ msgstr ""
1261
+ "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1262
+ "erstellt werden"
1263
+
1264
+ #: inc/post-types.php:899
1265
+ msgid "Page Attributes"
1266
+ msgstr "Seiten Attribute"
1267
+
1268
+ #: inc/post-types.php:900
1269
+ msgid ""
1270
+ "Adds the page attribute meta box when creating content for this custom post "
1271
+ "type"
1272
+ msgstr ""
1273
+ "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1274
+ "Post Type erstellt werden"
1275
+
1276
+ #: inc/post-types.php:914
1277
+ msgid "Post Formats"
1278
+ msgstr "Format"
1279
+
1280
+ #: inc/post-types.php:915
1281
+ msgid "Adds post format support"
1282
+ msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1283
+
1284
+ #: inc/post-types.php:920
1285
+ msgid "Use the option below to explicitly set \"supports\" to false."
1286
+ msgstr ""
1287
+ "Haken Sie die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen "
1288
+ "explizit zu deaktivieren."
1289
+
1290
+ #: inc/post-types.php:928
1291
+ msgid "None"
1292
+ msgstr "Keine"
1293
+
1294
+ #: inc/post-types.php:929
1295
+ msgid "Remove all support features"
1296
+ msgstr "Entfernt alle „Unterstützt“-Features"
1297
+
1298
+ #: inc/post-types.php:936
1299
+ msgid "Custom \"Supports\""
1300
+ msgstr "Benutzerdefinierte „Unterstützt“"
1301
+
1302
+ #: inc/post-types.php:937
1303
+ msgid ""
1304
+ "Use this input to register custom \"supports\" values, separated by commas."
1305
+ msgstr ""
1306
+ "Benutzen Sie diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1307
+ "definieren welche durch Kommas getrennt sind."
1308
+
1309
+ #: inc/post-types.php:943
1310
+ msgid "Provide custom support slugs here."
1311
+ msgstr ""
1312
+ "Stellen Sie hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1313
+
1314
+ #: inc/post-types.php:949
1315
+ msgid "Built-in Taxonomies"
1316
+ msgstr "Vorhandene Taxonomien"
1317
+
1318
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1319
+ #, php-format
1320
+ msgid "Adds %s support"
1321
+ msgstr "Fügt %s Unterstützung hinzu"
1322
+
1323
+ #: inc/post-types.php:1085
1324
+ msgid "Please provide a post type to delete"
1325
+ msgstr "Bitte geben Sie einen Post Type zum Löschen an"
1326
+
1327
+ #: inc/post-types.php:1145
1328
+ msgid "Please provide a post type name"
1329
+ msgstr "Bitte geben Sie einen Namen für den Post Type an"
1330
+
1331
+ #: inc/post-types.php:1169
1332
+ msgid "Please do not use quotes in post type names or rewrite slugs"
1333
+ msgstr ""
1334
+ "Bitte verwenden Sie keine Anführungszeichen im Post Type-Namen oder den "
1335
+ "Rewrite-Kurzlinks"
1336
+
1337
+ #: inc/post-types.php:1176
1338
+ #, php-format
1339
+ msgid "Please choose a different post type name. %s is already registered."
1340
+ msgstr ""
1341
+ "Bitte wählen Sie einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1342
+
1343
+ #: inc/support.php:45
1344
+ msgid "Custom Post Type UI Support"
1345
+ msgstr "Custom Post Type UI Support"
1346
+
1347
+ #: inc/support.php:47
1348
+ #, php-format
1349
+ msgid ""
1350
+ "Please note that this plugin will NOT handle display of registered post "
1351
+ "types or taxonomies in your current theme. It will simply register them for "
1352
+ "you. If all else fails, visit us on the %s"
1353
+ msgstr ""
1354
+ "Beachten Sie bitte, dass dieses Plugin NICHT die Anzeige der erstellten Post "
1355
+ "Types oder Taxonomien in Ihrem aktiven Theme übernimmt. Es wird diese "
1356
+ "lediglich für Sie registrieren. Bei allen weiteren Problemen besuchen Sie "
1357
+ "bitte unsere %s"
1358
+
1359
+ #: inc/support.php:48
1360
+ msgid "Support Forums"
1361
+ msgstr "Support Foren"
1362
+
1363
+ #: inc/support.php:54
1364
+ msgid "General"
1365
+ msgstr "Allgemein"
1366
+
1367
+ #: inc/support.php:57
1368
+ msgid ""
1369
+ "I have post types with spaces in their slug and can not successfully delete "
1370
+ "them. How can I fix that?"
1371
+ msgstr ""
1372
+
1373
+ #: inc/support.php:58
1374
+ msgid ""
1375
+ "Visit the Import/Export page and copy the export code into the import side "
1376
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1377
+ "You should be able to delete the individual post types afterwards."
1378
+ msgstr ""
1379
+
1380
+ #: inc/support.php:62
1381
+ msgid ""
1382
+ "I changed my custom post type name and now I can not get to my posts. How do "
1383
+ "I get them back?"
1384
+ msgstr ""
1385
+ "Sie haben den Namen Ihres Custom Post Types verändert und jetzt haben Sie "
1386
+ "keinen Zugriff mehr auf Ihre Beiträge. Wie bekommen Sie diese wieder zurück?"
1387
+
1388
+ #: inc/support.php:63
1389
+ msgid ""
1390
+ "You can either change the custom post type name back to the original name or "
1391
+ "try the Post Type Switcher plugin"
1392
+ msgstr ""
1393
+ "Sie können entweder den Namen des Custom Post Types auf den ursprünglichen "
1394
+ "zurücksetzen oder aber Sie verwenden das Post Type Switcher-Plugin"
1395
+
1396
+ #: inc/support.php:68
1397
+ msgid ""
1398
+ "I changed my custom post type or taxonomy slug and now I have duplicates "
1399
+ "shown. How do I remove the duplicate?"
1400
+ msgstr ""
1401
+ "Sie haben Ihren Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1402
+ "jetzt werden Duplikate angezeigt. Wie können Sie diese wieder entfernen?"
1403
+
1404
+ #: inc/support.php:69
1405
+ msgid ""
1406
+ "Renaming the slug for a post type or taxonomy creates a new entry in our "
1407
+ "saved option which gets registered as its own post type or taxonomy. Since "
1408
+ "the settings will be mirrored from the previous slug, you will just need to "
1409
+ "delete the previous version's entry."
1410
+ msgstr ""
1411
+ "Die Umbenennung des Kurzlinks eines Post Types oder einer Taxonomie erstellt "
1412
+ "einen neuen, eigenen Post Type oder Taxonomie. Nachdem die Einstellung aus "
1413
+ "dem vorherigen Kurzlink übernommen worden sind müssen Sie einfach den "
1414
+ "ursprünglichen Eintrag löschen."
1415
+
1416
+ #: inc/support.php:72
1417
+ msgid ""
1418
+ "I have added post thumbnail and/or post format support to my post type, but "
1419
+ "those do not appear when adding a post type post."
1420
+ msgstr ""
1421
+ "Sie haben ein Beitrags-Thumbnail und/oder einen Format-Support zu Ihrem Post "
1422
+ "Type hinzugefügt. Diese werden aber nicht angezeigt wenn Sie einen Beitrag "
1423
+ "mit diesem Post Type hinzufügen."
1424
+
1425
+ #: inc/support.php:73
1426
+ msgid ""
1427
+ "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1428
+ msgstr ""
1429
+ "Stellen Sie sicher, dass Ihr Theme für Beiträge den Support von \"Beitrags-"
1430
+ "Thumbnails\" aktiviert hat"
1431
+
1432
+ #: inc/support.php:76
1433
+ msgid "Do you have any recommendations for an alternative to Visual Composer."
1434
+ msgstr "Haben Sie eine Empfehlung für eine Alternative zu Visual Composer."
1435
+
1436
+ #: inc/support.php:77
1437
+ msgid "We recommend using VelocityPage."
1438
+ msgstr "Wir empfehlen die Benutzung von VelocityPage."
1439
+
1440
+ #: inc/support.php:82
1441
+ msgid ""
1442
+ "Is there any way to get CPTUI-registered post types working with Visual "
1443
+ "Composer Media Grid?"
1444
+ msgstr ""
1445
+ "Gibt es eine Möglichkeit mit CPTUI registrierte Post Types unter Visual "
1446
+ "Composer Media Grid zum Laufen zu bekommen?"
1447
+
1448
+ #: inc/support.php:84
1449
+ msgid "Please see the solution from the following forum support thread."
1450
+ msgstr "Gehen Sie bitte zur Lösung in folgendem Foren-Support-Thread."
1451
+
1452
+ #: inc/support.php:91
1453
+ msgid "Front-end Display"
1454
+ msgstr "Front-End Anzeige"
1455
+
1456
+ #: inc/support.php:94
1457
+ msgid "What template files should I edit to alter my post type display?"
1458
+ msgstr ""
1459
+ "Welche Template-Dateien sollten Sie bearbeiten um die Anzeige Ihrer Post "
1460
+ "Types zu verändern?"
1461
+
1462
+ #: inc/support.php:95
1463
+ #, php-format
1464
+ msgid ""
1465
+ "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1466
+ "details about available templates."
1467
+ msgstr ""
1468
+ "Besuchen Sie bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um "
1469
+ "mehr über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1470
+
1471
+ #: inc/support.php:102
1472
+ msgid "How do I display my custom post type on my site?"
1473
+ msgstr ""
1474
+ "Wie können Sie Ihre Custom Post Types auf Ihrer Webseite anzeigen lassen?"
1475
+
1476
+ #: inc/support.php:103
1477
+ #, php-format
1478
+ msgid ""
1479
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
1480
+ "locations. If you have set the post type to have archives, the archive url "
1481
+ "should be something like \"http://www.mysite.com/post-type-slug\""
1482
+ msgstr ""
1483
+ "Sie werden %sWP_Query%s nutzen müssen um den Ort der Darstellung frei wählen "
1484
+ "zu können. Sollten Sie für den Post Type eingestellt haben, dass er ein "
1485
+ "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1486
+ "\" lauten."
1487
+
1488
+ #: inc/support.php:109
1489
+ msgid ""
1490
+ "I have added categories and tags to my custom post type, but they do not "
1491
+ "appear in the archives."
1492
+ msgstr ""
1493
+ "Sie haben Kategorien und Tags zu Ihrem Custom Post Type hinzugefügt, aber "
1494
+ "sie werden nicht in den Archiven angezeigt."
1495
+
1496
+ #: inc/support.php:110
1497
+ #, php-format
1498
+ msgid ""
1499
+ "You will need to add your newly created post type to the types that the "
1500
+ "category and tag archives query for. You can see a tutorial on how to do "
1501
+ "that at %s"
1502
+ msgstr ""
1503
+ "Sie müssen Ihren neu erstellten Post Type zu der Gruppe hinzufügen nach der "
1504
+ "die Kategorie- und Ettiketten-Archive durchsucht werden. Sie finden ein "
1505
+ "Tutorial dazu unter %s"
1506
+
1507
+ #: inc/support.php:119
1508
+ msgid "Advanced"
1509
+ msgstr "Erweitert"
1510
+
1511
+ #: inc/support.php:122
1512
+ msgid "How do I add custom metaboxes to my post type?"
1513
+ msgstr "Wie fügen Sie benutzerdefinierte Metaboxen zu Ihrem Post Type hinzu?"
1514
+
1515
+ #: inc/support.php:124
1516
+ #, php-format
1517
+ msgid ""
1518
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1519
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1520
+ msgstr ""
1521
+ "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1522
+ "WordPress\". Beides wird von den WebDevStudios entwickelt."
1523
+
1524
+ #: inc/support.php:130
1525
+ msgid ""
1526
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1527
+ msgstr ""
1528
+ "Wie fügen Sie eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1529
+ "bereits existiert?"
1530
+
1531
+ #: inc/support.php:132
1532
+ #, php-format
1533
+ msgid "Check out the %s function for documentation and usage examples."
1534
+ msgstr ""
1535
+ "Werfen Sie einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1536
+ "Nutzungsbeispielen."
1537
+
1538
+ #: inc/support.php:138
1539
+ msgid "Post relationships?"
1540
+ msgstr "Beitragsbeziehungen?"
1541
+
1542
+ #: inc/support.php:139
1543
+ #, php-format
1544
+ msgid ""
1545
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1546
+ "plugin that should be a good start."
1547
+ msgstr ""
1548
+ "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1549
+ "%s Plugins veröffentlicht."
1550
+
1551
+ #: inc/support.php:148
1552
+ msgid "Is there any function reference list?"
1553
+ msgstr "Gibt es eine Funktion Referenz-Liste?"
1554
+
1555
+ #: inc/support.php:149
1556
+ #, php-format
1557
+ msgid ""
1558
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1559
+ "will be useful as they are attached to hooks."
1560
+ msgstr ""
1561
+ "%s hat eine schöne Liste an Funktionen zusammengestellt die von unserem "
1562
+ "Plugin benutzt werden. Merke, nicht alle genannten werden hilfreich sein da "
1563
+ "sie an Hooks gekoppelt sind."
1564
+
1565
+ #: inc/support.php:153
1566
+ msgid ""
1567
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1568
+ msgstr ""
1569
+ "Wie können Sie den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1570
+ "\"-Fenster ändern?"
1571
+
1572
+ #: inc/support.php:154
1573
+ msgid ""
1574
+ "Change text inside the post/page editor title field. Should be able to adapt "
1575
+ "as necessary."
1576
+ msgstr ""
1577
+ "Ändern Sie den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es "
1578
+ "sollte möglich sein dies anzupassen falls notwendig."
1579
+
1580
+ #: inc/taxonomies.php:89
1581
+ msgid ""
1582
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1583
+ "registers a new taxonomy entry for your install."
1584
+ msgstr ""
1585
+ "BEARBEITEN SIE NICHT den Taxonomie Kurzlink solange dies nicht unbedingt "
1586
+ "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1587
+ "Eintrag für Ihre Installation."
1588
+
1589
+ #: inc/taxonomies.php:129
1590
+ msgid "Taxonomy Slug"
1591
+ msgstr "Taxonomie-Kurzlink"
1592
+
1593
+ #: inc/taxonomies.php:130
1594
+ msgid "(e.g. actor)"
1595
+ msgstr "(z. B. regisseure)"
1596
+
1597
+ #: inc/taxonomies.php:131
1598
+ msgid ""
1599
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1600
+ "and unique"
1601
+ msgstr ""
1602
+ "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1603
+ "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1604
+
1605
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1606
+ msgid "(e.g. Actors)"
1607
+ msgstr "(z. B. Regisseure)"
1608
+
1609
+ #: inc/taxonomies.php:141
1610
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1611
+ msgstr ""
1612
+ "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1613
+ "benutzerdefinierte Taxonomien anzuzeigen."
1614
+
1615
+ #: inc/taxonomies.php:148
1616
+ msgid "(e.g. Actor)"
1617
+ msgstr "(z. B. Regisseur)"
1618
+
1619
+ #: inc/taxonomies.php:150
1620
+ msgid ""
1621
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1622
+ msgstr ""
1623
+ "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1624
+ "Beschriftungen in der Einzahl benötigt werden."
1625
+
1626
+ #: inc/taxonomies.php:167
1627
+ #, fuzzy
1628
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1629
+ msgstr ""
1630
+ "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
1631
+ "verwendet wird."
1632
+
1633
+ #: inc/taxonomies.php:170
1634
+ msgid "Attach to Post Type"
1635
+ msgstr "Mit Post Type verbinden"
1636
+
1637
+ #: inc/taxonomies.php:220
1638
+ msgid "Save Taxonomy"
1639
+ msgstr "Taxonomie speichern"
1640
+
1641
+ #: inc/taxonomies.php:231
1642
+ msgid "Delete Taxonomy"
1643
+ msgstr "Taxonomie löschen"
1644
+
1645
+ #: inc/taxonomies.php:243
1646
+ msgid "Add Taxonomy"
1647
+ msgstr "Taxonomie hinzufügen"
1648
+
1649
+ #: inc/taxonomies.php:252
1650
+ #, php-format
1651
+ msgid ""
1652
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1653
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1654
+ "letters that do not have accents."
1655
+ msgstr ""
1656
+ "Taxonomie Namen dürfen %smaximal 32 Zeichen%s lang sein und nur "
1657
+ "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1658
+ "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1659
+
1660
+ #: inc/taxonomies.php:253
1661
+ #, php-format
1662
+ msgid ""
1663
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1664
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1665
+ "settings will use default values. Labels, if left blank, will be "
1666
+ "automatically created based on the taxonomy name. Hover over the question "
1667
+ "marks for more details."
1668
+ msgstr ""
1669
+ "Sollten Sie mit der Nutzung der erweiterten Taxonomie-Einstellungen nicht "
1670
+ "vertraut sein, dann tragen Sie nur Werte in das %sTaxonomie-Namen%s sowie "
1671
+ "das %sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
1672
+ "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
1673
+ "wurden, werden selbige automatisch, basierend auf dem Taxonomie-Namen "
1674
+ "erstellt. Für weitergehende Informationen fahren Sie mit dem Mauszeiger über "
1675
+ "die roten Fragezeichen."
1676
+
1677
+ #: inc/taxonomies.php:254
1678
+ #, php-format
1679
+ msgid ""
1680
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1681
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1682
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1683
+ "terms in the database."
1684
+ msgstr ""
1685
+ "Das Löschen einer benutzerdefinierten Taxonomie führt %sNICHT%s zur "
1686
+ "Entfernung von Begriffen die zu diesen Taxonomien hinzugefügt wurden. Sie "
1687
+ "können Ihre Taxonomien leicht erneut erstellen und die bereits eingegebenen "
1688
+ "Inhalte sind wieder sicht- und bearbeitbar. Sollte der Namen, nachdem die "
1689
+ "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1690
+ "Begriffe nicht in der Datenbank aktualisiert."
1691
+
1692
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1693
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1694
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1695
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1696
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1697
+ msgid ""
1698
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1699
+ msgstr ""
1700
+ "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1701
+ "Anzeige von Taxonomien verwendet."
1702
+
1703
+ #: inc/taxonomies.php:278
1704
+ msgid "(e.g. All Actors)"
1705
+ msgstr "(z. B. Alle Regisseure)"
1706
+
1707
+ #: inc/taxonomies.php:287
1708
+ msgid "(e.g. Edit Actor)"
1709
+ msgstr "(z. B. Regisseur bearbeiten)"
1710
+
1711
+ #: inc/taxonomies.php:296
1712
+ msgid "(e.g. View Actor)"
1713
+ msgstr "(z. B. Regisseur anzeigen)"
1714
+
1715
+ #: inc/taxonomies.php:305
1716
+ msgid "(e.g. Update Actor Name)"
1717
+ msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1718
+
1719
+ #: inc/taxonomies.php:306
1720
+ msgid "Update Item Name"
1721
+ msgstr "Eintragsname aktualisieren"
1722
+
1723
+ #: inc/taxonomies.php:314
1724
+ msgid "(e.g. Add New Actor)"
1725
+ msgstr "(z. B. Neuen Regisseur hinzufügen)"
1726
+
1727
+ #: inc/taxonomies.php:323
1728
+ msgid "(e.g. New Actor Name)"
1729
+ msgstr "(z. B. Neuer Regisseursname)"
1730
+
1731
+ #: inc/taxonomies.php:324
1732
+ msgid "New Item Name"
1733
+ msgstr "Neuer Eintragsname"
1734
+
1735
+ #: inc/taxonomies.php:332
1736
+ msgid "(e.g. Parent Actor)"
1737
+ msgstr "(z. B. Übergeordneter Regisseur)"
1738
+
1739
+ #: inc/taxonomies.php:333
1740
+ msgid "Parent Item"
1741
+ msgstr "Übergeordneter Eintrag"
1742
+
1743
+ #: inc/taxonomies.php:341
1744
+ msgid "(e.g. Parent Actor:)"
1745
+ msgstr "(z. B. Übergeordneter Regisseur:)"
1746
+
1747
+ #: inc/taxonomies.php:342
1748
+ msgid "Parent Item Colon"
1749
+ msgstr "Übergeordneter Eintrag Komma"
1750
+
1751
+ #: inc/taxonomies.php:350
1752
+ msgid "(e.g. Search Actors)"
1753
+ msgstr "(z. B. Regisseure durchsuchen)"
1754
+
1755
+ #: inc/taxonomies.php:351
1756
+ msgid "Search Items"
1757
+ msgstr "Einträge durchsuchen"
1758
+
1759
+ #: inc/taxonomies.php:359
1760
+ msgid "(e.g. Popular Actors)"
1761
+ msgstr "(z. B. beliebte Regisseure)"
1762
+
1763
+ #: inc/taxonomies.php:360
1764
+ msgid "Popular Items"
1765
+ msgstr "Beliebte Einträge"
1766
+
1767
+ #: inc/taxonomies.php:368
1768
+ #, fuzzy
1769
+ msgid "(e.g. Separate Actors with commas)"
1770
+ msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1771
+
1772
+ #: inc/taxonomies.php:369
1773
+ msgid "Separate Items with Commas"
1774
+ msgstr "Trenne Einträge mittels Komma"
1775
+
1776
+ #: inc/taxonomies.php:377
1777
+ #, fuzzy
1778
+ msgid "(e.g. Add or remove Actors)"
1779
+ msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1780
+
1781
+ #: inc/taxonomies.php:378
1782
+ msgid "Add or Remove Items"
1783
+ msgstr "Lösche oder füge Einträge hinzu"
1784
+
1785
+ #: inc/taxonomies.php:386
1786
+ #, fuzzy
1787
+ msgid "(e.g. Choose from the most used Actors)"
1788
+ msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1789
+
1790
+ #: inc/taxonomies.php:387
1791
+ msgid "Choose From Most Used"
1792
+ msgstr "Wähle aus den am meisten Verwendeten"
1793
+
1794
+ #: inc/taxonomies.php:395
1795
+ #, fuzzy
1796
+ msgid "(e.g. No Actors found)"
1797
+ msgstr "(z. B. Keine Regisseure gefunden)"
1798
+
1799
+ #: inc/taxonomies.php:396
1800
+ msgid "Not found"
1801
+ msgstr "Nicht gefunden"
1802
+
1803
+ #: inc/taxonomies.php:419
1804
+ msgid "Whether the taxonomy can have parent-child relationships"
1805
+ msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1806
+
1807
+ #: inc/taxonomies.php:436
1808
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1809
+ msgstr ""
1810
+ "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1811
+ "benutzerdefinierten Taxonomie erstellt werden soll."
1812
+
1813
+ #: inc/taxonomies.php:453
1814
+ msgid "Sets the query_var key for this taxonomy."
1815
+ msgstr "Legen Sie den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1816
+
1817
+ #: inc/taxonomies.php:461
1818
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1819
+ msgstr ""
1820
+ "(Voreinstellung: Taxonomie Kurzlink) Die Abfrage-Variable muss zur Nutzung "
1821
+ "aktiviert sein."
1822
+
1823
+ #: inc/taxonomies.php:462
1824
+ msgid "Custom Query Var String"
1825
+ msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1826
+
1827
+ #: inc/taxonomies.php:463
1828
+ msgid "Sets a custom query_var slug for this taxonomy."
1829
+ msgstr ""
1830
+ "Definieren Sie einen benutzerdefinierten Abfrage-Variablen-Kurzlink für "
1831
+ "diese Taxonomie."
1832
+
1833
+ #: inc/taxonomies.php:479
1834
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1835
+ msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1836
+
1837
+ #: inc/taxonomies.php:487
1838
+ msgid "(default: taxonomy name)"
1839
+ msgstr "(Voreinstellung: Taxanomie Name)"
1840
+
1841
+ #: inc/taxonomies.php:489
1842
+ msgid "Custom taxonomy rewrite slug."
1843
+ msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1844
+
1845
+ #: inc/taxonomies.php:503
1846
+ msgid "Rewrite With Front"
1847
+ msgstr "Rewrite mit vorangestellter Front Base"
1848
+
1849
+ #: inc/taxonomies.php:504
1850
+ msgid "(default: true)"
1851
+ msgstr "(Voreinstellung: aktiviert)"
1852
+
1853
+ #: inc/taxonomies.php:520
1854
+ msgid "Rewrite Hierarchical"
1855
+ msgstr "Hierarchischer Rewrite"
1856
+
1857
+ #: inc/taxonomies.php:521
1858
+ msgid "(default: false)"
1859
+ msgstr "(Voreinstellung: deaktiviert)"
1860
+
1861
+ #: inc/taxonomies.php:522
1862
+ msgid "Should the permastruct allow hierarchical urls."
1863
+ msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1864
+
1865
+ #: inc/taxonomies.php:537
1866
+ msgid "Show Admin Column"
1867
+ msgstr "Anzeige von Admin-Spalten"
1868
+
1869
+ #: inc/taxonomies.php:539
1870
+ msgid ""
1871
+ "Whether to allow automatic creation of taxonomy columns on associated post-"
1872
+ "types."
1873
+ msgstr ""
1874
+ "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1875
+ "Post Types erlaubt werden."
1876
+
1877
+ #: inc/taxonomies.php:559
1878
+ #, fuzzy
1879
+ msgid "Whether to show this taxonomy data in the WP REST API."
1880
+ msgstr ""
1881
+ "Ob die Daten des Post Types in der WP REST API angezeigt werden sollen."
1882
+
1883
+ #: inc/taxonomies.php:676
1884
+ msgid "Please provide a taxonomy to delete"
1885
+ msgstr "Geben Sie bitte eine Taxonomie zum Löschen an"
1886
+
1887
+ #: inc/taxonomies.php:727
1888
+ msgid "Please provide a taxonomy name"
1889
+ msgstr "Geben Sie bitte einen Taxonomie-Namen an"
1890
+
1891
+ #: inc/taxonomies.php:743
1892
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1893
+ msgstr ""
1894
+ "Benutzen Sie bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1895
+ "Kurzlinks"
1896
+
1897
+ #: inc/taxonomies.php:749
1898
+ #, php-format
1899
+ msgid "Please choose a different taxonomy name. %s is already used."
1900
+ msgstr ""
1901
+ "Bitte wählen Sie einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1902
+
1903
+ #. Plugin URI of the plugin/theme
1904
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1905
+ msgstr "https://github.com/WebDevStudios/custom-post-type-ui/"
1906
+
1907
+ #. Description of the plugin/theme
1908
+ msgid ""
1909
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1910
+ msgstr ""
1911
+ "Benutzeroberfläche für die Erstellung von Custom Post Types und "
1912
+ "benutzerdefinierten Taxonomien im Admin-Menü von WordPress"
1913
+
1914
+ #. Author of the plugin/theme
1915
+ msgid "WebDevStudios"
1916
+ msgstr "WebDevStudios"
1917
+
1918
+ #. Author URI of the plugin/theme
1919
+ msgid "http://webdevstudios.com/"
1920
+ msgstr "http://webdevstudios.com/"
1921
+
1922
+ #~ msgid "Post type migration"
1923
+ #~ msgstr "Post Type Migrierung"
1924
+
1925
+ #~ msgid ""
1926
+ #~ "In the past, if you changed your post type slug, you would lose immediate "
1927
+ #~ "access to the posts in the post type and need to recover another way. We "
1928
+ #~ "have now added support for migrating all posts within the old post type "
1929
+ #~ "to the new post type you renamed it to."
1930
+ #~ msgstr ""
1931
+ #~ "Bisher war es so, sobald Sie den Kurzlink eines Post Types verändert "
1932
+ #~ "haben, verloren Sie den direkten Zugriff auf alle seine Beiträge und "
1933
+ #~ "musstest diese anderweitig wiederherstellen. Wir haben jetzt die "
1934
+ #~ "Unterstützung für die Migration von Beiträgen aus dem alten Post Type in "
1935
+ #~ "den neu umbenannten hinzugefügt."
1936
+
1937
+ #~ msgid "UI Refinement"
1938
+ #~ msgstr "Verbesserte Benutzeroberfläche"
1939
+
1940
+ #~ msgid ""
1941
+ #~ "After receiving feedback regarding the 1.0.x changes, we have further "
1942
+ #~ "simplified the UI to reduce the amount of clicking necessary to manage "
1943
+ #~ "your post types and taxonomies."
1944
+ #~ msgstr ""
1945
+ #~ "Nach dem Feedback zu den Änderungen in 1.0.x, haben wir die "
1946
+ #~ "Benutzeroberfläche weiter vereinfacht um die Anzahl der notwendigen "
1947
+ #~ "Mausklicks zur Verwaltung Ihrer Post Types und Taxonomien weiter zu "
1948
+ #~ "minimieren."
1949
+
1950
+ #~ msgid "Registered Post Type and Taxonomy Listings"
1951
+ #~ msgstr "Listen der registrierten Post Types und Taxonomien"
1952
+
1953
+ #~ msgid ""
1954
+ #~ "We are bringing back the listing of all CPTUI-registered post types and "
1955
+ #~ "taxonomies for easier quick view of what you have going."
1956
+ #~ msgstr ""
1957
+ #~ "Wir bringen die Listendarstellung aller durch CPT UI registrierten Post "
1958
+ #~ "Types und Taxonomien zurück, damit Sie leichter den Überblick behalten."
1959
+
1960
+ #~ msgid ""
1961
+ #~ "Whether posts of this type should be shown in the admin UI and is "
1962
+ #~ "publicly queryable."
1963
+ #~ msgstr ""
1964
+ #~ "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
1965
+ #~ "öffentlich durchsuchbar sind."
1966
+
1967
+ #~ msgid "(default: none). Query Var needs to be true to use."
1968
+ #~ msgstr ""
1969
+ #~ "(Voreinstellung: Keine - Abfrage-Variable muss aktiviert sein um es "
1970
+ #~ "benutzen zu können)"
1971
+
1972
+ #~ msgid "Whether posts of this type should be shown in the admin UI"
1973
+ #~ msgstr ""
1974
+ #~ "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
1975
+
1976
+ #~ msgid "(e.g. actors)"
1977
+ #~ msgstr "(z. B. regisseure)"
1978
+
1979
+ #~ msgid "View on front"
1980
+ #~ msgstr "In der Front betrachten"
1981
+
1982
+ #~ msgid ""
1983
+ #~ "To get started with creating some post types, please visit %s and for "
1984
+ #~ "taxonomies, visit %s. If you need some help, check the %s page. If "
1985
+ #~ "nothing there fits your issue, visit our %s and we will try to get to "
1986
+ #~ "your question as soon as possible."
1987
+ #~ msgstr ""
1988
+ #~ "Um Custom Post Types UI näher kennenzulernen erstelle doch unter %s "
1989
+ #~ "einige Post Types; Taxonomien kannst Du unter %s erstellen. Falls Du "
1990
+ #~ "Hilfe benötigst, gehe bitte auf die %s Seite. Sollte keiner der "
1991
+ #~ "angeführten Lösungsansätze bei deinem Problem behilflich sein, besuche "
1992
+ #~ "unser %s und wir werden uns Deiner Frage so schnell wie möglich annehmen."
1993
+
1994
+ #~ msgid "CPT UI Support Forum"
1995
+ #~ msgstr "CPT UI Support Forum"
1996
+
1997
+ #~ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
1998
+ #~ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
1999
+
2000
+ #~ msgid ""
2001
+ #~ "Select a post type to edit. DO NOT EDIT the post type slug unless "
2002
+ #~ "necessary. Changing that value registers a new post type entry for your "
2003
+ #~ "install."
2004
+ #~ msgstr ""
2005
+ #~ "Wähle einen Post Type zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
2006
+ #~ "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung "
2007
+ #~ "des Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
2008
+
2009
+ #~ msgid "Edit Post Type"
2010
+ #~ msgstr "Post Type bearbeiten"
2011
+
2012
+ #~ msgid "Click headings to reveal available options."
2013
+ #~ msgstr ""
2014
+ #~ "Klicke die Überschriften an um die verfügbaren Einstellungsmöglichkeiten "
2015
+ #~ "anzuzeigen."
2016
+
2017
+ #~ msgid "Click to expand"
2018
+ #~ msgstr "Zum Aufklappen anklicken"
2019
+
2020
+ #~ msgid "Whether posts of this type should be shown in the admin UI."
2021
+ #~ msgstr "Sollen Beiträge dieses Typs im Admin-Interface angezeigt werden."
2022
+
2023
+ #~ msgid "Whether the post type will have a post type archive page."
2024
+ #~ msgstr "Soll der Post Type eine Archiv-Seite besitzen."
2025
+
2026
+ #~ msgid "Slug to be used for archive page."
2027
+ #~ msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
2028
+
2029
+ #~ msgid "Whether the post type will be searchable"
2030
+ #~ msgstr "Soll der Post Type durchsuchbar sein"
2031
+
2032
+ #~ msgid "Triggers the handling of rewrites for this post type"
2033
+ #~ msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
2034
+
2035
+ #~ msgid "(default: post type name)"
2036
+ #~ msgstr "(Voreinstellung: Post Type-Name)"
2037
+
2038
+ #~ msgid "Custom slug to use instead of the default."
2039
+ #~ msgstr ""
2040
+ #~ "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt "
2041
+ #~ "werden soll."
2042
+
2043
+ #~ msgid "URL or Dashicon value for image to be used as menu icon."
2044
+ #~ msgstr ""
2045
+ #~ "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
2046
+
2047
+ #~ msgid ""
2048
+ #~ "Whether to show the post type in the admin menu and where to show that "
2049
+ #~ "menu. Note that show_ui must be true."
2050
+ #~ msgstr ""
2051
+ #~ "Soll der Post Type im Admin-Menü angezeigt werden und wenn ja wo. Merke "
2052
+ #~ "show_ui muss dazu aktiviert sein."
2053
+
2054
+ #~ msgid "URL to image to be used as menu icon."
2055
+ #~ msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
2056
+
2057
+ #~ msgid ""
2058
+ #~ "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless "
2059
+ #~ "necessary. Changing that value registers a new taxonomy entry for your "
2060
+ #~ "install."
2061
+ #~ msgstr ""
2062
+ #~ "Wähle eine Taxonomie zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
2063
+ #~ "einer Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung "
2064
+ #~ "des Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
2065
+
2066
+ #~ msgid "Edit Taxonomy"
2067
+ #~ msgstr "Taxonomien bearbeiten"
2068
+
2069
+ #~ msgid "Whether to generate a default UI for managing this custom taxonomy"
2070
+ #~ msgstr ""
2071
+ #~ "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
2072
+ #~ "benutzerdefinierten Taxonomien erstellt werden"
2073
+
2074
+ #~ msgid "Triggers the handling of rewrites for this taxonomy"
2075
+ #~ msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
2076
+
2077
+ #~ msgid "Custom Taxonomy Rewrite Slug"
2078
+ #~ msgstr "Benutzerdefinierter Taxonomie Rewrite-Kurzlink"
2079
+
2080
+ #~ msgid "Whether to generate a default UI for managing this post type"
2081
+ #~ msgstr ""
2082
+ #~ "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
2083
+ #~ "erstellt werden"
2084
+
2085
+ #~ msgid "Whether the post type will have a post type archive page"
2086
+ #~ msgstr "Soll es für den Post Type einen Archiv-Index geben"
2087
+
2088
+ #~ msgid "Show In Menu"
2089
+ #~ msgstr "Im Menü anzeigen"
2090
+
2091
+ #~ msgid ""
2092
+ #~ "Whether to show the post type in the admin menu and where to show that "
2093
+ #~ "menu. Note that show_ui must be true"
2094
+ #~ msgstr ""
2095
+ #~ "Soll der Post Type im Admin-Menü angezeigt werden und an welcher Position "
2096
+ #~ "in diesem Menü soll er sich befinden. Beachte dass \"Benutzeroberfläche "
2097
+ #~ "anzeigen\" dafür aktiviert sein muss"
2098
+
2099
+ #~ msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
2100
+ #~ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
2101
+
2102
+ #~ msgid "\"Use the option below to explicitly set \"supports\" to false."
2103
+ #~ msgstr ""
2104
+ #~ "Haken Sie die Checkbox \"Keine\" an um alle \"Unterstützt\" Funktionen "
2105
+ #~ "explizit zu deaktivieren."
2106
+
2107
+ #~ msgid ""
2108
+ #~ "How do I filter the \"enter title here\" text in the post editor screen."
2109
+ #~ msgstr ""
2110
+ #~ "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage "
2111
+ #~ "erstellen\"-Fenster ändern?"
2112
+
2113
+ #~ msgid "version"
2114
+ #~ msgstr "Version"
2115
+
2116
+ #~ msgid "Frequently Asked Questions"
2117
+ #~ msgstr "Häufig gestellte Fragen"
2118
+
2119
+ #~ msgid "A: Justin Tadlock has written some great posts on the topic:"
2120
+ #~ msgstr ""
2121
+ #~ "Antwort: Justin Tadlock schrieb großartige Artikel (in engl.) zu diesem "
2122
+ #~ "Thema:"
2123
+
2124
+ #~ msgid ""
2125
+ #~ "A: The More Fields plugin does a great job at creating custom meta boxes "
2126
+ #~ "and fully supports custom post types: "
2127
+ #~ msgstr ""
2128
+ #~ "Antwort: Mit dem Plugin \"More Fields\" lassen sich benutzerdefinierte "
2129
+ #~ "Meta Boxen erstellen. Im Plugin werden Custom Post Types unterstütz: "
2130
+
2131
+ #~ msgid "WebDevStudios.com Recent News"
2132
+ #~ msgstr "WebDevStudios.com Neuigkeiten (engl.)"
2133
+
2134
+ #~ msgid "Custom post type deleted successfully"
2135
+ #~ msgstr "Der Custom Post Type wurde gelöscht"
2136
+
2137
+ #~ msgid "Manage Custom Post Types"
2138
+ #~ msgstr "Verwalte Custom Post Types"
2139
+
2140
+ #~ msgid "Action"
2141
+ #~ msgstr "Aktionen"
2142
+
2143
+ #~ msgid "Name"
2144
+ #~ msgstr "Name"
2145
+
2146
+ #~ msgid "Rewrite Slug"
2147
+ #~ msgstr "Slug umschreiben"
2148
+
2149
+ #~ msgid "Total Published"
2150
+ #~ msgstr "Gesamt: Veröffentlicht"
2151
+
2152
+ #~ msgid "Total Drafts"
2153
+ #~ msgstr "Gesamt: Entwürfe"
2154
+
2155
+ #~ msgid "Delete"
2156
+ #~ msgstr "Löschen"
2157
+
2158
+ #~ msgid ""
2159
+ #~ "The custom post types below are registered in WordPress but were not "
2160
+ #~ "created by the Custom Post Type UI Plugin."
2161
+ #~ msgstr ""
2162
+ #~ "Die hier aufgeführten Custom Post Types sind ebenfalls in WordPress "
2163
+ #~ "registriert, jedoch nicht vom Custom Post Type UI Plugin erstellt worden."
2164
+
2165
+ #~ msgid "Custom taxonomy deleted successfully"
2166
+ #~ msgstr "Die Taxonomie wurde gelöscht"
2167
+
2168
+ #~ msgid ""
2169
+ #~ "Custom post type created successfully. You may need to refresh to view "
2170
+ #~ "the new post type in the admin menu."
2171
+ #~ msgstr ""
2172
+ #~ "Der Custom Post Type wurde erfolgreich erstellt. Der Post Type wird "
2173
+ #~ "eventuell erst nach erneutem laden der Seite im Admin Menü sichtbar."
2174
+
2175
+ #~ msgid "Manage custom post types"
2176
+ #~ msgstr "Verwalte Custom Post Types"
2177
+
2178
+ #~ msgid ""
2179
+ #~ "Custom taxonomy created successfully. You may need to refresh to view "
2180
+ #~ "the new taxonomy in the admin menu."
2181
+ #~ msgstr ""
2182
+ #~ "Die Taxonomie wurde erfolgreich erstellt. Die Taxanomie wird eventuell "
2183
+ #~ "erst nach erneutem laden der Seite im Admin Menü sichtbar."
2184
+
2185
+ #~ msgid "Manage custom taxonomies"
2186
+ #~ msgstr "Verwalte Taxanomien"
2187
+
2188
+ #~ msgid "You must assign your custom taxonomy to at least one post type."
2189
+ #~ msgstr "Sie müssen der Taxonomie mindestens einen Post Type zuordnen."
2190
+
2191
+ #~ msgid "Reset"
2192
+ #~ msgstr "Zurücksetzen"
2193
+
2194
+ #~ msgid "Advanced Label Options"
2195
+ #~ msgstr "weitere Beschriftungsoptionen"
2196
+
2197
+ #~ msgid ""
2198
+ #~ "Below are the advanced label options for custom post types. If you are "
2199
+ #~ "unfamiliar with these labels, leave them blank and the plugin will "
2200
+ #~ "automatically create labels based off of your custom post type name"
2201
+ #~ msgstr ""
2202
+ #~ "Nachfolgend findest du weitere Felder für die Beschriftungen des Post "
2203
+ #~ "Types. Falls du dir bei der Bezeichnung der Felder unsicher bist - das "
2204
+ #~ "Plugin wird die Felder, basierend auf dem Post Type Namen, automatisch "
2205
+ #~ "für dich erstellen."
2206
+
2207
+ #~ msgid ""
2208
+ #~ "Note: Changing the name, after adding terms to the taxonomy, will not "
2209
+ #~ "update the terms in the database."
2210
+ #~ msgstr ""
2211
+ #~ "Achtung: Änderungen am Namen der Taxonomie nach der Erstellung werden in "
2212
+ #~ "der Datenbank nicht automatisch korrigiert."
2213
+
2214
+ #~ msgid "(e.g. movies)"
2215
+ #~ msgstr "(z. B. Filme)"
2216
+
2217
+ #~ msgid ""
2218
+ #~ "Below are the advanced label options for custom taxonomies. If you are "
2219
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
2220
+ #~ "based off of your custom taxonomy name"
2221
+ #~ msgstr ""
2222
+ #~ "Nachfolgend findest du weitere Felder für die Beschriftungen der "
2223
+ #~ "Taxonomie. Falls du dir bei der Bezeichnung der Felder unsicher bist - "
2224
+ #~ "das Plugin wird die Felder, basierend auf dem Taxonomie Namen, "
2225
+ #~ "automatisch für dich erstellen."
languages/{cpt-plugin-ja.mo → custom-post-type-ui-ja.mo} RENAMED
Binary file
languages/{cpt-plugin-ja.po → custom-post-type-ui-ja.po} RENAMED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
- "POT-Creation-Date: 2015-08-11 11:36-0500\n"
6
- "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.2\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
@@ -22,317 +22,399 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
- #: custom-post-type-ui.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #, fuzzy
27
  msgid "Custom Post Types"
28
  msgstr "利用する投稿タイプ"
29
 
30
- #: custom-post-type-ui.php:60
31
  msgid "CPT UI"
32
  msgstr ""
33
 
34
- #: custom-post-type-ui.php:61
35
  #, fuzzy
36
  msgid "Add/Edit Post Types"
37
  msgstr "カスタム投稿タイプを編集"
38
 
39
- #: custom-post-type-ui.php:62
40
  #, fuzzy
41
  msgid "Add/Edit Taxonomies"
42
  msgstr "ビルトイン分類"
43
 
44
- #: custom-post-type-ui.php:63
45
  msgid "Registered Types and Taxes"
46
  msgstr ""
47
 
48
- #: custom-post-type-ui.php:63
49
  msgid "Registered Types/Taxes"
50
  msgstr ""
51
 
52
- #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
53
  msgid "Import/Export"
54
  msgstr ""
55
 
56
- #: custom-post-type-ui.php:65
57
  #, fuzzy
58
  msgid "Help/Support"
59
  msgstr "サポート"
60
 
61
- #: custom-post-type-ui.php:69
62
  msgid "About CPT UI"
63
  msgstr ""
64
 
65
  #. Plugin Name of the plugin/theme
66
- #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
67
  #, fuzzy
68
  msgid "Custom Post Type UI"
69
  msgstr "利用する投稿タイプ"
70
 
71
- #: custom-post-type-ui.php:342
72
  msgid ""
73
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
74
  "with our plugin provides efficiency and speed in creating post types and "
75
  "taxonomies, to better organize your content, without having to touch code."
76
  msgstr ""
77
 
78
- #: custom-post-type-ui.php:348
79
- #, fuzzy
80
- msgid "Post type migration"
81
- msgstr "投稿タイプ名"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
- #: custom-post-type-ui.php:349
84
  msgid ""
85
- "In the past, if you changed your post type slug, you would lose immediate "
86
- "access to the posts in the post type and need to recover another way. We "
87
- "have now added support for migrating all posts within the old post type to "
88
- "the new post type you renamed it to."
89
  msgstr ""
90
 
91
- #: custom-post-type-ui.php:352
92
- msgid "UI Refinement"
93
  msgstr ""
94
 
95
- #: custom-post-type-ui.php:353
96
  msgid ""
97
- "After receiving feedback regarding the 1.0.x changes, we have further "
98
- "simplified the UI to reduce the amount of clicking necessary to manage your "
99
- "post types and taxonomies."
100
  msgstr ""
101
 
102
- #: custom-post-type-ui.php:356
103
- msgid "Registered Post Type and Taxonomy Listings"
104
  msgstr ""
105
 
106
- #: custom-post-type-ui.php:357
 
 
 
 
 
 
 
 
 
 
 
107
  msgid ""
108
- "We are bringing back the listing of all CPTUI-registered post types and "
109
- "taxonomies for easier quick view of what you have going."
 
110
  msgstr ""
111
 
112
- #: custom-post-type-ui.php:362
113
  msgid "Help Support This Plugin!"
114
  msgstr ""
115
 
116
- #: custom-post-type-ui.php:366
117
  msgid "Professional WordPress<br />Third Edition"
118
  msgstr ""
119
 
120
- #: custom-post-type-ui.php:371
 
 
 
 
121
  msgid ""
122
  "The leading book on WordPress design and development! Brand new third "
123
  "edition!"
124
  msgstr ""
125
 
126
- #: custom-post-type-ui.php:374
127
  msgid "Professional WordPress<br />Plugin Development"
128
  msgstr ""
129
 
130
- #: custom-post-type-ui.php:379
 
 
 
 
131
  msgid "Highest rated WordPress development book on Amazon!"
132
  msgstr ""
133
 
134
- #: custom-post-type-ui.php:382
135
  msgid "PayPal Donation"
136
  msgstr ""
137
 
138
- #: custom-post-type-ui.php:386
139
  msgid "PayPal - The safer, easier way to pay online!"
140
  msgstr ""
141
 
142
- #: custom-post-type-ui.php:389
143
  msgid "Please donate to the development of Custom Post Type UI:"
144
  msgstr ""
145
 
146
- #: custom-post-type-ui.php:415
147
  #, php-format
148
  msgid "%s version %s by %s"
149
  msgstr ""
150
 
151
- #: custom-post-type-ui.php:426
152
  msgid "Please Report Bugs"
153
  msgstr ""
154
 
155
- #: custom-post-type-ui.php:429
156
  msgid "Follow on Twitter:"
157
  msgstr ""
158
 
159
- #: custom-post-type-ui.php:493
160
  #, fuzzy
161
  msgid "Manage Taxonomies"
162
  msgstr "カスタム分類の管理"
163
 
164
- #: custom-post-type-ui.php:497
165
  #, fuzzy
166
  msgid "Manage Post Types"
167
  msgstr "カスタム投稿タイプの管理"
168
 
169
- #: custom-post-type-ui.php:523
170
  #, fuzzy
171
  msgid "Add New Post Type"
172
  msgstr "利用する投稿タイプ"
173
 
174
- #: custom-post-type-ui.php:526
175
  #, fuzzy
176
  msgid "Edit Post Types"
177
  msgstr "カスタム投稿タイプを編集"
178
 
179
- #: custom-post-type-ui.php:530
180
  #, fuzzy
181
  msgid "Add New Taxonomy"
182
  msgstr "分類名"
183
 
184
- #: custom-post-type-ui.php:533
185
  #, fuzzy
186
  msgid "Edit Taxonomies"
187
  msgstr "ビルトイン分類"
188
 
189
- #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
190
- #: inc/listings.php:224
191
  #, fuzzy
192
  msgid "Post Types"
193
  msgstr "投稿タイプ名"
194
 
195
- #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
196
- #: inc/listings.php:122 inc/listings.php:132
197
  #, fuzzy
198
  msgid "Taxonomies"
199
  msgstr "ビルトイン分類"
200
 
201
- #: custom-post-type-ui.php:539
202
  msgid "Get Code"
203
  msgstr ""
204
 
205
- #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
206
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
207
- #: inc/taxonomies.php:343
 
 
 
208
  msgid "Settings"
209
  msgstr ""
210
 
211
- #: custom-post-type-ui.php:622
212
  msgid "Help"
213
  msgstr ""
214
 
215
- #: custom-post-type-ui.php:651
216
  #, php-format
217
  msgid "%s has been successfully added"
218
  msgstr ""
219
 
220
- #: custom-post-type-ui.php:653
221
  #, php-format
222
  msgid "%s has failed to be added"
223
  msgstr ""
224
 
225
- #: custom-post-type-ui.php:657
226
  #, php-format
227
  msgid "%s has been successfully updated"
228
  msgstr ""
229
 
230
- #: custom-post-type-ui.php:659
231
  #, php-format
232
  msgid "%s has failed to be updated"
233
  msgstr ""
234
 
235
- #: custom-post-type-ui.php:663
236
  #, php-format
237
  msgid "%s has been successfully deleted"
238
  msgstr ""
239
 
240
- #: custom-post-type-ui.php:665
241
  #, php-format
242
  msgid "%s has failed to be deleted"
243
  msgstr ""
244
 
245
- #: custom-post-type-ui.php:669
246
  #, php-format
247
  msgid "%s has been successfully imported"
248
  msgstr ""
249
 
250
- #: custom-post-type-ui.php:671
251
  #, php-format
252
  msgid "%s has failed to be imported"
253
  msgstr ""
254
 
255
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
256
  #, fuzzy, php-format
257
  msgid "Add new %s"
258
  msgstr "新規追加"
259
 
260
- #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
 
261
  #, fuzzy, php-format
262
  msgid "Edit %s"
263
  msgstr "編集"
264
 
265
- #: custom-post-type-ui.php:756
266
  #, php-format
267
  msgid "New %s"
268
  msgstr ""
269
 
270
- #: custom-post-type-ui.php:757
271
  #, fuzzy, php-format
272
  msgid "View %s"
273
  msgstr "表示"
274
 
275
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
276
  #, fuzzy, php-format
277
  msgid "All %s"
278
  msgstr "すべての項目"
279
 
280
- #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
281
  #, fuzzy, php-format
282
  msgid "Search %s"
283
  msgstr "項目検索"
284
 
285
- #: custom-post-type-ui.php:760
286
  #, fuzzy, php-format
287
  msgid "No %s found."
288
  msgstr "見つかりません"
289
 
290
- #: custom-post-type-ui.php:761
291
  #, fuzzy, php-format
292
  msgid "No %s found in trash."
293
  msgstr "ゴミ箱にはありません。"
294
 
295
- #: custom-post-type-ui.php:765
296
  #, fuzzy, php-format
297
  msgid "Popular %s"
298
  msgstr "よく利用されている項目"
299
 
300
- #: custom-post-type-ui.php:767
301
  #, fuzzy, php-format
302
  msgid "Parent %s"
303
  msgstr "親"
304
 
305
- #: custom-post-type-ui.php:768
306
  #, fuzzy, php-format
307
  msgid "Parent %s:"
308
  msgstr "親"
309
 
310
- #: custom-post-type-ui.php:770
311
  #, php-format
312
  msgid "Update %s"
313
  msgstr ""
314
 
315
- #: custom-post-type-ui.php:772
316
  #, fuzzy, php-format
317
  msgid "New %s name"
318
  msgstr "新規項目名"
319
 
320
- #: custom-post-type-ui.php:773
321
  #, fuzzy, php-format
322
  msgid "Separate %s with commas"
323
  msgstr "項目が複数ある場合はコンマで区切ってください。"
324
 
325
- #: custom-post-type-ui.php:774
326
  #, fuzzy, php-format
327
  msgid "Add or remove %s"
328
  msgstr "項目の追加もしくは削除"
329
 
330
- #: custom-post-type-ui.php:775
331
  #, fuzzy, php-format
332
  msgid "Choose from the most used %s"
333
  msgstr "最もよく使われているものから選択"
334
 
335
- #: inc/import_export.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  msgid ""
337
  "If you are wanting to migrate registered post types or taxonomies from this "
338
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -340,270 +422,309 @@ msgid ""
340
  "the information in the \"Get Code\" tab."
341
  msgstr ""
342
 
343
- #: inc/import_export.php:45
344
  msgid "NOTE"
345
  msgstr ""
346
 
347
- #: inc/import_export.php:46
348
- msgid "This will not export the associated posts, just the settings."
 
 
349
  msgstr ""
350
 
351
- #: inc/import_export.php:53
352
  #, fuzzy
353
  msgid "Import Post Types"
354
  msgstr "利用する投稿タイプ"
355
 
356
- #: inc/import_export.php:55 inc/import_export.php:80
357
  msgid "Paste content here."
358
  msgstr ""
359
 
360
- #: inc/import_export.php:56 inc/import_export.php:81
361
  msgid "Note:"
362
  msgstr ""
363
 
364
- #: inc/import_export.php:56 inc/import_export.php:81
365
  msgid "Importing will overwrite previous registered settings."
366
  msgstr ""
367
 
368
- #: inc/import_export.php:57
369
  msgid ""
370
  "To import post types from a different WordPress site, paste the exported "
371
  "content from that site and click the \"Import\" button."
372
  msgstr ""
373
 
374
- #: inc/import_export.php:58 inc/import_export.php:83
375
  msgid "Import"
376
  msgstr ""
377
 
378
- #: inc/import_export.php:62
379
  #, fuzzy
380
  msgid "Export Post Types"
381
  msgstr "利用する投稿タイプ"
382
 
383
- #: inc/import_export.php:68
384
  msgid "No post types registered yet."
385
  msgstr ""
386
 
387
- #: inc/import_export.php:71 inc/import_export.php:96
388
  msgid ""
389
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
390
  "(Mac)."
391
  msgstr ""
392
 
393
- #: inc/import_export.php:72
394
  msgid ""
395
  "Use the content above to import current post types into a different "
396
  "WordPress site. You can also use this to simply back up your post type "
397
  "settings."
398
  msgstr ""
399
 
400
- #: inc/import_export.php:78
401
  #, fuzzy
402
  msgid "Import Taxonomies"
403
  msgstr "ビルトイン分類"
404
 
405
- #: inc/import_export.php:82
406
  msgid ""
407
  "To import taxonomies from a different WordPress site, paste the exported "
408
  "content from that site and click the \"Import\" button."
409
  msgstr ""
410
 
411
- #: inc/import_export.php:87
412
  #, fuzzy
413
  msgid "Export Taxonomies"
414
  msgstr "ビルトイン分類"
415
 
416
- #: inc/import_export.php:93
417
  msgid "No taxonomies registered yet."
418
  msgstr ""
419
 
420
- #: inc/import_export.php:97
421
  msgid ""
422
  "Use the content above to import current taxonomies into a different "
423
  "WordPress site. You can also use this to simply back up your taxonomy "
424
  "settings."
425
  msgstr ""
426
 
427
- #: inc/import_export.php:105
428
  msgid "Get Post Type and Taxonomy Code"
429
  msgstr ""
430
 
431
- #: inc/import_export.php:107
432
  #, fuzzy
433
  msgid "All CPT UI Post Types"
434
  msgstr "追加されているカスタム投稿タイプ"
435
 
436
- #: inc/import_export.php:108 inc/import_export.php:112
 
437
  msgid "Copy/paste the code below into your functions.php file."
438
  msgstr ""
439
 
440
- #: inc/import_export.php:111
 
 
 
 
 
441
  #, fuzzy
442
  msgid "All CPT UI Taxonomies"
443
  msgstr "ビルトイン分類"
444
 
445
- #: inc/import_export.php:142
446
- msgid "No taxonomies to display at this time"
447
- msgstr ""
 
448
 
449
- #: inc/import_export.php:241
450
- msgid "No post types to display at this time"
451
  msgstr ""
452
 
453
- #: inc/import_export.php:367
454
- #, fuzzy
455
- msgid "Post types"
456
- msgstr "投稿タイプ名"
457
 
458
  #: inc/listings.php:10
459
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
460
  msgstr ""
461
 
462
- #: inc/listings.php:18 inc/listings.php:134
463
  #, php-format
464
  msgid "Total count: %d"
465
  msgstr ""
466
 
467
- #: inc/listings.php:31 inc/listings.php:119
468
  #, fuzzy
469
  msgid "Post Type"
470
  msgstr "利用する投稿タイプ"
471
 
472
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
473
  msgid "Supports"
474
  msgstr "サポート"
475
 
476
- #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
477
- #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
478
  #, fuzzy
479
  msgid "Labels"
480
  msgstr "ラベル"
481
 
482
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
483
- msgid "Edit"
484
- msgstr "編集"
 
485
 
486
- #: inc/listings.php:75
487
  msgid "View frontend archive"
488
  msgstr ""
489
 
490
- #: inc/listings.php:108 inc/listings.php:211
491
  msgid "No custom labels to display"
492
  msgstr ""
493
 
494
- #: inc/listings.php:147 inc/listings.php:222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495
  #, fuzzy
496
  msgid "Taxonomy"
497
  msgstr "分類名"
498
 
499
- #: inc/post-types.php:30 inc/taxonomies.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
500
  msgid "Are you sure you want to delete this?"
501
  msgstr ""
502
 
503
- #: inc/post-types.php:89
504
  msgid ""
505
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
506
  "registers a new post type entry for your install."
507
  msgstr ""
508
 
509
- #: inc/post-types.php:90
510
  msgid ""
511
  "Use appropriate checkbox above save/delete buttons if you wish to change "
512
  "slugs and update post types for existing posts."
513
  msgstr ""
514
 
515
- #: inc/post-types.php:91 inc/taxonomies.php:87
516
  msgid "Select: "
517
  msgstr ""
518
 
519
- #: inc/post-types.php:94 inc/taxonomies.php:91
520
  msgid "Select"
521
  msgstr ""
522
 
523
- #: inc/post-types.php:124
524
  #, fuzzy
525
  msgid "Post Type Slug"
526
  msgstr "投稿タイプ名"
527
 
528
- #: inc/post-types.php:125
529
  msgid "(e.g. movie)"
530
  msgstr ""
531
 
532
- #: inc/post-types.php:126
533
  msgid ""
534
  "The post type name. Used to retrieve custom post type content. Should be "
535
  "short and unique"
536
  msgstr ""
537
 
538
- #: inc/post-types.php:137 inc/taxonomies.php:129
539
  #, fuzzy
540
  msgid "Plural Label"
541
  msgstr "単数形のラベル"
542
 
543
- #: inc/post-types.php:138
544
  msgid "(e.g. Movies)"
545
  msgstr ""
546
 
547
- #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
548
- #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
549
- #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
550
- #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
551
- #: inc/post-types.php:368
552
  msgid "Post type label. Used in the admin menu for displaying post types."
553
  msgstr ""
554
 
555
- #: inc/post-types.php:149 inc/taxonomies.php:138
556
  msgid "Singular Label"
557
  msgstr "単数形のラベル"
558
 
559
- #: inc/post-types.php:150
560
  msgid "(e.g. Movie)"
561
  msgstr ""
562
 
563
- #: inc/post-types.php:151
564
  msgid ""
565
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
566
  "needed."
567
  msgstr ""
568
 
569
- #: inc/post-types.php:167
570
  msgid "Description"
571
  msgstr "説明"
572
 
573
- #: inc/post-types.php:168
574
  msgid ""
575
  "Custom Post Type Description. Describe what your custom post type is used "
576
  "for."
577
  msgstr ""
578
 
579
- #: inc/post-types.php:180
580
  msgid "Migrate posts to newly renamed post type?"
581
  msgstr ""
582
 
583
- #: inc/post-types.php:181
584
  msgid "Check this to migrate posts if and when renaming your post type."
585
  msgstr ""
586
 
587
- #: inc/post-types.php:190
588
  #, fuzzy
589
  msgid "Save Post Type"
590
  msgstr "利用する投稿タイプ"
591
 
592
- #: inc/post-types.php:191
593
  #, fuzzy
594
  msgid "Delete Post Type"
595
  msgstr "利用する投稿タイプ"
596
 
597
- #: inc/post-types.php:193
598
  #, fuzzy
599
  msgid "Add Post Type"
600
  msgstr "利用する投稿タイプ"
601
 
602
- #: inc/post-types.php:204 inc/taxonomies.php:190
603
  msgid "Starter Notes"
604
  msgstr ""
605
 
606
- #: inc/post-types.php:207
607
  #, php-format
608
  msgid ""
609
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -612,7 +733,7 @@ msgid ""
612
  "revision, nav_menu_item."
613
  msgstr ""
614
 
615
- #: inc/post-types.php:208
616
  #, php-format
617
  msgid ""
618
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -621,7 +742,7 @@ msgid ""
621
  "post type name. Hover over the question mark for more details."
622
  msgstr ""
623
 
624
- #: inc/post-types.php:209
625
  #, fuzzy, php-format
626
  msgid ""
627
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -632,449 +753,503 @@ msgstr ""
632
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
633
  "ません。"
634
 
635
- #: inc/post-types.php:223 inc/taxonomies.php:211
636
  #, fuzzy
637
  msgid "Menu Name"
638
  msgstr "名前"
639
 
640
- #: inc/post-types.php:224
641
  msgid "Custom menu name for your custom post type."
642
  msgstr ""
643
 
644
- #: inc/post-types.php:228
645
  msgid "(e.g. My Movies)"
646
  msgstr ""
647
 
648
- #: inc/post-types.php:235 inc/taxonomies.php:220
649
  msgid "All Items"
650
  msgstr "すべての項目"
651
 
652
- #: inc/post-types.php:240
653
  msgid "(e.g. All Movies)"
654
  msgstr ""
655
 
656
- #: inc/post-types.php:247
657
  msgid "Add New"
658
  msgstr "新規追加"
659
 
660
- #: inc/post-types.php:252
661
  #, fuzzy
662
  msgid "(e.g. Add New)"
663
  msgstr "新規追加"
664
 
665
- #: inc/post-types.php:259 inc/taxonomies.php:256
666
  msgid "Add New Item"
667
  msgstr "新規項目追加"
668
 
669
- #: inc/post-types.php:264
670
  msgid "(e.g. Add New Movie)"
671
  msgstr ""
672
 
673
- #: inc/post-types.php:276
 
 
 
 
674
  msgid "(e.g. Edit)"
675
  msgstr ""
676
 
677
- #: inc/post-types.php:283 inc/taxonomies.php:229
678
  msgid "Edit Item"
679
  msgstr "項目を編集"
680
 
681
- #: inc/post-types.php:288
682
  msgid "(e.g. Edit Movie)"
683
  msgstr ""
684
 
685
- #: inc/post-types.php:295
686
  msgid "New Item"
687
  msgstr "新規項目"
688
 
689
- #: inc/post-types.php:300
690
  #, fuzzy
691
  msgid "(e.g. New Movie)"
692
  msgstr "新規項目追加"
693
 
694
- #: inc/post-types.php:307
695
  msgid "View"
696
  msgstr "表示"
697
 
698
- #: inc/post-types.php:312
699
  msgid "(e.g. View)"
700
  msgstr ""
701
 
702
- #: inc/post-types.php:319 inc/taxonomies.php:238
703
  msgid "View Item"
704
  msgstr "項目を表示"
705
 
706
- #: inc/post-types.php:324
707
  msgid "(e.g. View Movie)"
708
  msgstr ""
709
 
710
- #: inc/post-types.php:331
711
  #, fuzzy
712
  msgid "Search Item"
713
  msgstr "項目検索"
714
 
715
- #: inc/post-types.php:336
716
  msgid "(e.g. Search Movie)"
717
  msgstr ""
718
 
719
- #: inc/post-types.php:343
720
  msgid "Not Found"
721
  msgstr "見つかりません"
722
 
723
- #: inc/post-types.php:348
724
  msgid "(e.g. No Movies found)"
725
  msgstr ""
726
 
727
- #: inc/post-types.php:355
728
  msgid "Not Found in Trash"
729
  msgstr "ゴミ箱にはありません。"
730
 
731
- #: inc/post-types.php:360
732
  #, fuzzy
733
  msgid "(e.g. No Movies found in Trash)"
734
  msgstr "ゴミ箱にはありません。"
735
 
736
- #: inc/post-types.php:367
737
  msgid "Parent"
738
  msgstr "親"
739
 
740
- #: inc/post-types.php:372
741
  msgid "(e.g. Parent Movie)"
742
  msgstr ""
743
 
744
- #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
745
- #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
746
- #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
747
- #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
748
- #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
749
- #: inc/taxonomies.php:469
 
750
  msgid "False"
751
  msgstr ""
752
 
753
- #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
754
- #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
755
- #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
756
- #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
757
- #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
758
- #: inc/taxonomies.php:470
 
759
  msgid "True"
760
  msgstr ""
761
 
762
- #: inc/post-types.php:395
763
  msgid "Public"
764
  msgstr "一般公開"
765
 
766
- #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
767
- #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
768
- #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
769
- msgid "(default: True)"
770
  msgstr ""
771
 
772
- #: inc/post-types.php:397
773
  msgid ""
 
774
  "Whether posts of this type should be shown in the admin UI and is publicly "
775
  "queryable."
776
  msgstr ""
777
 
778
- #: inc/post-types.php:415 inc/taxonomies.php:375
779
  msgid "Show UI"
780
  msgstr "UI を表示"
781
 
782
- #: inc/post-types.php:417
 
 
 
 
 
 
783
  msgid "Whether to generate a default UI for managing this post type."
784
  msgstr ""
785
 
786
- #: inc/post-types.php:425
787
- msgid "Has Archive"
 
 
 
 
 
788
  msgstr ""
789
 
790
- #: inc/post-types.php:426
791
- msgid "Whether the post type will have a post type archive URL."
792
  msgstr ""
793
 
794
- #: inc/post-types.php:427
795
- msgid "If left blank, the archive slug will default to the post type slug."
796
  msgstr ""
797
 
798
- #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
799
- #: inc/taxonomies.php:359 inc/taxonomies.php:479
 
800
  msgid "(default: False)"
801
  msgstr ""
802
 
803
- #: inc/post-types.php:453
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
804
  msgid "Slug to be used for archive URL."
805
  msgstr ""
806
 
807
- #: inc/post-types.php:473
808
  msgid "Exclude From Search"
809
  msgstr ""
810
 
811
- #: inc/post-types.php:475
812
  msgid ""
813
  "Whether to exclude posts with this post type from front end search results."
814
  msgstr ""
815
 
816
- #: inc/post-types.php:486
817
  msgid "Capability Type"
818
  msgstr "利用タイプ"
819
 
820
- #: inc/post-types.php:487
821
  msgid "The post type to use for checking read, edit, and delete capabilities"
822
  msgstr ""
823
 
824
- #: inc/post-types.php:504 inc/taxonomies.php:358
825
  msgid "Hierarchical"
826
  msgstr "階層"
827
 
828
- #: inc/post-types.php:506
829
  msgid "Whether the post type can have parent-child relationships"
830
  msgstr ""
831
 
832
- #: inc/post-types.php:524 inc/taxonomies.php:418
833
  msgid "Rewrite"
834
  msgstr "リライト"
835
 
836
- #: inc/post-types.php:526
837
  msgid "Whether or not WordPress should use rewrites for this post type"
838
  msgstr ""
839
 
840
- #: inc/post-types.php:537 inc/taxonomies.php:429
841
  msgid "Custom Rewrite Slug"
842
  msgstr "カスタムリライトスラッグ"
843
 
844
- #: inc/post-types.php:538
845
  msgid "(default: post type slug)"
846
  msgstr ""
847
 
848
- #: inc/post-types.php:539
849
  msgid "Custom post type slug to use instead of the default."
850
  msgstr ""
851
 
852
- #: inc/post-types.php:556
853
  msgid "With Front"
854
  msgstr ""
855
 
856
- #: inc/post-types.php:558 inc/taxonomies.php:446
857
  msgid "Should the permastruct be prepended with the front base."
858
  msgstr ""
859
 
860
- #: inc/post-types.php:576 inc/taxonomies.php:392
861
  msgid "Query Var"
862
  msgstr "クエリーバージョン"
863
 
864
- #: inc/post-types.php:578
865
  msgid "Sets the query_var key for this post type."
866
  msgstr ""
867
 
868
- #: inc/post-types.php:586
 
 
 
 
 
 
 
 
 
 
 
 
 
869
  msgid "Menu Position"
870
  msgstr "メニューの位置"
871
 
872
- #: inc/post-types.php:587
873
  msgid ""
874
  "The position in the menu order the post type should appear. show_in_menu "
875
  "must be true."
876
  msgstr ""
877
 
878
- #: inc/post-types.php:588
879
  msgid ""
880
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
881
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
882
  "the \"menu_position\" section. Range of 5-100"
883
  msgstr ""
884
 
885
- #: inc/post-types.php:603
886
  msgid "Show in Menu"
887
  msgstr ""
888
 
889
- #: inc/post-types.php:604
890
  msgid ""
891
  "Whether to show the post type in the admin menu and where to show that menu."
892
  msgstr ""
893
 
894
- #: inc/post-types.php:605
895
  msgid ""
896
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
897
  "php\" is indicated for second input, post type will be sub menu of that."
898
  msgstr ""
899
 
900
- #: inc/post-types.php:631
901
  msgid "Top-level page file name to make post type a sub-menu of."
902
  msgstr ""
903
 
904
- #: inc/post-types.php:643
905
  #, fuzzy
906
  msgid "Menu Icon"
907
  msgstr "メニューの位置"
908
 
909
- #: inc/post-types.php:644
910
  msgid "(Full URL for icon or Dashicon class)"
911
  msgstr ""
912
 
913
- #: inc/post-types.php:645
914
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
915
  msgstr ""
916
 
917
- #: inc/post-types.php:658
918
  msgid "Title"
919
  msgstr ""
920
 
921
- #: inc/post-types.php:659
922
  msgid "Adds the title meta box when creating content for this custom post type"
923
  msgstr ""
924
 
925
- #: inc/post-types.php:673
926
  #, fuzzy
927
  msgid "Editor"
928
  msgstr "編集"
929
 
930
- #: inc/post-types.php:674
931
  msgid ""
932
  "Adds the content editor meta box when creating content for this custom post "
933
  "type"
934
  msgstr ""
935
 
936
- #: inc/post-types.php:688
937
  msgid "Excerpt"
938
  msgstr ""
939
 
940
- #: inc/post-types.php:689
941
  msgid ""
942
  "Adds the excerpt meta box when creating content for this custom post type"
943
  msgstr ""
944
 
945
- #: inc/post-types.php:703
946
  msgid "Trackbacks"
947
  msgstr ""
948
 
949
- #: inc/post-types.php:704
950
  msgid ""
951
  "Adds the trackbacks meta box when creating content for this custom post type"
952
  msgstr ""
953
 
954
- #: inc/post-types.php:718
955
  #, fuzzy
956
  msgid "Custom Fields"
957
  msgstr "カスタムリライトスラッグ"
958
 
959
- #: inc/post-types.php:719
960
  msgid ""
961
  "Adds the custom fields meta box when creating content for this custom post "
962
  "type"
963
  msgstr ""
964
 
965
- #: inc/post-types.php:733
966
  msgid "Comments"
967
  msgstr ""
968
 
969
- #: inc/post-types.php:734
970
  msgid ""
971
  "Adds the comments meta box when creating content for this custom post type"
972
  msgstr ""
973
 
974
- #: inc/post-types.php:748
975
  msgid "Revisions"
976
  msgstr ""
977
 
978
- #: inc/post-types.php:749
979
  msgid ""
980
  "Adds the revisions meta box when creating content for this custom post type"
981
  msgstr ""
982
 
983
- #: inc/post-types.php:763
984
  msgid "Featured Image"
985
  msgstr ""
986
 
987
- #: inc/post-types.php:764
988
  msgid ""
989
  "Adds the featured image meta box when creating content for this custom post "
990
  "type"
991
  msgstr ""
992
 
993
- #: inc/post-types.php:778
994
  msgid "Author"
995
  msgstr ""
996
 
997
- #: inc/post-types.php:779
998
  msgid ""
999
  "Adds the author meta box when creating content for this custom post type"
1000
  msgstr ""
1001
 
1002
- #: inc/post-types.php:793
1003
  msgid "Page Attributes"
1004
  msgstr ""
1005
 
1006
- #: inc/post-types.php:794
1007
  msgid ""
1008
  "Adds the page attribute meta box when creating content for this custom post "
1009
  "type"
1010
  msgstr ""
1011
 
1012
- #: inc/post-types.php:808
1013
  msgid "Post Formats"
1014
  msgstr ""
1015
 
1016
- #: inc/post-types.php:809
1017
  msgid "Adds post format support"
1018
  msgstr ""
1019
 
1020
- #: inc/post-types.php:814
1021
  msgid "Use the option below to explicitly set \"supports\" to false."
1022
  msgstr ""
1023
 
1024
- #: inc/post-types.php:822
1025
  msgid "None"
1026
  msgstr ""
1027
 
1028
- #: inc/post-types.php:823
1029
  msgid "Remove all support features"
1030
  msgstr ""
1031
 
1032
- #: inc/post-types.php:829
1033
  #, fuzzy
1034
  msgid "Custom \"Supports\""
1035
  msgstr "サポート"
1036
 
1037
- #: inc/post-types.php:830
1038
  msgid ""
1039
  "Use this input to register custom \"supports\" values, separated by commas."
1040
  msgstr ""
1041
 
1042
- #: inc/post-types.php:836
1043
  msgid "Provide custom support slugs here."
1044
  msgstr ""
1045
 
1046
- #: inc/post-types.php:842
1047
  msgid "Built-in Taxonomies"
1048
  msgstr "ビルトイン分類"
1049
 
1050
- #: inc/post-types.php:871 inc/taxonomies.php:172
1051
  #, php-format
1052
  msgid "Adds %s support"
1053
  msgstr ""
1054
 
1055
- #: inc/post-types.php:977
1056
  msgid "Please provide a post type to delete"
1057
  msgstr ""
1058
 
1059
- #: inc/post-types.php:1037
1060
  msgid "Please provide a post type name"
1061
  msgstr ""
1062
 
1063
- #: inc/post-types.php:1061
1064
  msgid "Please do not use quotes in post type names or rewrite slugs"
1065
  msgstr ""
1066
 
1067
- #: inc/post-types.php:1068
1068
  #, php-format
1069
  msgid "Please choose a different post type name. %s is already registered."
1070
  msgstr ""
1071
 
1072
- #: inc/support.php:41
1073
  #, fuzzy
1074
  msgid "Custom Post Type UI Support"
1075
  msgstr "Custom Post Types UI"
1076
 
1077
- #: inc/support.php:43
1078
  #, php-format
1079
  msgid ""
1080
  "Please note that this plugin will NOT handle display of registered post "
@@ -1082,34 +1257,47 @@ msgid ""
1082
  "you. If all else fails, visit us on the %s"
1083
  msgstr ""
1084
 
1085
- #: inc/support.php:44
1086
  #, fuzzy
1087
  msgid "Support Forums"
1088
  msgstr "サポート"
1089
 
1090
- #: inc/support.php:50
1091
  msgid "General"
1092
  msgstr ""
1093
 
1094
- #: inc/support.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
1095
  msgid ""
1096
  "I changed my custom post type name and now I can not get to my posts. How do "
1097
  "I get them back?"
1098
  msgstr ""
1099
 
1100
- #: inc/support.php:54
1101
  msgid ""
1102
  "You can either change the custom post type name back to the original name or "
1103
  "try the Post Type Switcher plugin"
1104
  msgstr ""
1105
 
1106
- #: inc/support.php:59
1107
  msgid ""
1108
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1109
  "shown. How do I remove the duplicate?"
1110
  msgstr ""
1111
 
1112
- #: inc/support.php:60
1113
  msgid ""
1114
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1115
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1117,37 +1305,55 @@ msgid ""
1117
  "delete the previous version's entry."
1118
  msgstr ""
1119
 
1120
- #: inc/support.php:63
1121
  msgid ""
1122
  "I have added post thumbnail and/or post format support to my post type, but "
1123
  "those do not appear when adding a post type post."
1124
  msgstr ""
1125
 
1126
- #: inc/support.php:64
1127
  msgid ""
1128
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1129
  msgstr ""
1130
 
1131
- #: inc/support.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1132
  msgid "Front-end Display"
1133
  msgstr ""
1134
 
1135
- #: inc/support.php:72
1136
  msgid "What template files should I edit to alter my post type display?"
1137
  msgstr ""
1138
 
1139
- #: inc/support.php:73
1140
  #, php-format
1141
  msgid ""
1142
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1143
  "details about available templates."
1144
  msgstr ""
1145
 
1146
- #: inc/support.php:80
1147
  msgid "How do I display my custom post type on my site?"
1148
  msgstr ""
1149
 
1150
- #: inc/support.php:81
1151
  #, php-format
1152
  msgid ""
1153
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1155,13 +1361,13 @@ msgid ""
1155
  "should be something like \"http://www.mysite.com/post-type-slug\""
1156
  msgstr ""
1157
 
1158
- #: inc/support.php:87
1159
  msgid ""
1160
  "I have added categories and tags to my custom post type, but they do not "
1161
  "appear in the archives."
1162
  msgstr ""
1163
 
1164
- #: inc/support.php:88
1165
  #, php-format
1166
  msgid ""
1167
  "You will need to add your newly created post type to the types that the "
@@ -1169,124 +1375,128 @@ msgid ""
1169
  "that at %s"
1170
  msgstr ""
1171
 
1172
- #: inc/support.php:97
1173
  msgid "Advanced"
1174
  msgstr ""
1175
 
1176
- #: inc/support.php:100
1177
  msgid "How do I add custom metaboxes to my post type?"
1178
  msgstr ""
1179
 
1180
- #: inc/support.php:102
1181
  #, php-format
1182
  msgid ""
1183
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1184
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1185
  msgstr ""
1186
 
1187
- #: inc/support.php:108
1188
  msgid ""
1189
  "How do I add a newly registered taxonomy to a post type that already exists?"
1190
  msgstr ""
1191
 
1192
- #: inc/support.php:110
1193
  #, php-format
1194
  msgid "Check out the %s function for documentation and usage examples."
1195
  msgstr ""
1196
 
1197
- #: inc/support.php:116
1198
  #, fuzzy
1199
  msgid "Post relationships?"
1200
  msgstr "利用する投稿タイプ"
1201
 
1202
- #: inc/support.php:117
1203
  #, php-format
1204
  msgid ""
1205
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1206
  "plugin that should be a good start."
1207
  msgstr ""
1208
 
1209
- #: inc/support.php:126
1210
  msgid "Is there any function reference list?"
1211
  msgstr ""
1212
 
1213
- #: inc/support.php:127
1214
  #, php-format
1215
  msgid ""
1216
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1217
  "will be useful as they are attached to hooks."
1218
  msgstr ""
1219
 
1220
- #: inc/support.php:131
1221
  msgid ""
1222
  "How do I filter the \"enter title here\" text in the post editor screen?"
1223
  msgstr ""
1224
 
1225
- #: inc/support.php:132
1226
  msgid ""
1227
  "Change text inside the post/page editor title field. Should be able to adapt "
1228
  "as necessary."
1229
  msgstr ""
1230
 
1231
- #: inc/taxonomies.php:85
1232
  msgid ""
1233
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1234
  "registers a new taxonomy entry for your install."
1235
  msgstr ""
1236
 
1237
- #: inc/taxonomies.php:118
1238
  #, fuzzy
1239
  msgid "Taxonomy Slug"
1240
  msgstr "分類名"
1241
 
1242
- #: inc/taxonomies.php:119
1243
  #, fuzzy
1244
  msgid "(e.g. actor)"
1245
  msgstr "項目の追加もしくは削除"
1246
 
1247
- #: inc/taxonomies.php:120
1248
  msgid ""
1249
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1250
  "and unique"
1251
  msgstr ""
1252
 
1253
- #: inc/taxonomies.php:128 inc/taxonomies.php:210
1254
  msgid "(e.g. Actors)"
1255
  msgstr ""
1256
 
1257
- #: inc/taxonomies.php:130
1258
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1259
  msgstr ""
1260
 
1261
- #: inc/taxonomies.php:137
1262
  msgid "(e.g. Actor)"
1263
  msgstr ""
1264
 
1265
- #: inc/taxonomies.php:139
1266
  msgid ""
1267
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1268
  msgstr ""
1269
 
1270
- #: inc/taxonomies.php:142
 
 
 
 
1271
  msgid "Attach to Post Type"
1272
  msgstr "利用する投稿タイプ"
1273
 
1274
- #: inc/taxonomies.php:181
1275
  #, fuzzy
1276
  msgid "Save Taxonomy"
1277
  msgstr "分類名"
1278
 
1279
- #: inc/taxonomies.php:182
1280
  #, fuzzy
1281
  msgid "Delete Taxonomy"
1282
  msgstr "カスタム分類作成"
1283
 
1284
- #: inc/taxonomies.php:184
1285
  #, fuzzy
1286
  msgid "Add Taxonomy"
1287
  msgstr "分類名"
1288
 
1289
- #: inc/taxonomies.php:193
1290
  #, php-format
1291
  msgid ""
1292
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1294,7 +1504,7 @@ msgid ""
1294
  "letters that do not have accents."
1295
  msgstr ""
1296
 
1297
- #: inc/taxonomies.php:194
1298
  #, php-format
1299
  msgid ""
1300
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1304,7 +1514,7 @@ msgid ""
1304
  "marks for more details."
1305
  msgstr ""
1306
 
1307
- #: inc/taxonomies.php:195
1308
  #, fuzzy, php-format
1309
  msgid ""
1310
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1315,197 +1525,202 @@ msgstr ""
1315
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1316
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1317
 
1318
- #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1319
- #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1320
- #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1321
- #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1322
- #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1323
  msgid ""
1324
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1325
  msgstr ""
1326
 
1327
- #: inc/taxonomies.php:219
1328
  msgid "(e.g. All Actors)"
1329
  msgstr ""
1330
 
1331
- #: inc/taxonomies.php:228
1332
  msgid "(e.g. Edit Actor)"
1333
  msgstr ""
1334
 
1335
- #: inc/taxonomies.php:237
1336
  msgid "(e.g. View Actor)"
1337
  msgstr ""
1338
 
1339
- #: inc/taxonomies.php:246
1340
  msgid "(e.g. Update Actor Name)"
1341
  msgstr ""
1342
 
1343
- #: inc/taxonomies.php:247
1344
  #, fuzzy
1345
  msgid "Update Item Name"
1346
  msgstr "項目をアップデート"
1347
 
1348
- #: inc/taxonomies.php:255
1349
  msgid "(e.g. Add New Actor)"
1350
  msgstr ""
1351
 
1352
- #: inc/taxonomies.php:264
1353
  msgid "(e.g. New Actor Name)"
1354
  msgstr ""
1355
 
1356
- #: inc/taxonomies.php:265
1357
  msgid "New Item Name"
1358
  msgstr "新規項目名"
1359
 
1360
- #: inc/taxonomies.php:273
1361
  msgid "(e.g. Parent Actor)"
1362
  msgstr ""
1363
 
1364
- #: inc/taxonomies.php:274
1365
  msgid "Parent Item"
1366
  msgstr "親項目"
1367
 
1368
- #: inc/taxonomies.php:282
1369
  msgid "(e.g. Parent Actor:)"
1370
  msgstr ""
1371
 
1372
- #: inc/taxonomies.php:283
1373
  msgid "Parent Item Colon"
1374
  msgstr "親項目コロン"
1375
 
1376
- #: inc/taxonomies.php:291
1377
  msgid "(e.g. Search Actors)"
1378
  msgstr ""
1379
 
1380
- #: inc/taxonomies.php:292
1381
  msgid "Search Items"
1382
  msgstr "項目検索"
1383
 
1384
- #: inc/taxonomies.php:300
1385
  msgid "(e.g. Popular Actors)"
1386
  msgstr ""
1387
 
1388
- #: inc/taxonomies.php:301
1389
  msgid "Popular Items"
1390
  msgstr "よく利用されている項目"
1391
 
1392
- #: inc/taxonomies.php:309
1393
  #, fuzzy
1394
- msgid "(e.g. Separate actors with commas)"
1395
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1396
 
1397
- #: inc/taxonomies.php:310
1398
  msgid "Separate Items with Commas"
1399
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1400
 
1401
- #: inc/taxonomies.php:318
1402
  #, fuzzy
1403
- msgid "(e.g. Add or remove actors)"
1404
  msgstr "項目の追加もしくは削除"
1405
 
1406
- #: inc/taxonomies.php:319
1407
  msgid "Add or Remove Items"
1408
  msgstr "項目の追加もしくは削除"
1409
 
1410
- #: inc/taxonomies.php:327
1411
  #, fuzzy
1412
- msgid "(e.g. Choose from the most used actors)"
1413
  msgstr "最もよく使われているものから選択"
1414
 
1415
- #: inc/taxonomies.php:328
1416
  msgid "Choose From Most Used"
1417
  msgstr "最もよく使われているものから選択"
1418
 
1419
- #: inc/taxonomies.php:336
1420
- msgid "(e.g. No actors found)"
1421
- msgstr ""
 
1422
 
1423
- #: inc/taxonomies.php:337
1424
  #, fuzzy
1425
  msgid "Not found"
1426
  msgstr "見つかりません"
1427
 
1428
- #: inc/taxonomies.php:360
1429
  msgid "Whether the taxonomy can have parent-child relationships"
1430
  msgstr ""
1431
 
1432
- #: inc/taxonomies.php:377
1433
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1434
  msgstr ""
1435
 
1436
- #: inc/taxonomies.php:394
1437
  msgid "Sets the query_var key for this taxonomy."
1438
  msgstr ""
1439
 
1440
- #: inc/taxonomies.php:402
1441
- msgid "(default: none). Query Var needs to be true to use."
1442
  msgstr ""
1443
 
1444
- #: inc/taxonomies.php:403
1445
  msgid "Custom Query Var String"
1446
  msgstr ""
1447
 
1448
- #: inc/taxonomies.php:404
1449
  msgid "Sets a custom query_var slug for this taxonomy."
1450
  msgstr ""
1451
 
1452
- #: inc/taxonomies.php:420
1453
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1454
  msgstr ""
1455
 
1456
- #: inc/taxonomies.php:428
1457
  #, fuzzy
1458
  msgid "(default: taxonomy name)"
1459
  msgstr "新規項目名"
1460
 
1461
- #: inc/taxonomies.php:430
1462
  msgid "Custom taxonomy rewrite slug."
1463
  msgstr ""
1464
 
1465
- #: inc/taxonomies.php:444
1466
  msgid "Rewrite With Front"
1467
  msgstr ""
1468
 
1469
- #: inc/taxonomies.php:445
1470
  msgid "(default: true)"
1471
  msgstr ""
1472
 
1473
- #: inc/taxonomies.php:461
1474
  #, fuzzy
1475
  msgid "Rewrite Hierarchical"
1476
  msgstr "階層"
1477
 
1478
- #: inc/taxonomies.php:462
1479
  msgid "(default: false)"
1480
  msgstr ""
1481
 
1482
- #: inc/taxonomies.php:463
1483
  msgid "Should the permastruct allow hierarchical urls."
1484
  msgstr ""
1485
 
1486
- #: inc/taxonomies.php:478
1487
  msgid "Show Admin Column"
1488
  msgstr ""
1489
 
1490
- #: inc/taxonomies.php:480
1491
  msgid ""
1492
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1493
  "types."
1494
  msgstr ""
1495
 
1496
- #: inc/taxonomies.php:585
 
 
 
 
1497
  msgid "Please provide a taxonomy to delete"
1498
  msgstr ""
1499
 
1500
- #: inc/taxonomies.php:636
1501
  msgid "Please provide a taxonomy name"
1502
  msgstr ""
1503
 
1504
- #: inc/taxonomies.php:652
1505
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1506
  msgstr ""
1507
 
1508
- #: inc/taxonomies.php:658
1509
  #, php-format
1510
  msgid "Please choose a different taxonomy name. %s is already used."
1511
  msgstr ""
@@ -1527,6 +1742,10 @@ msgstr ""
1527
  msgid "http://webdevstudios.com/"
1528
  msgstr ""
1529
 
 
 
 
 
1530
  #, fuzzy
1531
  #~ msgid "Edit Post Type"
1532
  #~ msgstr "利用する投稿タイプ"
@@ -1535,14 +1754,6 @@ msgstr ""
1535
  #~ msgid "Edit Taxonomy"
1536
  #~ msgstr "カスタム分類の編集"
1537
 
1538
- #, fuzzy
1539
- #~ msgid "Show In Menu"
1540
- #~ msgstr "UI を表示"
1541
-
1542
- #, fuzzy
1543
- #~ msgid "Custom Query Var Slug"
1544
- #~ msgstr "カスタムリライトスラッグ"
1545
-
1546
  #, fuzzy
1547
  #~ msgid "Custom Taxonomy Rewrite Slug"
1548
  #~ msgstr "カスタムリライトスラッグ"
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-12-13 00:08-0600\n"
6
+ "PO-Revision-Date: 2015-12-13 00:08-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
+ #: classes/class.cptui_debug_info.php:7
26
+ msgid ""
27
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
28
+ "requested to send the information below to the plugin developer. Simply "
29
+ "insert the email they provided in the input field at the bottom and click "
30
+ "the \"Send debug info\" button. Only the data below will be sent to them."
31
+ msgstr ""
32
+
33
+ #: classes/class.cptui_debug_info.php:186
34
+ #, php-format
35
+ msgid "CPTUI debug information for %s"
36
+ msgstr ""
37
+
38
+ #: custom-post-type-ui.php:61
39
  #, fuzzy
40
  msgid "Custom Post Types"
41
  msgstr "利用する投稿タイプ"
42
 
43
+ #: custom-post-type-ui.php:61
44
  msgid "CPT UI"
45
  msgstr ""
46
 
47
+ #: custom-post-type-ui.php:62 inc/listings.php:155
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "カスタム投稿タイプを編集"
51
 
52
+ #: custom-post-type-ui.php:63 inc/listings.php:287
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "ビルトイン分類"
56
 
57
+ #: custom-post-type-ui.php:64
58
  msgid "Registered Types and Taxes"
59
  msgstr ""
60
 
61
+ #: custom-post-type-ui.php:64
62
  msgid "Registered Types/Taxes"
63
  msgstr ""
64
 
65
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
66
  msgid "Import/Export"
67
  msgstr ""
68
 
69
+ #: custom-post-type-ui.php:66
70
  #, fuzzy
71
  msgid "Help/Support"
72
  msgstr "サポート"
73
 
74
+ #: custom-post-type-ui.php:70
75
  msgid "About CPT UI"
76
  msgstr ""
77
 
78
  #. Plugin Name of the plugin/theme
79
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
80
  #, fuzzy
81
  msgid "Custom Post Type UI"
82
  msgstr "利用する投稿タイプ"
83
 
84
+ #: custom-post-type-ui.php:385
85
  msgid ""
86
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
87
  "with our plugin provides efficiency and speed in creating post types and "
88
  "taxonomies, to better organize your content, without having to touch code."
89
  msgstr ""
90
 
91
+ #: custom-post-type-ui.php:387
92
+ #, php-format
93
+ msgid "What's new in version %s"
94
+ msgstr ""
95
+
96
+ #: custom-post-type-ui.php:392
97
+ msgid "Updated internationalization"
98
+ msgstr ""
99
+
100
+ #: custom-post-type-ui.php:393
101
+ msgid ""
102
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
103
+ "to help aid in translating Custom Post Type UI"
104
+ msgstr ""
105
+
106
+ #: custom-post-type-ui.php:396
107
+ msgid "Debugging information"
108
+ msgstr ""
109
+
110
+ #: custom-post-type-ui.php:397
111
+ msgid ""
112
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
113
+ "debugging issues with Custom Post Type UI."
114
+ msgstr ""
115
+
116
+ #: custom-post-type-ui.php:400
117
+ msgid "Improved accessibility"
118
+ msgstr ""
119
+
120
+ #: custom-post-type-ui.php:401
121
+ msgid ""
122
+ "A lot of work was done in the areas of accessibility to help aid users who "
123
+ "need it. If you have feedback on where it could be further improved, let us "
124
+ "know."
125
+ msgstr ""
126
+
127
+ #: custom-post-type-ui.php:404
128
+ msgid "WP REST API support"
129
+ msgstr ""
130
 
131
+ #: custom-post-type-ui.php:405
132
  msgid ""
133
+ "We now have support for the required fields for the WP REST API. Now you can "
134
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
135
+ "API lists."
 
136
  msgstr ""
137
 
138
+ #: custom-post-type-ui.php:408
139
+ msgid "More parameter support"
140
  msgstr ""
141
 
142
+ #: custom-post-type-ui.php:409
143
  msgid ""
144
+ "We have added more parameters for greater customization of your post type "
145
+ "and taxonomy settings."
 
146
  msgstr ""
147
 
148
+ #: custom-post-type-ui.php:412
149
+ msgid "New individual \"Get Code\" sections"
150
  msgstr ""
151
 
152
+ #: custom-post-type-ui.php:413
153
+ msgid ""
154
+ "The \"Get Code\" area now has support for copy/paste of individual post "
155
+ "types and taxonomies."
156
+ msgstr ""
157
+
158
+ #: custom-post-type-ui.php:416
159
+ #, fuzzy
160
+ msgid "Template hierarchy reference"
161
+ msgstr "階層"
162
+
163
+ #: custom-post-type-ui.php:417
164
  msgid ""
165
+ "To help aid your development with post types and taxonomies, we have added a "
166
+ "quick reference list of common template files you can use in your theme. "
167
+ "They will be listed on the \"Registered Types/Taxes\" screen."
168
  msgstr ""
169
 
170
+ #: custom-post-type-ui.php:422
171
  msgid "Help Support This Plugin!"
172
  msgstr ""
173
 
174
+ #: custom-post-type-ui.php:426
175
  msgid "Professional WordPress<br />Third Edition"
176
  msgstr ""
177
 
178
+ #: custom-post-type-ui.php:428
179
+ msgid "Professional WordPress Design and Development book cover."
180
+ msgstr ""
181
+
182
+ #: custom-post-type-ui.php:431
183
  msgid ""
184
  "The leading book on WordPress design and development! Brand new third "
185
  "edition!"
186
  msgstr ""
187
 
188
+ #: custom-post-type-ui.php:434
189
  msgid "Professional WordPress<br />Plugin Development"
190
  msgstr ""
191
 
192
+ #: custom-post-type-ui.php:436
193
+ msgid "Professional WordPress Pluing Development book cover."
194
+ msgstr ""
195
+
196
+ #: custom-post-type-ui.php:439
197
  msgid "Highest rated WordPress development book on Amazon!"
198
  msgstr ""
199
 
200
+ #: custom-post-type-ui.php:442
201
  msgid "PayPal Donation"
202
  msgstr ""
203
 
204
+ #: custom-post-type-ui.php:446
205
  msgid "PayPal - The safer, easier way to pay online!"
206
  msgstr ""
207
 
208
+ #: custom-post-type-ui.php:449
209
  msgid "Please donate to the development of Custom Post Type UI:"
210
  msgstr ""
211
 
212
+ #: custom-post-type-ui.php:475
213
  #, php-format
214
  msgid "%s version %s by %s"
215
  msgstr ""
216
 
217
+ #: custom-post-type-ui.php:486
218
  msgid "Please Report Bugs"
219
  msgstr ""
220
 
221
+ #: custom-post-type-ui.php:489
222
  msgid "Follow on Twitter:"
223
  msgstr ""
224
 
225
+ #: custom-post-type-ui.php:553
226
  #, fuzzy
227
  msgid "Manage Taxonomies"
228
  msgstr "カスタム分類の管理"
229
 
230
+ #: custom-post-type-ui.php:557
231
  #, fuzzy
232
  msgid "Manage Post Types"
233
  msgstr "カスタム投稿タイプの管理"
234
 
235
+ #: custom-post-type-ui.php:585
236
  #, fuzzy
237
  msgid "Add New Post Type"
238
  msgstr "利用する投稿タイプ"
239
 
240
+ #: custom-post-type-ui.php:588
241
  #, fuzzy
242
  msgid "Edit Post Types"
243
  msgstr "カスタム投稿タイプを編集"
244
 
245
+ #: custom-post-type-ui.php:592
246
  #, fuzzy
247
  msgid "Add New Taxonomy"
248
  msgstr "分類名"
249
 
250
+ #: custom-post-type-ui.php:595
251
  #, fuzzy
252
  msgid "Edit Taxonomies"
253
  msgstr "ビルトイン分類"
254
 
255
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
 
256
  #, fuzzy
257
  msgid "Post Types"
258
  msgstr "投稿タイプ名"
259
 
260
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
261
+ #: inc/listings.php:161
262
  #, fuzzy
263
  msgid "Taxonomies"
264
  msgstr "ビルトイン分類"
265
 
266
+ #: custom-post-type-ui.php:601
267
  msgid "Get Code"
268
  msgstr ""
269
 
270
+ #: custom-post-type-ui.php:602
271
+ msgid "Debug Info"
272
+ msgstr ""
273
+
274
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
275
+ #: inc/post-types.php:420 inc/taxonomies.php:402
276
  msgid "Settings"
277
  msgstr ""
278
 
279
+ #: custom-post-type-ui.php:685
280
  msgid "Help"
281
  msgstr ""
282
 
283
+ #: custom-post-type-ui.php:714
284
  #, php-format
285
  msgid "%s has been successfully added"
286
  msgstr ""
287
 
288
+ #: custom-post-type-ui.php:716
289
  #, php-format
290
  msgid "%s has failed to be added"
291
  msgstr ""
292
 
293
+ #: custom-post-type-ui.php:720
294
  #, php-format
295
  msgid "%s has been successfully updated"
296
  msgstr ""
297
 
298
+ #: custom-post-type-ui.php:722
299
  #, php-format
300
  msgid "%s has failed to be updated"
301
  msgstr ""
302
 
303
+ #: custom-post-type-ui.php:726
304
  #, php-format
305
  msgid "%s has been successfully deleted"
306
  msgstr ""
307
 
308
+ #: custom-post-type-ui.php:728
309
  #, php-format
310
  msgid "%s has failed to be deleted"
311
  msgstr ""
312
 
313
+ #: custom-post-type-ui.php:732
314
  #, php-format
315
  msgid "%s has been successfully imported"
316
  msgstr ""
317
 
318
+ #: custom-post-type-ui.php:734
319
  #, php-format
320
  msgid "%s has failed to be imported"
321
  msgstr ""
322
 
323
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
324
  #, fuzzy, php-format
325
  msgid "Add new %s"
326
  msgstr "新規追加"
327
 
328
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
329
+ #: inc/listings.php:220
330
  #, fuzzy, php-format
331
  msgid "Edit %s"
332
  msgstr "編集"
333
 
334
+ #: custom-post-type-ui.php:819
335
  #, php-format
336
  msgid "New %s"
337
  msgstr ""
338
 
339
+ #: custom-post-type-ui.php:820
340
  #, fuzzy, php-format
341
  msgid "View %s"
342
  msgstr "表示"
343
 
344
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
345
  #, fuzzy, php-format
346
  msgid "All %s"
347
  msgstr "すべての項目"
348
 
349
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
350
  #, fuzzy, php-format
351
  msgid "Search %s"
352
  msgstr "項目検索"
353
 
354
+ #: custom-post-type-ui.php:823
355
  #, fuzzy, php-format
356
  msgid "No %s found."
357
  msgstr "見つかりません"
358
 
359
+ #: custom-post-type-ui.php:824
360
  #, fuzzy, php-format
361
  msgid "No %s found in trash."
362
  msgstr "ゴミ箱にはありません。"
363
 
364
+ #: custom-post-type-ui.php:828
365
  #, fuzzy, php-format
366
  msgid "Popular %s"
367
  msgstr "よく利用されている項目"
368
 
369
+ #: custom-post-type-ui.php:830
370
  #, fuzzy, php-format
371
  msgid "Parent %s"
372
  msgstr "親"
373
 
374
+ #: custom-post-type-ui.php:831
375
  #, fuzzy, php-format
376
  msgid "Parent %s:"
377
  msgstr "親"
378
 
379
+ #: custom-post-type-ui.php:833
380
  #, php-format
381
  msgid "Update %s"
382
  msgstr ""
383
 
384
+ #: custom-post-type-ui.php:835
385
  #, fuzzy, php-format
386
  msgid "New %s name"
387
  msgstr "新規項目名"
388
 
389
+ #: custom-post-type-ui.php:836
390
  #, fuzzy, php-format
391
  msgid "Separate %s with commas"
392
  msgstr "項目が複数ある場合はコンマで区切ってください。"
393
 
394
+ #: custom-post-type-ui.php:837
395
  #, fuzzy, php-format
396
  msgid "Add or remove %s"
397
  msgstr "項目の追加もしくは削除"
398
 
399
+ #: custom-post-type-ui.php:838
400
  #, fuzzy, php-format
401
  msgid "Choose from the most used %s"
402
  msgstr "最もよく使われているものから選択"
403
 
404
+ #: inc/import_export.php:77
405
+ msgid "No taxonomies to display at this time"
406
+ msgstr ""
407
+
408
+ #: inc/import_export.php:184
409
+ msgid "No post types to display at this time"
410
+ msgstr ""
411
+
412
+ #: inc/import_export.php:372
413
+ #, fuzzy
414
+ msgid "Post types"
415
+ msgstr "投稿タイプ名"
416
+
417
+ #: inc/import_export.php:404
418
  msgid ""
419
  "If you are wanting to migrate registered post types or taxonomies from this "
420
  "site to another, that will also use Custom Post Type UI, use the import and "
422
  "the information in the \"Get Code\" tab."
423
  msgstr ""
424
 
425
+ #: inc/import_export.php:407
426
  msgid "NOTE"
427
  msgstr ""
428
 
429
+ #: inc/import_export.php:408
430
+ msgid ""
431
+ "This will not export the associated posts or taxonomy terms, just the "
432
+ "settings."
433
  msgstr ""
434
 
435
+ #: inc/import_export.php:415
436
  #, fuzzy
437
  msgid "Import Post Types"
438
  msgstr "利用する投稿タイプ"
439
 
440
+ #: inc/import_export.php:419 inc/import_export.php:459
441
  msgid "Paste content here."
442
  msgstr ""
443
 
444
+ #: inc/import_export.php:422 inc/import_export.php:462
445
  msgid "Note:"
446
  msgstr ""
447
 
448
+ #: inc/import_export.php:422 inc/import_export.php:462
449
  msgid "Importing will overwrite previous registered settings."
450
  msgstr ""
451
 
452
+ #: inc/import_export.php:426
453
  msgid ""
454
  "To import post types from a different WordPress site, paste the exported "
455
  "content from that site and click the \"Import\" button."
456
  msgstr ""
457
 
458
+ #: inc/import_export.php:430 inc/import_export.php:470
459
  msgid "Import"
460
  msgstr ""
461
 
462
+ #: inc/import_export.php:435
463
  #, fuzzy
464
  msgid "Export Post Types"
465
  msgstr "利用する投稿タイプ"
466
 
467
+ #: inc/import_export.php:442
468
  msgid "No post types registered yet."
469
  msgstr ""
470
 
471
+ #: inc/import_export.php:445 inc/import_export.php:485
472
  msgid ""
473
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
474
  "(Mac)."
475
  msgstr ""
476
 
477
+ #: inc/import_export.php:448
478
  msgid ""
479
  "Use the content above to import current post types into a different "
480
  "WordPress site. You can also use this to simply back up your post type "
481
  "settings."
482
  msgstr ""
483
 
484
+ #: inc/import_export.php:455
485
  #, fuzzy
486
  msgid "Import Taxonomies"
487
  msgstr "ビルトイン分類"
488
 
489
+ #: inc/import_export.php:466
490
  msgid ""
491
  "To import taxonomies from a different WordPress site, paste the exported "
492
  "content from that site and click the \"Import\" button."
493
  msgstr ""
494
 
495
+ #: inc/import_export.php:475
496
  #, fuzzy
497
  msgid "Export Taxonomies"
498
  msgstr "ビルトイン分類"
499
 
500
+ #: inc/import_export.php:482
501
  msgid "No taxonomies registered yet."
502
  msgstr ""
503
 
504
+ #: inc/import_export.php:488
505
  msgid ""
506
  "Use the content above to import current taxonomies into a different "
507
  "WordPress site. You can also use this to simply back up your taxonomy "
508
  "settings."
509
  msgstr ""
510
 
511
+ #: inc/import_export.php:499
512
  msgid "Get Post Type and Taxonomy Code"
513
  msgstr ""
514
 
515
+ #: inc/import_export.php:501
516
  #, fuzzy
517
  msgid "All CPT UI Post Types"
518
  msgstr "追加されているカスタム投稿タイプ"
519
 
520
+ #: inc/import_export.php:504 inc/import_export.php:513
521
+ #: inc/import_export.php:521 inc/import_export.php:530
522
  msgid "Copy/paste the code below into your functions.php file."
523
  msgstr ""
524
 
525
+ #: inc/import_export.php:512
526
+ #, fuzzy, php-format
527
+ msgid "%s Post Type"
528
+ msgstr "利用する投稿タイプ"
529
+
530
+ #: inc/import_export.php:518
531
  #, fuzzy
532
  msgid "All CPT UI Taxonomies"
533
  msgstr "ビルトイン分類"
534
 
535
+ #: inc/import_export.php:529
536
+ #, fuzzy, php-format
537
+ msgid "%s Taxonomy"
538
+ msgstr "分類名"
539
 
540
+ #: inc/import_export.php:549
541
+ msgid "Please provide an email address to send debug information to: "
542
  msgstr ""
543
 
544
+ #: inc/import_export.php:551
545
+ msgid "Send debug info"
546
+ msgstr ""
 
547
 
548
  #: inc/listings.php:10
549
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
550
  msgstr ""
551
 
552
+ #: inc/listings.php:16 inc/listings.php:164
553
  #, php-format
554
  msgid "Total count: %d"
555
  msgstr ""
556
 
557
+ #: inc/listings.php:21
558
  #, fuzzy
559
  msgid "Post Type"
560
  msgstr "利用する投稿タイプ"
561
 
562
+ #: inc/listings.php:23 inc/post-types.php:754
563
  msgid "Supports"
564
  msgstr "サポート"
565
 
566
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
567
+ #: inc/taxonomies.php:260
568
  #, fuzzy
569
  msgid "Labels"
570
  msgstr "ラベル"
571
 
572
+ #: inc/listings.php:26 inc/listings.php:173
573
+ #, fuzzy
574
+ msgid "Template Hierarchy"
575
+ msgstr "階層"
576
 
577
+ #: inc/listings.php:81
578
  msgid "View frontend archive"
579
  msgstr ""
580
 
581
+ #: inc/listings.php:114 inc/listings.php:249
582
  msgid "No custom labels to display"
583
  msgstr ""
584
 
585
+ #: inc/listings.php:119
586
+ msgid "Archives file name examples."
587
+ msgstr ""
588
+
589
+ #: inc/listings.php:125
590
+ msgid "Single Posts file name examples."
591
+ msgstr ""
592
+
593
+ #: inc/listings.php:134 inc/listings.php:267
594
+ msgid "Template hierarchy Theme Handbook"
595
+ msgstr ""
596
+
597
+ #: inc/listings.php:152
598
+ #, php-format
599
+ msgid "No post types registered for display. Visit %s to get started."
600
+ msgstr ""
601
+
602
+ #: inc/listings.php:169
603
  #, fuzzy
604
  msgid "Taxonomy"
605
  msgstr "分類名"
606
 
607
+ #: inc/listings.php:254
608
+ msgid "Archives"
609
+ msgstr ""
610
+
611
+ #: inc/listings.php:263
612
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
613
+ msgstr ""
614
+
615
+ #: inc/listings.php:284
616
+ #, php-format
617
+ msgid "No taxonomies registered for display. Visit %s to get started."
618
+ msgstr ""
619
+
620
+ #: inc/post-types.php:34 inc/taxonomies.php:29
621
  msgid "Are you sure you want to delete this?"
622
  msgstr ""
623
 
624
+ #: inc/post-types.php:93
625
  msgid ""
626
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
627
  "registers a new post type entry for your install."
628
  msgstr ""
629
 
630
+ #: inc/post-types.php:94
631
  msgid ""
632
  "Use appropriate checkbox above save/delete buttons if you wish to change "
633
  "slugs and update post types for existing posts."
634
  msgstr ""
635
 
636
+ #: inc/post-types.php:95 inc/taxonomies.php:90
637
  msgid "Select: "
638
  msgstr ""
639
 
640
+ #: inc/post-types.php:107 inc/taxonomies.php:102
641
  msgid "Select"
642
  msgstr ""
643
 
644
+ #: inc/post-types.php:137
645
  #, fuzzy
646
  msgid "Post Type Slug"
647
  msgstr "投稿タイプ名"
648
 
649
+ #: inc/post-types.php:138
650
  msgid "(e.g. movie)"
651
  msgstr ""
652
 
653
+ #: inc/post-types.php:139
654
  msgid ""
655
  "The post type name. Used to retrieve custom post type content. Should be "
656
  "short and unique"
657
  msgstr ""
658
 
659
+ #: inc/post-types.php:150 inc/taxonomies.php:140
660
  #, fuzzy
661
  msgid "Plural Label"
662
  msgstr "単数形のラベル"
663
 
664
+ #: inc/post-types.php:151
665
  msgid "(e.g. Movies)"
666
  msgstr ""
667
 
668
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
669
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
670
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
671
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
672
+ #: inc/post-types.php:411
673
  msgid "Post type label. Used in the admin menu for displaying post types."
674
  msgstr ""
675
 
676
+ #: inc/post-types.php:162 inc/taxonomies.php:149
677
  msgid "Singular Label"
678
  msgstr "単数形のラベル"
679
 
680
+ #: inc/post-types.php:163
681
  msgid "(e.g. Movie)"
682
  msgstr ""
683
 
684
+ #: inc/post-types.php:164
685
  msgid ""
686
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
687
  "needed."
688
  msgstr ""
689
 
690
+ #: inc/post-types.php:180 inc/taxonomies.php:166
691
  msgid "Description"
692
  msgstr "説明"
693
 
694
+ #: inc/post-types.php:181
695
  msgid ""
696
  "Custom Post Type Description. Describe what your custom post type is used "
697
  "for."
698
  msgstr ""
699
 
700
+ #: inc/post-types.php:193
701
  msgid "Migrate posts to newly renamed post type?"
702
  msgstr ""
703
 
704
+ #: inc/post-types.php:194
705
  msgid "Check this to migrate posts if and when renaming your post type."
706
  msgstr ""
707
 
708
+ #: inc/post-types.php:213
709
  #, fuzzy
710
  msgid "Save Post Type"
711
  msgstr "利用する投稿タイプ"
712
 
713
+ #: inc/post-types.php:224
714
  #, fuzzy
715
  msgid "Delete Post Type"
716
  msgstr "利用する投稿タイプ"
717
 
718
+ #: inc/post-types.php:236
719
  #, fuzzy
720
  msgid "Add Post Type"
721
  msgstr "利用する投稿タイプ"
722
 
723
+ #: inc/post-types.php:247 inc/taxonomies.php:249
724
  msgid "Starter Notes"
725
  msgstr ""
726
 
727
+ #: inc/post-types.php:250
728
  #, php-format
729
  msgid ""
730
  "Post Type names should have %smax 20 characters%s, and only contain "
733
  "revision, nav_menu_item."
734
  msgstr ""
735
 
736
+ #: inc/post-types.php:251
737
  #, php-format
738
  msgid ""
739
  "If you are unfamiliar with the advanced post type settings, just fill in the "
742
  "post type name. Hover over the question mark for more details."
743
  msgstr ""
744
 
745
+ #: inc/post-types.php:252
746
  #, fuzzy, php-format
747
  msgid ""
748
  "Deleting custom post types will %sNOT%s delete any content into the database "
753
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
754
  "ません。"
755
 
756
+ #: inc/post-types.php:266 inc/taxonomies.php:270
757
  #, fuzzy
758
  msgid "Menu Name"
759
  msgstr "名前"
760
 
761
+ #: inc/post-types.php:267
762
  msgid "Custom menu name for your custom post type."
763
  msgstr ""
764
 
765
+ #: inc/post-types.php:271
766
  msgid "(e.g. My Movies)"
767
  msgstr ""
768
 
769
+ #: inc/post-types.php:278 inc/taxonomies.php:279
770
  msgid "All Items"
771
  msgstr "すべての項目"
772
 
773
+ #: inc/post-types.php:283
774
  msgid "(e.g. All Movies)"
775
  msgstr ""
776
 
777
+ #: inc/post-types.php:290
778
  msgid "Add New"
779
  msgstr "新規追加"
780
 
781
+ #: inc/post-types.php:295
782
  #, fuzzy
783
  msgid "(e.g. Add New)"
784
  msgstr "新規追加"
785
 
786
+ #: inc/post-types.php:302 inc/taxonomies.php:315
787
  msgid "Add New Item"
788
  msgstr "新規項目追加"
789
 
790
+ #: inc/post-types.php:307
791
  msgid "(e.g. Add New Movie)"
792
  msgstr ""
793
 
794
+ #: inc/post-types.php:314
795
+ msgid "Edit"
796
+ msgstr "編集"
797
+
798
+ #: inc/post-types.php:319
799
  msgid "(e.g. Edit)"
800
  msgstr ""
801
 
802
+ #: inc/post-types.php:326 inc/taxonomies.php:288
803
  msgid "Edit Item"
804
  msgstr "項目を編集"
805
 
806
+ #: inc/post-types.php:331
807
  msgid "(e.g. Edit Movie)"
808
  msgstr ""
809
 
810
+ #: inc/post-types.php:338
811
  msgid "New Item"
812
  msgstr "新規項目"
813
 
814
+ #: inc/post-types.php:343
815
  #, fuzzy
816
  msgid "(e.g. New Movie)"
817
  msgstr "新規項目追加"
818
 
819
+ #: inc/post-types.php:350
820
  msgid "View"
821
  msgstr "表示"
822
 
823
+ #: inc/post-types.php:355
824
  msgid "(e.g. View)"
825
  msgstr ""
826
 
827
+ #: inc/post-types.php:362 inc/taxonomies.php:297
828
  msgid "View Item"
829
  msgstr "項目を表示"
830
 
831
+ #: inc/post-types.php:367
832
  msgid "(e.g. View Movie)"
833
  msgstr ""
834
 
835
+ #: inc/post-types.php:374
836
  #, fuzzy
837
  msgid "Search Item"
838
  msgstr "項目検索"
839
 
840
+ #: inc/post-types.php:379
841
  msgid "(e.g. Search Movie)"
842
  msgstr ""
843
 
844
+ #: inc/post-types.php:386
845
  msgid "Not Found"
846
  msgstr "見つかりません"
847
 
848
+ #: inc/post-types.php:391
849
  msgid "(e.g. No Movies found)"
850
  msgstr ""
851
 
852
+ #: inc/post-types.php:398
853
  msgid "Not Found in Trash"
854
  msgstr "ゴミ箱にはありません。"
855
 
856
+ #: inc/post-types.php:403
857
  #, fuzzy
858
  msgid "(e.g. No Movies found in Trash)"
859
  msgstr "ゴミ箱にはありません。"
860
 
861
+ #: inc/post-types.php:410
862
  msgid "Parent"
863
  msgstr "親"
864
 
865
+ #: inc/post-types.php:415
866
  msgid "(e.g. Parent Movie)"
867
  msgstr ""
868
 
869
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
870
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
871
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
872
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
873
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
874
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
875
+ #: inc/taxonomies.php:548
876
  msgid "False"
877
  msgstr ""
878
 
879
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
880
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
881
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
882
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
883
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
884
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
885
+ #: inc/taxonomies.php:549
886
  msgid "True"
887
  msgstr ""
888
 
889
+ #: inc/post-types.php:438
890
  msgid "Public"
891
  msgstr "一般公開"
892
 
893
+ #: inc/post-types.php:439
894
+ msgid "(CPTUI default: True.)"
 
 
895
  msgstr ""
896
 
897
+ #: inc/post-types.php:440
898
  msgid ""
899
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
900
  "Whether posts of this type should be shown in the admin UI and is publicly "
901
  "queryable."
902
  msgstr ""
903
 
904
+ #: inc/post-types.php:458 inc/taxonomies.php:434
905
  msgid "Show UI"
906
  msgstr "UI を表示"
907
 
908
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
909
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
910
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
911
+ msgid "(default: True)"
912
+ msgstr ""
913
+
914
+ #: inc/post-types.php:460
915
  msgid "Whether to generate a default UI for managing this post type."
916
  msgstr ""
917
 
918
+ #: inc/post-types.php:478
919
+ #, fuzzy
920
+ msgid "Show in Nav Menus"
921
+ msgstr "UI を表示"
922
+
923
+ #: inc/post-types.php:479
924
+ msgid "(CPTUI default: true)"
925
  msgstr ""
926
 
927
+ #: inc/post-types.php:480
928
+ msgid "Whether post type is available for selection in navigation menus."
929
  msgstr ""
930
 
931
+ #: inc/post-types.php:498 inc/taxonomies.php:557
932
+ msgid "Show in REST API"
933
  msgstr ""
934
 
935
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
936
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
937
+ #: inc/taxonomies.php:558
938
  msgid "(default: False)"
939
  msgstr ""
940
 
941
+ #: inc/post-types.php:500
942
+ msgid "Whether to show this post type data in the WP REST API."
943
+ msgstr ""
944
+
945
+ #: inc/post-types.php:508 inc/taxonomies.php:567
946
+ msgid "REST API base slug"
947
+ msgstr ""
948
+
949
+ #: inc/post-types.php:509 inc/taxonomies.php:568
950
+ msgid "Slug to use in REST API URLs."
951
+ msgstr ""
952
+
953
+ #: inc/post-types.php:519
954
+ msgid "Has Archive"
955
+ msgstr ""
956
+
957
+ #: inc/post-types.php:520
958
+ msgid "Whether the post type will have a post type archive URL."
959
+ msgstr ""
960
+
961
+ #: inc/post-types.php:521
962
+ msgid "If left blank, the archive slug will default to the post type slug."
963
+ msgstr ""
964
+
965
+ #: inc/post-types.php:547
966
  msgid "Slug to be used for archive URL."
967
  msgstr ""
968
 
969
+ #: inc/post-types.php:567
970
  msgid "Exclude From Search"
971
  msgstr ""
972
 
973
+ #: inc/post-types.php:569
974
  msgid ""
975
  "Whether to exclude posts with this post type from front end search results."
976
  msgstr ""
977
 
978
+ #: inc/post-types.php:580
979
  msgid "Capability Type"
980
  msgstr "利用タイプ"
981
 
982
+ #: inc/post-types.php:581
983
  msgid "The post type to use for checking read, edit, and delete capabilities"
984
  msgstr ""
985
 
986
+ #: inc/post-types.php:598 inc/taxonomies.php:417
987
  msgid "Hierarchical"
988
  msgstr "階層"
989
 
990
+ #: inc/post-types.php:600
991
  msgid "Whether the post type can have parent-child relationships"
992
  msgstr ""
993
 
994
+ #: inc/post-types.php:618 inc/taxonomies.php:477
995
  msgid "Rewrite"
996
  msgstr "リライト"
997
 
998
+ #: inc/post-types.php:620
999
  msgid "Whether or not WordPress should use rewrites for this post type"
1000
  msgstr ""
1001
 
1002
+ #: inc/post-types.php:631 inc/taxonomies.php:488
1003
  msgid "Custom Rewrite Slug"
1004
  msgstr "カスタムリライトスラッグ"
1005
 
1006
+ #: inc/post-types.php:632
1007
  msgid "(default: post type slug)"
1008
  msgstr ""
1009
 
1010
+ #: inc/post-types.php:633
1011
  msgid "Custom post type slug to use instead of the default."
1012
  msgstr ""
1013
 
1014
+ #: inc/post-types.php:650
1015
  msgid "With Front"
1016
  msgstr ""
1017
 
1018
+ #: inc/post-types.php:652 inc/taxonomies.php:505
1019
  msgid "Should the permastruct be prepended with the front base."
1020
  msgstr ""
1021
 
1022
+ #: inc/post-types.php:670 inc/taxonomies.php:451
1023
  msgid "Query Var"
1024
  msgstr "クエリーバージョン"
1025
 
1026
+ #: inc/post-types.php:672
1027
  msgid "Sets the query_var key for this post type."
1028
  msgstr ""
1029
 
1030
+ #: inc/post-types.php:683
1031
+ #, fuzzy
1032
+ msgid "Custom Query Var Slug"
1033
+ msgstr "カスタムリライトスラッグ"
1034
+
1035
+ #: inc/post-types.php:684
1036
+ msgid "(default: post type slug) Query var needs to be true to use."
1037
+ msgstr ""
1038
+
1039
+ #: inc/post-types.php:685
1040
+ msgid "Custom query var slug to use instead of the default."
1041
+ msgstr ""
1042
+
1043
+ #: inc/post-types.php:692
1044
  msgid "Menu Position"
1045
  msgstr "メニューの位置"
1046
 
1047
+ #: inc/post-types.php:693
1048
  msgid ""
1049
  "The position in the menu order the post type should appear. show_in_menu "
1050
  "must be true."
1051
  msgstr ""
1052
 
1053
+ #: inc/post-types.php:694
1054
  msgid ""
1055
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1056
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
1057
  "the \"menu_position\" section. Range of 5-100"
1058
  msgstr ""
1059
 
1060
+ #: inc/post-types.php:709
1061
  msgid "Show in Menu"
1062
  msgstr ""
1063
 
1064
+ #: inc/post-types.php:710
1065
  msgid ""
1066
  "Whether to show the post type in the admin menu and where to show that menu."
1067
  msgstr ""
1068
 
1069
+ #: inc/post-types.php:711
1070
  msgid ""
1071
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1072
  "php\" is indicated for second input, post type will be sub menu of that."
1073
  msgstr ""
1074
 
1075
+ #: inc/post-types.php:737
1076
  msgid "Top-level page file name to make post type a sub-menu of."
1077
  msgstr ""
1078
 
1079
+ #: inc/post-types.php:749
1080
  #, fuzzy
1081
  msgid "Menu Icon"
1082
  msgstr "メニューの位置"
1083
 
1084
+ #: inc/post-types.php:750
1085
  msgid "(Full URL for icon or Dashicon class)"
1086
  msgstr ""
1087
 
1088
+ #: inc/post-types.php:751
1089
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1090
  msgstr ""
1091
 
1092
+ #: inc/post-types.php:764
1093
  msgid "Title"
1094
  msgstr ""
1095
 
1096
+ #: inc/post-types.php:765
1097
  msgid "Adds the title meta box when creating content for this custom post type"
1098
  msgstr ""
1099
 
1100
+ #: inc/post-types.php:779
1101
  #, fuzzy
1102
  msgid "Editor"
1103
  msgstr "編集"
1104
 
1105
+ #: inc/post-types.php:780
1106
  msgid ""
1107
  "Adds the content editor meta box when creating content for this custom post "
1108
  "type"
1109
  msgstr ""
1110
 
1111
+ #: inc/post-types.php:794
1112
  msgid "Excerpt"
1113
  msgstr ""
1114
 
1115
+ #: inc/post-types.php:795
1116
  msgid ""
1117
  "Adds the excerpt meta box when creating content for this custom post type"
1118
  msgstr ""
1119
 
1120
+ #: inc/post-types.php:809
1121
  msgid "Trackbacks"
1122
  msgstr ""
1123
 
1124
+ #: inc/post-types.php:810
1125
  msgid ""
1126
  "Adds the trackbacks meta box when creating content for this custom post type"
1127
  msgstr ""
1128
 
1129
+ #: inc/post-types.php:824
1130
  #, fuzzy
1131
  msgid "Custom Fields"
1132
  msgstr "カスタムリライトスラッグ"
1133
 
1134
+ #: inc/post-types.php:825
1135
  msgid ""
1136
  "Adds the custom fields meta box when creating content for this custom post "
1137
  "type"
1138
  msgstr ""
1139
 
1140
+ #: inc/post-types.php:839
1141
  msgid "Comments"
1142
  msgstr ""
1143
 
1144
+ #: inc/post-types.php:840
1145
  msgid ""
1146
  "Adds the comments meta box when creating content for this custom post type"
1147
  msgstr ""
1148
 
1149
+ #: inc/post-types.php:854
1150
  msgid "Revisions"
1151
  msgstr ""
1152
 
1153
+ #: inc/post-types.php:855
1154
  msgid ""
1155
  "Adds the revisions meta box when creating content for this custom post type"
1156
  msgstr ""
1157
 
1158
+ #: inc/post-types.php:869
1159
  msgid "Featured Image"
1160
  msgstr ""
1161
 
1162
+ #: inc/post-types.php:870
1163
  msgid ""
1164
  "Adds the featured image meta box when creating content for this custom post "
1165
  "type"
1166
  msgstr ""
1167
 
1168
+ #: inc/post-types.php:884
1169
  msgid "Author"
1170
  msgstr ""
1171
 
1172
+ #: inc/post-types.php:885
1173
  msgid ""
1174
  "Adds the author meta box when creating content for this custom post type"
1175
  msgstr ""
1176
 
1177
+ #: inc/post-types.php:899
1178
  msgid "Page Attributes"
1179
  msgstr ""
1180
 
1181
+ #: inc/post-types.php:900
1182
  msgid ""
1183
  "Adds the page attribute meta box when creating content for this custom post "
1184
  "type"
1185
  msgstr ""
1186
 
1187
+ #: inc/post-types.php:914
1188
  msgid "Post Formats"
1189
  msgstr ""
1190
 
1191
+ #: inc/post-types.php:915
1192
  msgid "Adds post format support"
1193
  msgstr ""
1194
 
1195
+ #: inc/post-types.php:920
1196
  msgid "Use the option below to explicitly set \"supports\" to false."
1197
  msgstr ""
1198
 
1199
+ #: inc/post-types.php:928
1200
  msgid "None"
1201
  msgstr ""
1202
 
1203
+ #: inc/post-types.php:929
1204
  msgid "Remove all support features"
1205
  msgstr ""
1206
 
1207
+ #: inc/post-types.php:936
1208
  #, fuzzy
1209
  msgid "Custom \"Supports\""
1210
  msgstr "サポート"
1211
 
1212
+ #: inc/post-types.php:937
1213
  msgid ""
1214
  "Use this input to register custom \"supports\" values, separated by commas."
1215
  msgstr ""
1216
 
1217
+ #: inc/post-types.php:943
1218
  msgid "Provide custom support slugs here."
1219
  msgstr ""
1220
 
1221
+ #: inc/post-types.php:949
1222
  msgid "Built-in Taxonomies"
1223
  msgstr "ビルトイン分類"
1224
 
1225
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1226
  #, php-format
1227
  msgid "Adds %s support"
1228
  msgstr ""
1229
 
1230
+ #: inc/post-types.php:1085
1231
  msgid "Please provide a post type to delete"
1232
  msgstr ""
1233
 
1234
+ #: inc/post-types.php:1145
1235
  msgid "Please provide a post type name"
1236
  msgstr ""
1237
 
1238
+ #: inc/post-types.php:1169
1239
  msgid "Please do not use quotes in post type names or rewrite slugs"
1240
  msgstr ""
1241
 
1242
+ #: inc/post-types.php:1176
1243
  #, php-format
1244
  msgid "Please choose a different post type name. %s is already registered."
1245
  msgstr ""
1246
 
1247
+ #: inc/support.php:45
1248
  #, fuzzy
1249
  msgid "Custom Post Type UI Support"
1250
  msgstr "Custom Post Types UI"
1251
 
1252
+ #: inc/support.php:47
1253
  #, php-format
1254
  msgid ""
1255
  "Please note that this plugin will NOT handle display of registered post "
1257
  "you. If all else fails, visit us on the %s"
1258
  msgstr ""
1259
 
1260
+ #: inc/support.php:48
1261
  #, fuzzy
1262
  msgid "Support Forums"
1263
  msgstr "サポート"
1264
 
1265
+ #: inc/support.php:54
1266
  msgid "General"
1267
  msgstr ""
1268
 
1269
+ #: inc/support.php:57
1270
+ msgid ""
1271
+ "I have post types with spaces in their slug and can not successfully delete "
1272
+ "them. How can I fix that?"
1273
+ msgstr ""
1274
+
1275
+ #: inc/support.php:58
1276
+ msgid ""
1277
+ "Visit the Import/Export page and copy the export code into the import side "
1278
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1279
+ "You should be able to delete the individual post types afterwards."
1280
+ msgstr ""
1281
+
1282
+ #: inc/support.php:62
1283
  msgid ""
1284
  "I changed my custom post type name and now I can not get to my posts. How do "
1285
  "I get them back?"
1286
  msgstr ""
1287
 
1288
+ #: inc/support.php:63
1289
  msgid ""
1290
  "You can either change the custom post type name back to the original name or "
1291
  "try the Post Type Switcher plugin"
1292
  msgstr ""
1293
 
1294
+ #: inc/support.php:68
1295
  msgid ""
1296
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1297
  "shown. How do I remove the duplicate?"
1298
  msgstr ""
1299
 
1300
+ #: inc/support.php:69
1301
  msgid ""
1302
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1303
  "saved option which gets registered as its own post type or taxonomy. Since "
1305
  "delete the previous version's entry."
1306
  msgstr ""
1307
 
1308
+ #: inc/support.php:72
1309
  msgid ""
1310
  "I have added post thumbnail and/or post format support to my post type, but "
1311
  "those do not appear when adding a post type post."
1312
  msgstr ""
1313
 
1314
+ #: inc/support.php:73
1315
  msgid ""
1316
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1317
  msgstr ""
1318
 
1319
+ #: inc/support.php:76
1320
+ msgid "Do you have any recommendations for an alternative to Visual Composer."
1321
+ msgstr ""
1322
+
1323
+ #: inc/support.php:77
1324
+ msgid "We recommend using VelocityPage."
1325
+ msgstr ""
1326
+
1327
+ #: inc/support.php:82
1328
+ msgid ""
1329
+ "Is there any way to get CPTUI-registered post types working with Visual "
1330
+ "Composer Media Grid?"
1331
+ msgstr ""
1332
+
1333
+ #: inc/support.php:84
1334
+ msgid "Please see the solution from the following forum support thread."
1335
+ msgstr ""
1336
+
1337
+ #: inc/support.php:91
1338
  msgid "Front-end Display"
1339
  msgstr ""
1340
 
1341
+ #: inc/support.php:94
1342
  msgid "What template files should I edit to alter my post type display?"
1343
  msgstr ""
1344
 
1345
+ #: inc/support.php:95
1346
  #, php-format
1347
  msgid ""
1348
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1349
  "details about available templates."
1350
  msgstr ""
1351
 
1352
+ #: inc/support.php:102
1353
  msgid "How do I display my custom post type on my site?"
1354
  msgstr ""
1355
 
1356
+ #: inc/support.php:103
1357
  #, php-format
1358
  msgid ""
1359
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1361
  "should be something like \"http://www.mysite.com/post-type-slug\""
1362
  msgstr ""
1363
 
1364
+ #: inc/support.php:109
1365
  msgid ""
1366
  "I have added categories and tags to my custom post type, but they do not "
1367
  "appear in the archives."
1368
  msgstr ""
1369
 
1370
+ #: inc/support.php:110
1371
  #, php-format
1372
  msgid ""
1373
  "You will need to add your newly created post type to the types that the "
1375
  "that at %s"
1376
  msgstr ""
1377
 
1378
+ #: inc/support.php:119
1379
  msgid "Advanced"
1380
  msgstr ""
1381
 
1382
+ #: inc/support.php:122
1383
  msgid "How do I add custom metaboxes to my post type?"
1384
  msgstr ""
1385
 
1386
+ #: inc/support.php:124
1387
  #, php-format
1388
  msgid ""
1389
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1390
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1391
  msgstr ""
1392
 
1393
+ #: inc/support.php:130
1394
  msgid ""
1395
  "How do I add a newly registered taxonomy to a post type that already exists?"
1396
  msgstr ""
1397
 
1398
+ #: inc/support.php:132
1399
  #, php-format
1400
  msgid "Check out the %s function for documentation and usage examples."
1401
  msgstr ""
1402
 
1403
+ #: inc/support.php:138
1404
  #, fuzzy
1405
  msgid "Post relationships?"
1406
  msgstr "利用する投稿タイプ"
1407
 
1408
+ #: inc/support.php:139
1409
  #, php-format
1410
  msgid ""
1411
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1412
  "plugin that should be a good start."
1413
  msgstr ""
1414
 
1415
+ #: inc/support.php:148
1416
  msgid "Is there any function reference list?"
1417
  msgstr ""
1418
 
1419
+ #: inc/support.php:149
1420
  #, php-format
1421
  msgid ""
1422
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1423
  "will be useful as they are attached to hooks."
1424
  msgstr ""
1425
 
1426
+ #: inc/support.php:153
1427
  msgid ""
1428
  "How do I filter the \"enter title here\" text in the post editor screen?"
1429
  msgstr ""
1430
 
1431
+ #: inc/support.php:154
1432
  msgid ""
1433
  "Change text inside the post/page editor title field. Should be able to adapt "
1434
  "as necessary."
1435
  msgstr ""
1436
 
1437
+ #: inc/taxonomies.php:89
1438
  msgid ""
1439
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1440
  "registers a new taxonomy entry for your install."
1441
  msgstr ""
1442
 
1443
+ #: inc/taxonomies.php:129
1444
  #, fuzzy
1445
  msgid "Taxonomy Slug"
1446
  msgstr "分類名"
1447
 
1448
+ #: inc/taxonomies.php:130
1449
  #, fuzzy
1450
  msgid "(e.g. actor)"
1451
  msgstr "項目の追加もしくは削除"
1452
 
1453
+ #: inc/taxonomies.php:131
1454
  msgid ""
1455
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1456
  "and unique"
1457
  msgstr ""
1458
 
1459
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1460
  msgid "(e.g. Actors)"
1461
  msgstr ""
1462
 
1463
+ #: inc/taxonomies.php:141
1464
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1465
  msgstr ""
1466
 
1467
+ #: inc/taxonomies.php:148
1468
  msgid "(e.g. Actor)"
1469
  msgstr ""
1470
 
1471
+ #: inc/taxonomies.php:150
1472
  msgid ""
1473
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1474
  msgstr ""
1475
 
1476
+ #: inc/taxonomies.php:167
1477
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1478
+ msgstr ""
1479
+
1480
+ #: inc/taxonomies.php:170
1481
  msgid "Attach to Post Type"
1482
  msgstr "利用する投稿タイプ"
1483
 
1484
+ #: inc/taxonomies.php:220
1485
  #, fuzzy
1486
  msgid "Save Taxonomy"
1487
  msgstr "分類名"
1488
 
1489
+ #: inc/taxonomies.php:231
1490
  #, fuzzy
1491
  msgid "Delete Taxonomy"
1492
  msgstr "カスタム分類作成"
1493
 
1494
+ #: inc/taxonomies.php:243
1495
  #, fuzzy
1496
  msgid "Add Taxonomy"
1497
  msgstr "分類名"
1498
 
1499
+ #: inc/taxonomies.php:252
1500
  #, php-format
1501
  msgid ""
1502
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1504
  "letters that do not have accents."
1505
  msgstr ""
1506
 
1507
+ #: inc/taxonomies.php:253
1508
  #, php-format
1509
  msgid ""
1510
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1514
  "marks for more details."
1515
  msgstr ""
1516
 
1517
+ #: inc/taxonomies.php:254
1518
  #, fuzzy, php-format
1519
  msgid ""
1520
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1525
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1526
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1527
 
1528
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1529
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1530
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1531
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1532
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1533
  msgid ""
1534
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1535
  msgstr ""
1536
 
1537
+ #: inc/taxonomies.php:278
1538
  msgid "(e.g. All Actors)"
1539
  msgstr ""
1540
 
1541
+ #: inc/taxonomies.php:287
1542
  msgid "(e.g. Edit Actor)"
1543
  msgstr ""
1544
 
1545
+ #: inc/taxonomies.php:296
1546
  msgid "(e.g. View Actor)"
1547
  msgstr ""
1548
 
1549
+ #: inc/taxonomies.php:305
1550
  msgid "(e.g. Update Actor Name)"
1551
  msgstr ""
1552
 
1553
+ #: inc/taxonomies.php:306
1554
  #, fuzzy
1555
  msgid "Update Item Name"
1556
  msgstr "項目をアップデート"
1557
 
1558
+ #: inc/taxonomies.php:314
1559
  msgid "(e.g. Add New Actor)"
1560
  msgstr ""
1561
 
1562
+ #: inc/taxonomies.php:323
1563
  msgid "(e.g. New Actor Name)"
1564
  msgstr ""
1565
 
1566
+ #: inc/taxonomies.php:324
1567
  msgid "New Item Name"
1568
  msgstr "新規項目名"
1569
 
1570
+ #: inc/taxonomies.php:332
1571
  msgid "(e.g. Parent Actor)"
1572
  msgstr ""
1573
 
1574
+ #: inc/taxonomies.php:333
1575
  msgid "Parent Item"
1576
  msgstr "親項目"
1577
 
1578
+ #: inc/taxonomies.php:341
1579
  msgid "(e.g. Parent Actor:)"
1580
  msgstr ""
1581
 
1582
+ #: inc/taxonomies.php:342
1583
  msgid "Parent Item Colon"
1584
  msgstr "親項目コロン"
1585
 
1586
+ #: inc/taxonomies.php:350
1587
  msgid "(e.g. Search Actors)"
1588
  msgstr ""
1589
 
1590
+ #: inc/taxonomies.php:351
1591
  msgid "Search Items"
1592
  msgstr "項目検索"
1593
 
1594
+ #: inc/taxonomies.php:359
1595
  msgid "(e.g. Popular Actors)"
1596
  msgstr ""
1597
 
1598
+ #: inc/taxonomies.php:360
1599
  msgid "Popular Items"
1600
  msgstr "よく利用されている項目"
1601
 
1602
+ #: inc/taxonomies.php:368
1603
  #, fuzzy
1604
+ msgid "(e.g. Separate Actors with commas)"
1605
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1606
 
1607
+ #: inc/taxonomies.php:369
1608
  msgid "Separate Items with Commas"
1609
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1610
 
1611
+ #: inc/taxonomies.php:377
1612
  #, fuzzy
1613
+ msgid "(e.g. Add or remove Actors)"
1614
  msgstr "項目の追加もしくは削除"
1615
 
1616
+ #: inc/taxonomies.php:378
1617
  msgid "Add or Remove Items"
1618
  msgstr "項目の追加もしくは削除"
1619
 
1620
+ #: inc/taxonomies.php:386
1621
  #, fuzzy
1622
+ msgid "(e.g. Choose from the most used Actors)"
1623
  msgstr "最もよく使われているものから選択"
1624
 
1625
+ #: inc/taxonomies.php:387
1626
  msgid "Choose From Most Used"
1627
  msgstr "最もよく使われているものから選択"
1628
 
1629
+ #: inc/taxonomies.php:395
1630
+ #, fuzzy
1631
+ msgid "(e.g. No Actors found)"
1632
+ msgstr "ゴミ箱にはありません。"
1633
 
1634
+ #: inc/taxonomies.php:396
1635
  #, fuzzy
1636
  msgid "Not found"
1637
  msgstr "見つかりません"
1638
 
1639
+ #: inc/taxonomies.php:419
1640
  msgid "Whether the taxonomy can have parent-child relationships"
1641
  msgstr ""
1642
 
1643
+ #: inc/taxonomies.php:436
1644
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1645
  msgstr ""
1646
 
1647
+ #: inc/taxonomies.php:453
1648
  msgid "Sets the query_var key for this taxonomy."
1649
  msgstr ""
1650
 
1651
+ #: inc/taxonomies.php:461
1652
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1653
  msgstr ""
1654
 
1655
+ #: inc/taxonomies.php:462
1656
  msgid "Custom Query Var String"
1657
  msgstr ""
1658
 
1659
+ #: inc/taxonomies.php:463
1660
  msgid "Sets a custom query_var slug for this taxonomy."
1661
  msgstr ""
1662
 
1663
+ #: inc/taxonomies.php:479
1664
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1665
  msgstr ""
1666
 
1667
+ #: inc/taxonomies.php:487
1668
  #, fuzzy
1669
  msgid "(default: taxonomy name)"
1670
  msgstr "新規項目名"
1671
 
1672
+ #: inc/taxonomies.php:489
1673
  msgid "Custom taxonomy rewrite slug."
1674
  msgstr ""
1675
 
1676
+ #: inc/taxonomies.php:503
1677
  msgid "Rewrite With Front"
1678
  msgstr ""
1679
 
1680
+ #: inc/taxonomies.php:504
1681
  msgid "(default: true)"
1682
  msgstr ""
1683
 
1684
+ #: inc/taxonomies.php:520
1685
  #, fuzzy
1686
  msgid "Rewrite Hierarchical"
1687
  msgstr "階層"
1688
 
1689
+ #: inc/taxonomies.php:521
1690
  msgid "(default: false)"
1691
  msgstr ""
1692
 
1693
+ #: inc/taxonomies.php:522
1694
  msgid "Should the permastruct allow hierarchical urls."
1695
  msgstr ""
1696
 
1697
+ #: inc/taxonomies.php:537
1698
  msgid "Show Admin Column"
1699
  msgstr ""
1700
 
1701
+ #: inc/taxonomies.php:539
1702
  msgid ""
1703
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1704
  "types."
1705
  msgstr ""
1706
 
1707
+ #: inc/taxonomies.php:559
1708
+ msgid "Whether to show this taxonomy data in the WP REST API."
1709
+ msgstr ""
1710
+
1711
+ #: inc/taxonomies.php:676
1712
  msgid "Please provide a taxonomy to delete"
1713
  msgstr ""
1714
 
1715
+ #: inc/taxonomies.php:727
1716
  msgid "Please provide a taxonomy name"
1717
  msgstr ""
1718
 
1719
+ #: inc/taxonomies.php:743
1720
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1721
  msgstr ""
1722
 
1723
+ #: inc/taxonomies.php:749
1724
  #, php-format
1725
  msgid "Please choose a different taxonomy name. %s is already used."
1726
  msgstr ""
1742
  msgid "http://webdevstudios.com/"
1743
  msgstr ""
1744
 
1745
+ #, fuzzy
1746
+ #~ msgid "Post type migration"
1747
+ #~ msgstr "投稿タイプ名"
1748
+
1749
  #, fuzzy
1750
  #~ msgid "Edit Post Type"
1751
  #~ msgstr "利用する投稿タイプ"
1754
  #~ msgid "Edit Taxonomy"
1755
  #~ msgstr "カスタム分類の編集"
1756
 
 
 
 
 
 
 
 
 
1757
  #, fuzzy
1758
  #~ msgid "Custom Taxonomy Rewrite Slug"
1759
  #~ msgstr "カスタムリライトスラッグ"
languages/custom-post-type-ui-pt_PT.mo ADDED
Binary file
languages/custom-post-type-ui-pt_PT.po ADDED
@@ -0,0 +1,1889 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-12-22 00:22+0000\n"
6
+ "PO-Revision-Date: 2015-12-22 00:22+0000\n"
7
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
+ "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
9
+ "Language: pt_PT\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: tests\n"
23
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
24
+
25
+ #: classes/class.cptui_debug_info.php:7
26
+ msgid ""
27
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
28
+ "requested to send the information below to the plugin developer. Simply "
29
+ "insert the email they provided in the input field at the bottom and click "
30
+ "the \"Send debug info\" button. Only the data below will be sent to them."
31
+ msgstr ""
32
+ "Se procurou suporte do Custom Port Type UI no fórum, pode ser-lhe solicitado "
33
+ "que envie a informação abaixo ao programador do plugin. Basta introduzir o "
34
+ "email fornecido no campo correspondente e clicar no botão \"Enviar "
35
+ "informação de depuração\". Apenas serão enviados os dados abaixo."
36
+
37
+ #: classes/class.cptui_debug_info.php:186
38
+ #, php-format
39
+ msgid "CPTUI debug information for %s"
40
+ msgstr "Informação de depuração do CPT UI para %s"
41
+
42
+ #: custom-post-type-ui.php:61
43
+ msgid "Custom Post Types"
44
+ msgstr "Tipos de conteúdo personalizados"
45
+
46
+ #: custom-post-type-ui.php:61
47
+ msgid "CPT UI"
48
+ msgstr "CPT UI"
49
+
50
+ #: custom-post-type-ui.php:62 inc/listings.php:155
51
+ msgid "Add/Edit Post Types"
52
+ msgstr "Adicionar/editar tipos de conteúdo"
53
+
54
+ #: custom-post-type-ui.php:63 inc/listings.php:287
55
+ msgid "Add/Edit Taxonomies"
56
+ msgstr "Adicionar/editar taxonomias"
57
+
58
+ #: custom-post-type-ui.php:64
59
+ msgid "Registered Types and Taxes"
60
+ msgstr "Tipos e taxonomias registados"
61
+
62
+ #: custom-post-type-ui.php:64
63
+ msgid "Registered Types/Taxes"
64
+ msgstr "Tipos/taxonomias registados"
65
+
66
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
67
+ msgid "Import/Export"
68
+ msgstr "Importar/Exportar"
69
+
70
+ #: custom-post-type-ui.php:66
71
+ msgid "Help/Support"
72
+ msgstr "Ajuda/suporte"
73
+
74
+ #: custom-post-type-ui.php:70
75
+ msgid "About CPT UI"
76
+ msgstr "Sobre o CPT UI"
77
+
78
+ #. Plugin Name of the plugin/theme
79
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
80
+ msgid "Custom Post Type UI"
81
+ msgstr "Custom Post Type UI"
82
+
83
+ #: custom-post-type-ui.php:385
84
+ msgid ""
85
+ "Thank you for choosing Custom Post Type UI. We hope that your experience "
86
+ "with our plugin provides efficiency and speed in creating post types and "
87
+ "taxonomies, to better organize your content, without having to touch code."
88
+ msgstr ""
89
+ "Obrigado por escolher o Custom Post Type UI. Esperamos que a sua experiência "
90
+ "com o nosso plugin proporcione eficiência e rapidez na criação de tipos de "
91
+ "conteúdo e de taxonomias, para melhor organizar os seus conteúdos sem ter "
92
+ "que mexer em código."
93
+
94
+ #: custom-post-type-ui.php:387
95
+ #, php-format
96
+ msgid "What's new in version %s"
97
+ msgstr "O que há de novo na versão %s"
98
+
99
+ #: custom-post-type-ui.php:392
100
+ msgid "Updated internationalization"
101
+ msgstr "Internacionalização actualizada"
102
+
103
+ #: custom-post-type-ui.php:393
104
+ msgid ""
105
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
106
+ "to help aid in translating Custom Post Type UI"
107
+ msgstr ""
108
+ "O nosso textdomain agora corresponde à slug do plugin no repositório do "
109
+ "WordPress.org para facilitar a tradução do Custom Post Type UI"
110
+
111
+ #: custom-post-type-ui.php:396
112
+ msgid "Debugging information"
113
+ msgstr "Informação de depuração"
114
+
115
+ #: custom-post-type-ui.php:397
116
+ msgid ""
117
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
118
+ "debugging issues with Custom Post Type UI."
119
+ msgstr ""
120
+ "Adicionámos um novo separador \"Informação de depuração\" à área Importar/"
121
+ "Exportar para ajudar a identificar problemas do Custom Post Type UI."
122
+
123
+ #: custom-post-type-ui.php:400
124
+ msgid "Improved accessibility"
125
+ msgstr "Acessibilidade melhorada"
126
+
127
+ #: custom-post-type-ui.php:401
128
+ msgid ""
129
+ "A lot of work was done in the areas of accessibility to help aid users who "
130
+ "need it. If you have feedback on where it could be further improved, let us "
131
+ "know."
132
+ msgstr ""
133
+ "Foi feito muito trabalho na área da acessibilidade para ajudar os "
134
+ "utilizadores que mais precisam. Se tem alguma sugestão sobre como melhorar, "
135
+ "diga-nos."
136
+
137
+ #: custom-post-type-ui.php:404
138
+ msgid "WP REST API support"
139
+ msgstr "Suporte para WP REST API"
140
+
141
+ #: custom-post-type-ui.php:405
142
+ msgid ""
143
+ "We now have support for the required fields for the WP REST API. Now you can "
144
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
145
+ "API lists."
146
+ msgstr ""
147
+ "Agora com suporta para os campos necessários para a WP REST API. Agora pode "
148
+ "adicionar os seus tipos de conteúdo e taxonomias do Custom Post Types UI às "
149
+ "listas disponíveis da REST API."
150
+
151
+ #: custom-post-type-ui.php:408
152
+ msgid "More parameter support"
153
+ msgstr "Suporte para mais parâmetros"
154
+
155
+ #: custom-post-type-ui.php:409
156
+ msgid ""
157
+ "We have added more parameters for greater customization of your post type "
158
+ "and taxonomy settings."
159
+ msgstr ""
160
+ "Adicionámos mais parâmetros para melhor personalização das definições do seu "
161
+ "tipo de conteúdo e taxonomias."
162
+
163
+ #: custom-post-type-ui.php:412
164
+ msgid "New individual \"Get Code\" sections"
165
+ msgstr "Novas secções \"Obter código\" individuais"
166
+
167
+ #: custom-post-type-ui.php:413
168
+ msgid ""
169
+ "The \"Get Code\" area now has support for copy/paste of individual post "
170
+ "types and taxonomies."
171
+ msgstr ""
172
+ "Agora a área \"Obter código\" suporta copiar/colar individualmente tipos de "
173
+ "conteúdo e taxonomias."
174
+
175
+ #: custom-post-type-ui.php:416
176
+ msgid "Template hierarchy reference"
177
+ msgstr "Referência da hierarquia dos modelos"
178
+
179
+ #: custom-post-type-ui.php:417
180
+ msgid ""
181
+ "To help aid your development with post types and taxonomies, we have added a "
182
+ "quick reference list of common template files you can use in your theme. "
183
+ "They will be listed on the \"Registered Types/Taxes\" screen."
184
+ msgstr ""
185
+ "Para o ajudar no desenvolvimento dos tipos de conteúdo e taxonomias, "
186
+ "adicionámos uma lista de referência rápida com os ficheiros de modelo mais "
187
+ "comuns que pode utilizar no seu tema. Estes serão listados no ecrã \"Tipos/"
188
+ "taxonomias registados\"."
189
+
190
+ #: custom-post-type-ui.php:422
191
+ msgid "Help Support This Plugin!"
192
+ msgstr "Ajude a apoiar este plugin!"
193
+
194
+ #: custom-post-type-ui.php:426
195
+ msgid "Professional WordPress<br />Third Edition"
196
+ msgstr "Professional WordPress<br />Terceira edição"
197
+
198
+ #: custom-post-type-ui.php:428
199
+ msgid "Professional WordPress Design and Development book cover."
200
+ msgstr "Capa do livro Professional WordPress Design and Development."
201
+
202
+ #: custom-post-type-ui.php:431
203
+ msgid ""
204
+ "The leading book on WordPress design and development! Brand new third "
205
+ "edition!"
206
+ msgstr ""
207
+ "O principal livro sobre design e desenvolvimento em WordPress! Nova edição!"
208
+
209
+ #: custom-post-type-ui.php:434
210
+ msgid "Professional WordPress<br />Plugin Development"
211
+ msgstr "Professional WordPress<br />Plugin Development"
212
+
213
+ #: custom-post-type-ui.php:436
214
+ msgid "Professional WordPress Pluing Development book cover."
215
+ msgstr "Capa do livro Professional WordPress Pluing Development"
216
+
217
+ #: custom-post-type-ui.php:439
218
+ msgid "Highest rated WordPress development book on Amazon!"
219
+ msgstr "Livro de desenvolvimento WordPress mais votado na Amazon!"
220
+
221
+ #: custom-post-type-ui.php:442
222
+ msgid "PayPal Donation"
223
+ msgstr "Donativo PayPal"
224
+
225
+ #: custom-post-type-ui.php:446
226
+ msgid "PayPal - The safer, easier way to pay online!"
227
+ msgstr "Paypal - o modo mais fácil e seguro de fazer pagamentos online!"
228
+
229
+ #: custom-post-type-ui.php:449
230
+ msgid "Please donate to the development of Custom Post Type UI:"
231
+ msgstr ""
232
+ "Por favor faça um donativo para o desenvolvimento do Custom Port Type UI:"
233
+
234
+ #: custom-post-type-ui.php:475
235
+ #, php-format
236
+ msgid "%s version %s by %s"
237
+ msgstr "%s versão %s por %s"
238
+
239
+ #: custom-post-type-ui.php:486
240
+ msgid "Please Report Bugs"
241
+ msgstr "Por favor reporte erros"
242
+
243
+ #: custom-post-type-ui.php:489
244
+ msgid "Follow on Twitter:"
245
+ msgstr "Seguir no Twitter:"
246
+
247
+ #: custom-post-type-ui.php:553
248
+ msgid "Manage Taxonomies"
249
+ msgstr "Gerir taxonomias"
250
+
251
+ #: custom-post-type-ui.php:557
252
+ msgid "Manage Post Types"
253
+ msgstr "Gerir tipos de conteúdo"
254
+
255
+ #: custom-post-type-ui.php:585
256
+ msgid "Add New Post Type"
257
+ msgstr "Adicionar novo tipo de conteúdo"
258
+
259
+ #: custom-post-type-ui.php:588
260
+ msgid "Edit Post Types"
261
+ msgstr "Editar tipos de conteúdo"
262
+
263
+ #: custom-post-type-ui.php:592
264
+ msgid "Add New Taxonomy"
265
+ msgstr "Adicionar nova taxonomia"
266
+
267
+ #: custom-post-type-ui.php:595
268
+ msgid "Edit Taxonomies"
269
+ msgstr "Editar taxonomias"
270
+
271
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
272
+ msgid "Post Types"
273
+ msgstr "Tipos de conteúdo"
274
+
275
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
276
+ #: inc/listings.php:161
277
+ msgid "Taxonomies"
278
+ msgstr "Taxonomias"
279
+
280
+ #: custom-post-type-ui.php:601
281
+ msgid "Get Code"
282
+ msgstr "Obter código"
283
+
284
+ #: custom-post-type-ui.php:602
285
+ msgid "Debug Info"
286
+ msgstr "Informação de depuração"
287
+
288
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
289
+ #: inc/post-types.php:420 inc/taxonomies.php:402
290
+ msgid "Settings"
291
+ msgstr "Definições"
292
+
293
+ #: custom-post-type-ui.php:685
294
+ msgid "Help"
295
+ msgstr "Ajuda"
296
+
297
+ #: custom-post-type-ui.php:714
298
+ #, php-format
299
+ msgid "%s has been successfully added"
300
+ msgstr "%s foi adicionado com sucesso"
301
+
302
+ #: custom-post-type-ui.php:716
303
+ #, php-format
304
+ msgid "%s has failed to be added"
305
+ msgstr "Falha ao adicionar %s"
306
+
307
+ #: custom-post-type-ui.php:720
308
+ #, php-format
309
+ msgid "%s has been successfully updated"
310
+ msgstr "%s foi actualizado com sucesso"
311
+
312
+ #: custom-post-type-ui.php:722
313
+ #, php-format
314
+ msgid "%s has failed to be updated"
315
+ msgstr "Falha ao actualizar %s"
316
+
317
+ #: custom-post-type-ui.php:726
318
+ #, php-format
319
+ msgid "%s has been successfully deleted"
320
+ msgstr "%s foi eliminado com sucesso"
321
+
322
+ #: custom-post-type-ui.php:728
323
+ #, php-format
324
+ msgid "%s has failed to be deleted"
325
+ msgstr "Falha ao eliminar %s"
326
+
327
+ #: custom-post-type-ui.php:732
328
+ #, php-format
329
+ msgid "%s has been successfully imported"
330
+ msgstr "%s foi importado com sucesso"
331
+
332
+ #: custom-post-type-ui.php:734
333
+ #, php-format
334
+ msgid "%s has failed to be imported"
335
+ msgstr "Falha ao importar %s"
336
+
337
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
338
+ #, php-format
339
+ msgid "Add new %s"
340
+ msgstr "Adicionar novo %s"
341
+
342
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
343
+ #: inc/listings.php:220
344
+ #, php-format
345
+ msgid "Edit %s"
346
+ msgstr "Editar %s"
347
+
348
+ #: custom-post-type-ui.php:819
349
+ #, php-format
350
+ msgid "New %s"
351
+ msgstr "Novo %s"
352
+
353
+ #: custom-post-type-ui.php:820
354
+ #, php-format
355
+ msgid "View %s"
356
+ msgstr "Ver %s"
357
+
358
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
359
+ #, php-format
360
+ msgid "All %s"
361
+ msgstr "Todos(as) os(as) %s"
362
+
363
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
364
+ #, php-format
365
+ msgid "Search %s"
366
+ msgstr "Pesquisar %s"
367
+
368
+ #: custom-post-type-ui.php:823
369
+ #, php-format
370
+ msgid "No %s found."
371
+ msgstr "Nenhum(a) %s encontrados(as)."
372
+
373
+ #: custom-post-type-ui.php:824
374
+ #, php-format
375
+ msgid "No %s found in trash."
376
+ msgstr "Nenhum(a) %s encontrado(a) no lixo."
377
+
378
+ #: custom-post-type-ui.php:828
379
+ #, php-format
380
+ msgid "Popular %s"
381
+ msgstr "%s mais populares"
382
+
383
+ #: custom-post-type-ui.php:830
384
+ #, php-format
385
+ msgid "Parent %s"
386
+ msgstr "%s superior"
387
+
388
+ #: custom-post-type-ui.php:831
389
+ #, php-format
390
+ msgid "Parent %s:"
391
+ msgstr "%s superior:"
392
+
393
+ #: custom-post-type-ui.php:833
394
+ #, php-format
395
+ msgid "Update %s"
396
+ msgstr "Actualizar %s"
397
+
398
+ #: custom-post-type-ui.php:835
399
+ #, php-format
400
+ msgid "New %s name"
401
+ msgstr "Novo nome de %s"
402
+
403
+ #: custom-post-type-ui.php:836
404
+ #, php-format
405
+ msgid "Separate %s with commas"
406
+ msgstr "Separar %s por vírgulas"
407
+
408
+ #: custom-post-type-ui.php:837
409
+ #, php-format
410
+ msgid "Add or remove %s"
411
+ msgstr "Adicionar ou remover %s"
412
+
413
+ #: custom-post-type-ui.php:838
414
+ #, php-format
415
+ msgid "Choose from the most used %s"
416
+ msgstr "Escolher entre os(as) %s mais utilizados(as)"
417
+
418
+ #: inc/import_export.php:77
419
+ msgid "No taxonomies to display at this time"
420
+ msgstr "Nenhuma taxonomia para mostrar neste momento"
421
+
422
+ #: inc/import_export.php:184
423
+ msgid "No post types to display at this time"
424
+ msgstr "Nenhum tipo de conteúdo para mostrar neste momento"
425
+
426
+ #: inc/import_export.php:372
427
+ msgid "Post types"
428
+ msgstr "Tipos de conteúdo"
429
+
430
+ #: inc/import_export.php:404
431
+ msgid ""
432
+ "If you are wanting to migrate registered post types or taxonomies from this "
433
+ "site to another, that will also use Custom Post Type UI, use the import and "
434
+ "export functionality. If you are moving away from Custom Post Type UI, use "
435
+ "the information in the \"Get Code\" tab."
436
+ msgstr ""
437
+ "Se pretende migrar tipos de conteúdo ou taxonomias registados para outro "
438
+ "site que também tem o Custom Post Type UI, utilize as funcionalidades de "
439
+ "importar e exportar. Se está a abandonar o Custom Post Type UI, utilize a "
440
+ "informação do separador \"Obter código\"."
441
+
442
+ #: inc/import_export.php:407
443
+ msgid "NOTE"
444
+ msgstr "NOTA"
445
+
446
+ #: inc/import_export.php:408
447
+ msgid ""
448
+ "This will not export the associated posts or taxonomy terms, just the "
449
+ "settings."
450
+ msgstr ""
451
+ "Isto não exportará os conteúdos ou termos de taxonomia associados, apenas as "
452
+ "definições."
453
+
454
+ #: inc/import_export.php:415
455
+ msgid "Import Post Types"
456
+ msgstr "Importar tipos de conteúdo"
457
+
458
+ #: inc/import_export.php:419 inc/import_export.php:459
459
+ msgid "Paste content here."
460
+ msgstr "Colar o conteúdo aqui."
461
+
462
+ #: inc/import_export.php:422 inc/import_export.php:462
463
+ msgid "Note:"
464
+ msgstr "Nota:"
465
+
466
+ #: inc/import_export.php:422 inc/import_export.php:462
467
+ msgid "Importing will overwrite previous registered settings."
468
+ msgstr "Ao importar irá sobrepor as definições registadas anteriormente."
469
+
470
+ #: inc/import_export.php:426
471
+ msgid ""
472
+ "To import post types from a different WordPress site, paste the exported "
473
+ "content from that site and click the \"Import\" button."
474
+ msgstr ""
475
+ "Para importar tipos de conteúdo de outro site WordPress, cole os dados "
476
+ "exportados desse site e clique no botão \"Importar\"."
477
+
478
+ #: inc/import_export.php:430 inc/import_export.php:470
479
+ msgid "Import"
480
+ msgstr "Importar"
481
+
482
+ #: inc/import_export.php:435
483
+ msgid "Export Post Types"
484
+ msgstr "Exportar tipos de conteúdo"
485
+
486
+ #: inc/import_export.php:442
487
+ msgid "No post types registered yet."
488
+ msgstr "Nenhum tipo de conteúdo registado."
489
+
490
+ #: inc/import_export.php:445 inc/import_export.php:485
491
+ msgid ""
492
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
493
+ "(Mac)."
494
+ msgstr ""
495
+ "Para copiar a informação do sistema, clique abaixo e prima Ctrl + C (PC) ou "
496
+ "Cmd + C (Mac)."
497
+
498
+ #: inc/import_export.php:448
499
+ msgid ""
500
+ "Use the content above to import current post types into a different "
501
+ "WordPress site. You can also use this to simply back up your post type "
502
+ "settings."
503
+ msgstr ""
504
+ "Utilize o conteúdo acima para importar os actuais tipos de conteúdo "
505
+ "personalizados para outro site WordPress. Também pode utilizar isto "
506
+ "simplesmente para fazer uma cópia de segurança das definições dos seus tipos "
507
+ "de conteúdo."
508
+
509
+ #: inc/import_export.php:455
510
+ msgid "Import Taxonomies"
511
+ msgstr "Importar taxonomias"
512
+
513
+ #: inc/import_export.php:466
514
+ msgid ""
515
+ "To import taxonomies from a different WordPress site, paste the exported "
516
+ "content from that site and click the \"Import\" button."
517
+ msgstr ""
518
+ "Para importar taxonomias de outro site WordPress, cole o conteúdo exportado "
519
+ "desse site e clique no botão \"Importar\"."
520
+
521
+ #: inc/import_export.php:475
522
+ msgid "Export Taxonomies"
523
+ msgstr "Exportar taxonomias"
524
+
525
+ #: inc/import_export.php:482
526
+ msgid "No taxonomies registered yet."
527
+ msgstr "Nenhuma taxonomia registada ainda."
528
+
529
+ #: inc/import_export.php:488
530
+ msgid ""
531
+ "Use the content above to import current taxonomies into a different "
532
+ "WordPress site. You can also use this to simply back up your taxonomy "
533
+ "settings."
534
+ msgstr ""
535
+ "Utilize o conteúdo acima para importar as actuais taxonomias para outro site "
536
+ "WordPress. Também pode utilizar isto simplesmente para fazer uma cópia de "
537
+ "segurança das definições das suas taxonomias."
538
+
539
+ #: inc/import_export.php:499
540
+ msgid "Get Post Type and Taxonomy Code"
541
+ msgstr "Obter código do tipo de conteúdo e da taxonomia"
542
+
543
+ #: inc/import_export.php:501
544
+ msgid "All CPT UI Post Types"
545
+ msgstr "Todos os tipos de conteúdo do CPT UI"
546
+
547
+ #: inc/import_export.php:504 inc/import_export.php:513
548
+ #: inc/import_export.php:521 inc/import_export.php:530
549
+ msgid "Copy/paste the code below into your functions.php file."
550
+ msgstr "Copie/cole o código abaixo no seu ficheiro functions.php."
551
+
552
+ #: inc/import_export.php:512
553
+ #, php-format
554
+ msgid "%s Post Type"
555
+ msgstr "Conteúdo do tipo %s"
556
+
557
+ #: inc/import_export.php:518
558
+ msgid "All CPT UI Taxonomies"
559
+ msgstr "Todas as taxonomias do CPT UI"
560
+
561
+ #: inc/import_export.php:529
562
+ #, php-format
563
+ msgid "%s Taxonomy"
564
+ msgstr "Taxonomia %s"
565
+
566
+ #: inc/import_export.php:549
567
+ msgid "Please provide an email address to send debug information to: "
568
+ msgstr ""
569
+ "Por favor forneça um endereço de email para onde enviar a informação de "
570
+ "depuração: "
571
+
572
+ #: inc/import_export.php:551
573
+ msgid "Send debug info"
574
+ msgstr "Enviar informação de depuração"
575
+
576
+ #: inc/listings.php:10
577
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
578
+ msgstr "Tipos de conteúdo e taxonomias registadas pelo Custom Post Type UI."
579
+
580
+ #: inc/listings.php:16 inc/listings.php:164
581
+ #, php-format
582
+ msgid "Total count: %d"
583
+ msgstr "Contagem total: %d"
584
+
585
+ #: inc/listings.php:21
586
+ msgid "Post Type"
587
+ msgstr "Tipo de conteúdo"
588
+
589
+ #: inc/listings.php:23 inc/post-types.php:754
590
+ msgid "Supports"
591
+ msgstr "Suporte"
592
+
593
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
594
+ #: inc/taxonomies.php:260
595
+ msgid "Labels"
596
+ msgstr "Legendas"
597
+
598
+ #: inc/listings.php:26 inc/listings.php:173
599
+ msgid "Template Hierarchy"
600
+ msgstr "Hierarquia dos modelos"
601
+
602
+ #: inc/listings.php:81
603
+ msgid "View frontend archive"
604
+ msgstr "Ver arquivo na frente do site"
605
+
606
+ #: inc/listings.php:114 inc/listings.php:249
607
+ msgid "No custom labels to display"
608
+ msgstr "Nenhuma legenda personalizada para mostrar"
609
+
610
+ #: inc/listings.php:119
611
+ msgid "Archives file name examples."
612
+ msgstr "Exemplos de nomes de ficheiros para arquivos."
613
+
614
+ #: inc/listings.php:125
615
+ msgid "Single Posts file name examples."
616
+ msgstr "Exemplos de nomes de ficheiros para artigos únicos."
617
+
618
+ #: inc/listings.php:134 inc/listings.php:267
619
+ msgid "Template hierarchy Theme Handbook"
620
+ msgstr "Hierarquia dos modelos do Manual dos temas"
621
+
622
+ #: inc/listings.php:152
623
+ #, php-format
624
+ msgid "No post types registered for display. Visit %s to get started."
625
+ msgstr ""
626
+ "Nenhum tipo de conteúdo registado para mostrar. Visite %s para começar."
627
+
628
+ #: inc/listings.php:169
629
+ msgid "Taxonomy"
630
+ msgstr "Taxionomia"
631
+
632
+ #: inc/listings.php:254
633
+ msgid "Archives"
634
+ msgstr "Arquivo"
635
+
636
+ #: inc/listings.php:263
637
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
638
+ msgstr "*Substituir \"term_slug\" pela slug do presente termo de taxonomia."
639
+
640
+ #: inc/listings.php:284
641
+ #, php-format
642
+ msgid "No taxonomies registered for display. Visit %s to get started."
643
+ msgstr "Nenhuma taxonomia registada para mostrar. Visite %s para começar."
644
+
645
+ #: inc/post-types.php:34 inc/taxonomies.php:29
646
+ msgid "Are you sure you want to delete this?"
647
+ msgstr "Tem a certeza que quer eliminar isto?"
648
+
649
+ #: inc/post-types.php:93
650
+ msgid ""
651
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
652
+ "registers a new post type entry for your install."
653
+ msgstr ""
654
+ "NÃO EDITE a slug do tipo de conteúdo a não ser que estritamente necessário. "
655
+ "Alterar este valor regista um novo tipo de conteúdo na sua instalação."
656
+
657
+ #: inc/post-types.php:94
658
+ msgid ""
659
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
660
+ "slugs and update post types for existing posts."
661
+ msgstr ""
662
+ "Utilize a caixa de selecção apropriada acima dos botões guardar/eliminar se "
663
+ "quiser alterar slugs e actualizar os tipos de conteúdo existentes."
664
+
665
+ #: inc/post-types.php:95 inc/taxonomies.php:90
666
+ msgid "Select: "
667
+ msgstr "Seleccionar: "
668
+
669
+ #: inc/post-types.php:107 inc/taxonomies.php:102
670
+ msgid "Select"
671
+ msgstr "Seleccionar"
672
+
673
+ #: inc/post-types.php:137
674
+ msgid "Post Type Slug"
675
+ msgstr "Slug do tipo de conteúdo"
676
+
677
+ #: inc/post-types.php:138
678
+ msgid "(e.g. movie)"
679
+ msgstr "(p. ex. filme)"
680
+
681
+ #: inc/post-types.php:139
682
+ msgid ""
683
+ "The post type name. Used to retrieve custom post type content. Should be "
684
+ "short and unique"
685
+ msgstr ""
686
+ "O nome do tipo de conteúdo. Utilizado para obter tipo de conteúdo "
687
+ "personalizado. Deverá ser curto e único."
688
+
689
+ #: inc/post-types.php:150 inc/taxonomies.php:140
690
+ msgid "Plural Label"
691
+ msgstr "Legenda no plural"
692
+
693
+ #: inc/post-types.php:151
694
+ msgid "(e.g. Movies)"
695
+ msgstr "(p. ex. Filmes)"
696
+
697
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
698
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
699
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
700
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
701
+ #: inc/post-types.php:411
702
+ msgid "Post type label. Used in the admin menu for displaying post types."
703
+ msgstr ""
704
+ "Legenda do tipo de conteúdo. Utilizada no menu de administração para mostrar "
705
+ "tipos de conteúdo."
706
+
707
+ #: inc/post-types.php:162 inc/taxonomies.php:149
708
+ msgid "Singular Label"
709
+ msgstr "Legenda no singular"
710
+
711
+ #: inc/post-types.php:163
712
+ msgid "(e.g. Movie)"
713
+ msgstr "(p. ex. Filme)"
714
+
715
+ #: inc/post-types.php:164
716
+ msgid ""
717
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
718
+ "needed."
719
+ msgstr ""
720
+ "Legenda no singular do tipo de conteúdo personalizado. Utilizada no "
721
+ "WordPress quando é necessária uma legenda no singular."
722
+
723
+ #: inc/post-types.php:180 inc/taxonomies.php:166
724
+ msgid "Description"
725
+ msgstr "Descrição"
726
+
727
+ #: inc/post-types.php:181
728
+ msgid ""
729
+ "Custom Post Type Description. Describe what your custom post type is used "
730
+ "for."
731
+ msgstr ""
732
+ "Descrição do tipo de conteúdo personalizado. Descreva para que serve o seu "
733
+ "tipo de conteúdo personalizado."
734
+
735
+ #: inc/post-types.php:193
736
+ msgid "Migrate posts to newly renamed post type?"
737
+ msgstr "Migrar conteúdos para o recém renomeado tipo de conteúdo?"
738
+
739
+ #: inc/post-types.php:194
740
+ msgid "Check this to migrate posts if and when renaming your post type."
741
+ msgstr ""
742
+ "Seleccione isto para migrar conteúdos ao renomear o seu tipo de conteúdo."
743
+
744
+ #: inc/post-types.php:213
745
+ msgid "Save Post Type"
746
+ msgstr "Guardar tipo de conteúdo"
747
+
748
+ #: inc/post-types.php:224
749
+ msgid "Delete Post Type"
750
+ msgstr "Eliminar tipo de conteúdo"
751
+
752
+ #: inc/post-types.php:236
753
+ msgid "Add Post Type"
754
+ msgstr "Adicionar tipo de conteúdo"
755
+
756
+ #: inc/post-types.php:247 inc/taxonomies.php:249
757
+ msgid "Starter Notes"
758
+ msgstr "Notas para principiantes"
759
+
760
+ #: inc/post-types.php:250
761
+ #, php-format
762
+ msgid ""
763
+ "Post Type names should have %smax 20 characters%s, and only contain "
764
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
765
+ "letters that do not have accents. Reserved names: post, page, attachment, "
766
+ "revision, nav_menu_item."
767
+ msgstr ""
768
+ "Os nomes dos tipos de conteúdo deverão ter %sno máximo 20 caracteres%s, "
769
+ "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
770
+ "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
771
+
772
+ #: inc/post-types.php:251
773
+ #, php-format
774
+ msgid ""
775
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
776
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
777
+ "values. Labels, if left blank, will be automatically created based on the "
778
+ "post type name. Hover over the question mark for more details."
779
+ msgstr ""
780
+ "Se não estiver familiarizado com as definições avançadas dos tipos de "
781
+ "conteúdo, preencha apenas os campos %sNome do tipo de conteúdo%s e %sLegenda"
782
+ "%s. Para as restantes definições serão atribuídos os valores por omissão. Se "
783
+ "deixadas em branco, as legendas serão automaticamente criadas com base no "
784
+ "nome do tipo de conteúdo. Ver o ponto de interrogação para mais detalhes."
785
+
786
+ #: inc/post-types.php:252
787
+ #, php-format
788
+ msgid ""
789
+ "Deleting custom post types will %sNOT%s delete any content into the database "
790
+ "or added to those post types. You can easily recreate your post types and "
791
+ "the content will still exist."
792
+ msgstr ""
793
+ "Eliminar tipos de conteúdo personalizados %sNÃO%s eliminará quaisquer "
794
+ "conteúdos da base de dados ou adicionados a esses tipos de conteúdo. Pode "
795
+ "facilmente recriar os seus tipos de conteúdo, e o seus conteúdos continuarão "
796
+ "a existir."
797
+
798
+ #: inc/post-types.php:266 inc/taxonomies.php:270
799
+ msgid "Menu Name"
800
+ msgstr "Nome do menu"
801
+
802
+ #: inc/post-types.php:267
803
+ msgid "Custom menu name for your custom post type."
804
+ msgstr "Nome de menu personalizado para o seu tipo de conteúdo personalizado."
805
+
806
+ #: inc/post-types.php:271
807
+ msgid "(e.g. My Movies)"
808
+ msgstr "(p. ex. Os meus filmes)"
809
+
810
+ #: inc/post-types.php:278 inc/taxonomies.php:279
811
+ msgid "All Items"
812
+ msgstr "Todos os itens"
813
+
814
+ #: inc/post-types.php:283
815
+ msgid "(e.g. All Movies)"
816
+ msgstr "(p. ex. Todos os filmes)"
817
+
818
+ #: inc/post-types.php:290
819
+ msgid "Add New"
820
+ msgstr "Adicionar novo"
821
+
822
+ #: inc/post-types.php:295
823
+ msgid "(e.g. Add New)"
824
+ msgstr "(p. ex. Adicionar novo)"
825
+
826
+ #: inc/post-types.php:302 inc/taxonomies.php:315
827
+ msgid "Add New Item"
828
+ msgstr "Adicionar novo item"
829
+
830
+ #: inc/post-types.php:307
831
+ msgid "(e.g. Add New Movie)"
832
+ msgstr "(p. ex. Adicionar novo filme)"
833
+
834
+ #: inc/post-types.php:314
835
+ msgid "Edit"
836
+ msgstr "Editar"
837
+
838
+ #: inc/post-types.php:319
839
+ msgid "(e.g. Edit)"
840
+ msgstr "(p. ex. Editar)"
841
+
842
+ #: inc/post-types.php:326 inc/taxonomies.php:288
843
+ msgid "Edit Item"
844
+ msgstr "Editar item"
845
+
846
+ #: inc/post-types.php:331
847
+ msgid "(e.g. Edit Movie)"
848
+ msgstr "(p. ex. Editar filme)"
849
+
850
+ #: inc/post-types.php:338
851
+ msgid "New Item"
852
+ msgstr "Novo item"
853
+
854
+ #: inc/post-types.php:343
855
+ msgid "(e.g. New Movie)"
856
+ msgstr "(p. ex. Novo filme)"
857
+
858
+ #: inc/post-types.php:350
859
+ msgid "View"
860
+ msgstr "Ver"
861
+
862
+ #: inc/post-types.php:355
863
+ msgid "(e.g. View)"
864
+ msgstr "(p. ex. Ver)"
865
+
866
+ #: inc/post-types.php:362 inc/taxonomies.php:297
867
+ msgid "View Item"
868
+ msgstr "Ver item"
869
+
870
+ #: inc/post-types.php:367
871
+ msgid "(e.g. View Movie)"
872
+ msgstr "(p. ex. Ver filme)"
873
+
874
+ #: inc/post-types.php:374
875
+ msgid "Search Item"
876
+ msgstr "Pesquisar item"
877
+
878
+ #: inc/post-types.php:379
879
+ msgid "(e.g. Search Movie)"
880
+ msgstr "(p. ex. Pesquisar filme)"
881
+
882
+ #: inc/post-types.php:386
883
+ msgid "Not Found"
884
+ msgstr "Não encontrado"
885
+
886
+ #: inc/post-types.php:391
887
+ msgid "(e.g. No Movies found)"
888
+ msgstr "(p. ex. Nenhum filme encontrado)"
889
+
890
+ #: inc/post-types.php:398
891
+ msgid "Not Found in Trash"
892
+ msgstr "Não encontrado no lixo"
893
+
894
+ #: inc/post-types.php:403
895
+ msgid "(e.g. No Movies found in Trash)"
896
+ msgstr "(p. ex. Nenhum fime encontrado no lixo)"
897
+
898
+ #: inc/post-types.php:410
899
+ msgid "Parent"
900
+ msgstr "Superior"
901
+
902
+ #: inc/post-types.php:415
903
+ msgid "(e.g. Parent Movie)"
904
+ msgstr "(p. ex. Filme superior)"
905
+
906
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
907
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
908
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
909
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
910
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
911
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
912
+ #: inc/taxonomies.php:548
913
+ msgid "False"
914
+ msgstr "Falso"
915
+
916
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
917
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
918
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
919
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
920
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
921
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
922
+ #: inc/taxonomies.php:549
923
+ msgid "True"
924
+ msgstr "Verdadeiro"
925
+
926
+ #: inc/post-types.php:438
927
+ msgid "Public"
928
+ msgstr "Público"
929
+
930
+ #: inc/post-types.php:439
931
+ msgid "(CPTUI default: True.)"
932
+ msgstr "(por omissão no CPTUI: Verdadeiro.)"
933
+
934
+ #: inc/post-types.php:440
935
+ msgid ""
936
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
937
+ "Whether posts of this type should be shown in the admin UI and is publicly "
938
+ "queryable."
939
+ msgstr ""
940
+ "Por omissão é falso no core do WordPress. O CPTUI torna verdadeiro por "
941
+ "omissão para benefício do utilizador. Se os conteúdos deste tipo deverão ser "
942
+ "mostrados no interface do utilizador da administração e pesquisáveis "
943
+ "publicamente."
944
+
945
+ #: inc/post-types.php:458 inc/taxonomies.php:434
946
+ msgid "Show UI"
947
+ msgstr "Mostrar interface do utilizador"
948
+
949
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
950
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
951
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
952
+ msgid "(default: True)"
953
+ msgstr "(por omissão: Verdadeiro)"
954
+
955
+ #: inc/post-types.php:460
956
+ msgid "Whether to generate a default UI for managing this post type."
957
+ msgstr "Se cria um interface de utilizador para gerir este tipo de conteúdo."
958
+
959
+ #: inc/post-types.php:478
960
+ msgid "Show in Nav Menus"
961
+ msgstr "Mostrar nos menus de navegação"
962
+
963
+ #: inc/post-types.php:479
964
+ msgid "(CPTUI default: true)"
965
+ msgstr "(por omissão no CPTUI: Verdadeiro.)"
966
+
967
+ #: inc/post-types.php:480
968
+ msgid "Whether post type is available for selection in navigation menus."
969
+ msgstr ""
970
+ "Se o tipo de conteúdo está disponível para selecção nos menus de navegação."
971
+
972
+ #: inc/post-types.php:498 inc/taxonomies.php:557
973
+ msgid "Show in REST API"
974
+ msgstr "Mostrar na REST API"
975
+
976
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
977
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
978
+ #: inc/taxonomies.php:558
979
+ msgid "(default: False)"
980
+ msgstr "(por omissão: Falso)"
981
+
982
+ #: inc/post-types.php:500
983
+ msgid "Whether to show this post type data in the WP REST API."
984
+ msgstr "Se mostra os dados deste tipo de conteúdo na WP REST API."
985
+
986
+ #: inc/post-types.php:508 inc/taxonomies.php:567
987
+ msgid "REST API base slug"
988
+ msgstr "Slug base da REST API"
989
+
990
+ #: inc/post-types.php:509 inc/taxonomies.php:568
991
+ msgid "Slug to use in REST API URLs."
992
+ msgstr "Slug a utilizar no URL da REST API."
993
+
994
+ #: inc/post-types.php:519
995
+ msgid "Has Archive"
996
+ msgstr "Tem arquivo"
997
+
998
+ #: inc/post-types.php:520
999
+ msgid "Whether the post type will have a post type archive URL."
1000
+ msgstr ""
1001
+ "Se o tipo de conteúdo terá um URL para o arquivo deste tipo de conteúdo."
1002
+
1003
+ #: inc/post-types.php:521
1004
+ msgid "If left blank, the archive slug will default to the post type slug."
1005
+ msgstr ""
1006
+ "Se deixar em branco, a slug do arquivo será a mesma que a slug do tipo de "
1007
+ "conteúdo."
1008
+
1009
+ #: inc/post-types.php:547
1010
+ msgid "Slug to be used for archive URL."
1011
+ msgstr "Slug utilizada no URL da página de arquivo."
1012
+
1013
+ #: inc/post-types.php:567
1014
+ msgid "Exclude From Search"
1015
+ msgstr "Excluir da pesquisa"
1016
+
1017
+ #: inc/post-types.php:569
1018
+ msgid ""
1019
+ "Whether to exclude posts with this post type from front end search results."
1020
+ msgstr ""
1021
+ "Se exclui conteúdos deste tipo dos resultados de pesquisa na frente do site."
1022
+
1023
+ #: inc/post-types.php:580
1024
+ msgid "Capability Type"
1025
+ msgstr "Tipo de capacidade"
1026
+
1027
+ #: inc/post-types.php:581
1028
+ msgid "The post type to use for checking read, edit, and delete capabilities"
1029
+ msgstr ""
1030
+ "O tipo de conteúdo a utilizar para verificar as capacidades de leitura, "
1031
+ "edição e eliminação"
1032
+
1033
+ #: inc/post-types.php:598 inc/taxonomies.php:417
1034
+ msgid "Hierarchical"
1035
+ msgstr "Hierárquico"
1036
+
1037
+ #: inc/post-types.php:600
1038
+ msgid "Whether the post type can have parent-child relationships"
1039
+ msgstr "Se o tipo de conteúdo pode ter relações de superior/dependente"
1040
+
1041
+ #: inc/post-types.php:618 inc/taxonomies.php:477
1042
+ msgid "Rewrite"
1043
+ msgstr "Reescrever URL"
1044
+
1045
+ #: inc/post-types.php:620
1046
+ msgid "Whether or not WordPress should use rewrites for this post type"
1047
+ msgstr ""
1048
+ "Se o WordPress deverá usar ou não a reescrita para este tipo de conteúdo"
1049
+
1050
+ #: inc/post-types.php:631 inc/taxonomies.php:488
1051
+ msgid "Custom Rewrite Slug"
1052
+ msgstr "Slug personalizada"
1053
+
1054
+ #: inc/post-types.php:632
1055
+ msgid "(default: post type slug)"
1056
+ msgstr "(por omissão: slug do tipo de conteúdo)"
1057
+
1058
+ #: inc/post-types.php:633
1059
+ msgid "Custom post type slug to use instead of the default."
1060
+ msgstr ""
1061
+ "Slug a utilizar para o tipo de conteúdo personalizado, em vez do valor por "
1062
+ "omissão."
1063
+
1064
+ #: inc/post-types.php:650
1065
+ msgid "With Front"
1066
+ msgstr "Com base"
1067
+
1068
+ #: inc/post-types.php:652 inc/taxonomies.php:505
1069
+ msgid "Should the permastruct be prepended with the front base."
1070
+ msgstr "Preceder as ligações permanentes com slug base."
1071
+
1072
+ #: inc/post-types.php:670 inc/taxonomies.php:451
1073
+ msgid "Query Var"
1074
+ msgstr "Query Var"
1075
+
1076
+ #: inc/post-types.php:672
1077
+ msgid "Sets the query_var key for this post type."
1078
+ msgstr "Define a chave query_var para este tipo de conteúdo."
1079
+
1080
+ #: inc/post-types.php:683
1081
+ msgid "Custom Query Var Slug"
1082
+ msgstr "Slug personalizada da query var"
1083
+
1084
+ #: inc/post-types.php:684
1085
+ msgid "(default: post type slug) Query var needs to be true to use."
1086
+ msgstr ""
1087
+ "(por omissão: slug do tipo de conteúdo) Na opção query var tem que estar "
1088
+ "verdadeiro para ser utilizada."
1089
+
1090
+ #: inc/post-types.php:685
1091
+ msgid "Custom query var slug to use instead of the default."
1092
+ msgstr "Utilizar slug personalizada da query var em vez do valor por omissão."
1093
+
1094
+ #: inc/post-types.php:692
1095
+ msgid "Menu Position"
1096
+ msgstr "Posição do menu"
1097
+
1098
+ #: inc/post-types.php:693
1099
+ msgid ""
1100
+ "The position in the menu order the post type should appear. show_in_menu "
1101
+ "must be true."
1102
+ msgstr ""
1103
+ "A posição em que o tipo de conteúdo deverá aparecer no menu. \"Mostrar no "
1104
+ "menu\" tem que ser \"Verdadeiro\"."
1105
+
1106
+ #: inc/post-types.php:694
1107
+ msgid ""
1108
+ "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1109
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
1110
+ "the \"menu_position\" section. Range of 5-100"
1111
+ msgstr ""
1112
+ "Veja as <a href=\"http://codex.wordpress.org/Function_Reference/"
1113
+ "register_post_type#Parameters\" target=\"_blank\">opções disponíveis</a> na "
1114
+ "secção \"menu_position\". Ordem de 5-100"
1115
+
1116
+ #: inc/post-types.php:709
1117
+ msgid "Show in Menu"
1118
+ msgstr "Mostrar no menu"
1119
+
1120
+ #: inc/post-types.php:710
1121
+ msgid ""
1122
+ "Whether to show the post type in the admin menu and where to show that menu."
1123
+ msgstr ""
1124
+ "Se mostra o tipo de conteúdo no menu de administração e onde mostra esse "
1125
+ "menu."
1126
+
1127
+ #: inc/post-types.php:711
1128
+ msgid ""
1129
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1130
+ "php\" is indicated for second input, post type will be sub menu of that."
1131
+ msgstr ""
1132
+ "\"Mostrar interface do utilizador\" tem que ser \"Verdadeiro\". Se uma "
1133
+ "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
1134
+ "o tipo de conteúdo será seu submenu."
1135
+
1136
+ #: inc/post-types.php:737
1137
+ msgid "Top-level page file name to make post type a sub-menu of."
1138
+ msgstr ""
1139
+ "Nome da página de nível de topo para tornar o tipo de conteúdo seu submenu."
1140
+
1141
+ #: inc/post-types.php:749
1142
+ msgid "Menu Icon"
1143
+ msgstr "Ícone do menu"
1144
+
1145
+ #: inc/post-types.php:750
1146
+ msgid "(Full URL for icon or Dashicon class)"
1147
+ msgstr "(URL completo ou classe para o para o ícone do painel)"
1148
+
1149
+ #: inc/post-types.php:751
1150
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1151
+ msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
1152
+
1153
+ #: inc/post-types.php:764
1154
+ msgid "Title"
1155
+ msgstr "Título"
1156
+
1157
+ #: inc/post-types.php:765
1158
+ msgid "Adds the title meta box when creating content for this custom post type"
1159
+ msgstr ""
1160
+ "Adiciona a caixa de título ao criar conteúdos para este tipo de conteúdo "
1161
+ "personalizado"
1162
+
1163
+ #: inc/post-types.php:779
1164
+ msgid "Editor"
1165
+ msgstr "Editor"
1166
+
1167
+ #: inc/post-types.php:780
1168
+ msgid ""
1169
+ "Adds the content editor meta box when creating content for this custom post "
1170
+ "type"
1171
+ msgstr ""
1172
+ "Adiciona a caixa de editor ao criar conteúdos para este tipo de conteúdo "
1173
+ "personalizado"
1174
+
1175
+ #: inc/post-types.php:794
1176
+ msgid "Excerpt"
1177
+ msgstr "Excerto"
1178
+
1179
+ #: inc/post-types.php:795
1180
+ msgid ""
1181
+ "Adds the excerpt meta box when creating content for this custom post type"
1182
+ msgstr ""
1183
+ "Adiciona a caixa de excerto ao criar conteúdos para este tipo de conteúdo "
1184
+ "personalizado"
1185
+
1186
+ #: inc/post-types.php:809
1187
+ msgid "Trackbacks"
1188
+ msgstr "Trackbacks"
1189
+
1190
+ #: inc/post-types.php:810
1191
+ msgid ""
1192
+ "Adds the trackbacks meta box when creating content for this custom post type"
1193
+ msgstr ""
1194
+ "Adiciona a caixa de trackbacks ao criar conteúdos para este tipo de conteúdo "
1195
+ "personalizado"
1196
+
1197
+ #: inc/post-types.php:824
1198
+ msgid "Custom Fields"
1199
+ msgstr "Campos personalizados"
1200
+
1201
+ #: inc/post-types.php:825
1202
+ msgid ""
1203
+ "Adds the custom fields meta box when creating content for this custom post "
1204
+ "type"
1205
+ msgstr ""
1206
+ "Adiciona a caixa de campos personalizados ao criar conteúdos para este tipo "
1207
+ "de conteúdo personalizado"
1208
+
1209
+ #: inc/post-types.php:839
1210
+ msgid "Comments"
1211
+ msgstr "Comentários"
1212
+
1213
+ #: inc/post-types.php:840
1214
+ msgid ""
1215
+ "Adds the comments meta box when creating content for this custom post type"
1216
+ msgstr ""
1217
+ "Adiciona a caixa de comentários ao criar conteúdos para este tipo de "
1218
+ "conteúdo personalizado"
1219
+
1220
+ #: inc/post-types.php:854
1221
+ msgid "Revisions"
1222
+ msgstr "Revisões"
1223
+
1224
+ #: inc/post-types.php:855
1225
+ msgid ""
1226
+ "Adds the revisions meta box when creating content for this custom post type"
1227
+ msgstr ""
1228
+ "Adiciona a caixa de revisões ao criar conteúdos para este tipo de conteúdo "
1229
+ "personalizado"
1230
+
1231
+ #: inc/post-types.php:869
1232
+ msgid "Featured Image"
1233
+ msgstr "Imagem de destaque"
1234
+
1235
+ #: inc/post-types.php:870
1236
+ msgid ""
1237
+ "Adds the featured image meta box when creating content for this custom post "
1238
+ "type"
1239
+ msgstr ""
1240
+ "Adiciona a caixa de imagem de destaque ao criar conteúdos para este tipo de "
1241
+ "conteúdo personalizado"
1242
+
1243
+ #: inc/post-types.php:884
1244
+ msgid "Author"
1245
+ msgstr "Autor"
1246
+
1247
+ #: inc/post-types.php:885
1248
+ msgid ""
1249
+ "Adds the author meta box when creating content for this custom post type"
1250
+ msgstr ""
1251
+ "Adiciona a caixa de autor ao criar conteúdos para este tipo de conteúdo "
1252
+ "personalizado"
1253
+
1254
+ #: inc/post-types.php:899
1255
+ msgid "Page Attributes"
1256
+ msgstr "Atributos da página"
1257
+
1258
+ #: inc/post-types.php:900
1259
+ msgid ""
1260
+ "Adds the page attribute meta box when creating content for this custom post "
1261
+ "type"
1262
+ msgstr ""
1263
+ "Adiciona a caixa de atributos da página ao criar conteúdos para este tipo de "
1264
+ "conteúdo personalizado"
1265
+
1266
+ #: inc/post-types.php:914
1267
+ msgid "Post Formats"
1268
+ msgstr "Formatos de artigo"
1269
+
1270
+ #: inc/post-types.php:915
1271
+ msgid "Adds post format support"
1272
+ msgstr "Adiciona suporte para formato de artigo"
1273
+
1274
+ #: inc/post-types.php:920
1275
+ msgid "Use the option below to explicitly set \"supports\" to false."
1276
+ msgstr ""
1277
+ "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1278
+
1279
+ #: inc/post-types.php:928
1280
+ msgid "None"
1281
+ msgstr "Nenhum"
1282
+
1283
+ #: inc/post-types.php:929
1284
+ msgid "Remove all support features"
1285
+ msgstr "Remove suporte para todos os recursos"
1286
+
1287
+ #: inc/post-types.php:936
1288
+ msgid "Custom \"Supports\""
1289
+ msgstr "\"Suporte\" personalizado"
1290
+
1291
+ #: inc/post-types.php:937
1292
+ msgid ""
1293
+ "Use this input to register custom \"supports\" values, separated by commas."
1294
+ msgstr ""
1295
+ "Utilize este campo para registar \"suporte\" de valores personalizados, "
1296
+ "separados por vírgulas."
1297
+
1298
+ #: inc/post-types.php:943
1299
+ msgid "Provide custom support slugs here."
1300
+ msgstr "Insira aqui os valores personalizados a suportar."
1301
+
1302
+ #: inc/post-types.php:949
1303
+ msgid "Built-in Taxonomies"
1304
+ msgstr "Taxonomias incorporadas"
1305
+
1306
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1307
+ #, php-format
1308
+ msgid "Adds %s support"
1309
+ msgstr "Adiciona suporte para %s"
1310
+
1311
+ #: inc/post-types.php:1085
1312
+ msgid "Please provide a post type to delete"
1313
+ msgstr "Por favor introduza um tipo de conteúdo a eliminar"
1314
+
1315
+ #: inc/post-types.php:1145
1316
+ msgid "Please provide a post type name"
1317
+ msgstr "Por favor introduza um nome de tipo de conteúdo"
1318
+
1319
+ #: inc/post-types.php:1169
1320
+ msgid "Please do not use quotes in post type names or rewrite slugs"
1321
+ msgstr ""
1322
+ "Por favor não utilize aspas nos nomes dos tipos de conteúdo ou nas slugs"
1323
+
1324
+ #: inc/post-types.php:1176
1325
+ #, php-format
1326
+ msgid "Please choose a different post type name. %s is already registered."
1327
+ msgstr ""
1328
+ "Por favor escolha um nome de tipo de conteúdo diferente. %s já está "
1329
+ "registado."
1330
+
1331
+ #: inc/support.php:45
1332
+ msgid "Custom Post Type UI Support"
1333
+ msgstr "Suporte do Custom Post Type UI"
1334
+
1335
+ #: inc/support.php:47
1336
+ #, php-format
1337
+ msgid ""
1338
+ "Please note that this plugin will NOT handle display of registered post "
1339
+ "types or taxonomies in your current theme. It will simply register them for "
1340
+ "you. If all else fails, visit us on the %s"
1341
+ msgstr ""
1342
+ "Por favor note que este plugin NÃO controlará a apresentação de tipos de "
1343
+ "conteúdo ou taxonomias registadas no seu tema actual. Simplesmente fará por "
1344
+ "si o respectivo registo. Se tudo o resto falhar, visite-nos no %s"
1345
+
1346
+ #: inc/support.php:48
1347
+ msgid "Support Forums"
1348
+ msgstr "Fórum de suporte"
1349
+
1350
+ #: inc/support.php:54
1351
+ msgid "General"
1352
+ msgstr "Geral"
1353
+
1354
+ #: inc/support.php:57
1355
+ msgid ""
1356
+ "I have post types with spaces in their slug and can not successfully delete "
1357
+ "them. How can I fix that?"
1358
+ msgstr ""
1359
+ "Tenho tipos de conteúdo com espaços na slug e não os consigo eliminar. Como "
1360
+ "corrijo isto?"
1361
+
1362
+ #: inc/support.php:58
1363
+ msgid ""
1364
+ "Visit the Import/Export page and copy the export code into the import side "
1365
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1366
+ "You should be able to delete the individual post types afterwards."
1367
+ msgstr ""
1368
+ "Visite a página Importar/Exportar e copie o código exportado para a área de "
1369
+ "importação à esquerda. Substitua o espaço com um underscore e clique em "
1370
+ "\"Importar\". Posteriormente deverá conseguir eliminar tipos de conteúdo "
1371
+ "individualmente."
1372
+
1373
+ #: inc/support.php:62
1374
+ msgid ""
1375
+ "I changed my custom post type name and now I can not get to my posts. How do "
1376
+ "I get them back?"
1377
+ msgstr ""
1378
+ "Modifiquei o nome do meu tipo de conteúdo personalizado e agora não consigo "
1379
+ "encontrar os meus conteúdos. Como faço para os recuperar?"
1380
+
1381
+ #: inc/support.php:63
1382
+ msgid ""
1383
+ "You can either change the custom post type name back to the original name or "
1384
+ "try the Post Type Switcher plugin"
1385
+ msgstr ""
1386
+ "Poderá voltar a alterar para o original o nome do tipo de conteúdo "
1387
+ "personalizado ou experimentar o plugin Post Type Switcher"
1388
+
1389
+ #: inc/support.php:68
1390
+ msgid ""
1391
+ "I changed my custom post type or taxonomy slug and now I have duplicates "
1392
+ "shown. How do I remove the duplicate?"
1393
+ msgstr ""
1394
+ "Modifiquei a slug do meu tipo de conteúdo personalizado ou taxonomia e agora "
1395
+ "são mostrados em duplicado. Como removo os duplicados?"
1396
+
1397
+ #: inc/support.php:69
1398
+ msgid ""
1399
+ "Renaming the slug for a post type or taxonomy creates a new entry in our "
1400
+ "saved option which gets registered as its own post type or taxonomy. Since "
1401
+ "the settings will be mirrored from the previous slug, you will just need to "
1402
+ "delete the previous version's entry."
1403
+ msgstr ""
1404
+ "Renomear a slug de um tipo de conteúdo ou taxonomia cria uma nova entrada "
1405
+ "nas opções guardadas que será registada como um tipo de conteúdo ou "
1406
+ "taxonomia independente. Como as opções serão copiadas da slug anterior, "
1407
+ "apenas tem que eliminar a entrada com a versão anterior."
1408
+
1409
+ #: inc/support.php:72
1410
+ msgid ""
1411
+ "I have added post thumbnail and/or post format support to my post type, but "
1412
+ "those do not appear when adding a post type post."
1413
+ msgstr ""
1414
+ "Adicionei suporte para imagem de destaque e/ou formato de artigo ao meu tipo "
1415
+ "de conteúdo, mas estes não aparecem quando adiciono novos conteúdos."
1416
+
1417
+ #: inc/support.php:73
1418
+ msgid ""
1419
+ "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1420
+ msgstr ""
1421
+ "Verifique se o seu tema tem activado o suporte para \"Imagens de destaque\"."
1422
+
1423
+ #: inc/support.php:76
1424
+ msgid "Do you have any recommendations for an alternative to Visual Composer?"
1425
+ msgstr "Têm alguma recomendação para alternativas ao Visual Composer?"
1426
+
1427
+ #: inc/support.php:77
1428
+ msgid "We recommend using VelocityPage."
1429
+ msgstr "Recomendamos a utilização de VelocityPage."
1430
+
1431
+ #: inc/support.php:82
1432
+ msgid ""
1433
+ "Is there any way to get CPTUI-registered post types working with Visual "
1434
+ "Composer Media Grid?"
1435
+ msgstr ""
1436
+ "É possível tipos de conteúdo registados via CPTUI funcionarem com a Visual "
1437
+ "Composer Media Grid?"
1438
+
1439
+ #: inc/support.php:84
1440
+ msgid "Please see the solution from the following forum support thread."
1441
+ msgstr "Por favor veja a solução no seguinte tópico do fórum de suporte."
1442
+
1443
+ #: inc/support.php:91
1444
+ msgid "Front-end Display"
1445
+ msgstr "Frente do site"
1446
+
1447
+ #: inc/support.php:94
1448
+ msgid "What template files should I edit to alter my post type display?"
1449
+ msgstr ""
1450
+ "Que ficheiros de modelo deverei editar para alterar a apresentação do meu "
1451
+ "tipo de conteúdo?"
1452
+
1453
+ #: inc/support.php:95
1454
+ #, php-format
1455
+ msgid ""
1456
+ "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1457
+ "details about available templates."
1458
+ msgstr ""
1459
+ "Por favor visite a página %sHierarquia dos modelos%s do WordPress Codex para "
1460
+ "detalhes sobre os modelos disponíveis."
1461
+
1462
+ #: inc/support.php:102
1463
+ msgid "How do I display my custom post type on my site?"
1464
+ msgstr "Como posso mostrar o meu tipo de conteúdo personalizado no meu site?"
1465
+
1466
+ #: inc/support.php:103
1467
+ #, php-format
1468
+ msgid ""
1469
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
1470
+ "locations. If you have set the post type to have archives, the archive url "
1471
+ "should be something like \"http://www.mysite.com/post-type-slug\""
1472
+ msgstr ""
1473
+ "Terá que utilizar a classe %sWP_Query%s para controlar a apresentação em "
1474
+ "locais personalizados. Se definiu que o tipo de conteúdo terá arquivo, o URL "
1475
+ "do arquivo deverá ser algo como \"http://www.meusite.com/slug-tipo-de-"
1476
+ "conteudo\""
1477
+
1478
+ #: inc/support.php:109
1479
+ msgid ""
1480
+ "I have added categories and tags to my custom post type, but they do not "
1481
+ "appear in the archives."
1482
+ msgstr ""
1483
+ "Adicionei categorias e etiquetas ao meu tipo de conteúdo personalizado, mas "
1484
+ "não aparecem no arquivo."
1485
+
1486
+ #: inc/support.php:110
1487
+ #, php-format
1488
+ msgid ""
1489
+ "You will need to add your newly created post type to the types that the "
1490
+ "category and tag archives query for. You can see a tutorial on how to do "
1491
+ "that at %s"
1492
+ msgstr ""
1493
+ "Terá que adicionar o seu tipo de conteúdo recém criado aos tipos incluídos "
1494
+ "na pesquisa dos arquivos de categorias e etiquetas. Pode ver um tutorial "
1495
+ "sobre como fazer isto em %s"
1496
+
1497
+ #: inc/support.php:119
1498
+ msgid "Advanced"
1499
+ msgstr "Avançado"
1500
+
1501
+ #: inc/support.php:122
1502
+ msgid "How do I add custom metaboxes to my post type?"
1503
+ msgstr ""
1504
+ "Como posso adicionar caixas personalizadas de metadados ao meu tipo de "
1505
+ "conteúdo?"
1506
+
1507
+ #: inc/support.php:124
1508
+ #, php-format
1509
+ msgid ""
1510
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1511
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1512
+ msgstr ""
1513
+ "Recomendamos que conheça %s, a última iteração de \"Custom Metaboxes and "
1514
+ "Fields for WordPress\". Ambos são mantidos por WebDevStudios."
1515
+
1516
+ #: inc/support.php:130
1517
+ msgid ""
1518
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1519
+ msgstr ""
1520
+ "Como posso adicionar uma nova taxonomia a um tipo de conteúdo já existente?"
1521
+
1522
+ #: inc/support.php:132
1523
+ #, php-format
1524
+ msgid "Check out the %s function for documentation and usage examples."
1525
+ msgstr "Veja a documentação e exemplos da função %s."
1526
+
1527
+ #: inc/support.php:138
1528
+ msgid "Post relationships?"
1529
+ msgstr "Relações entre conteúdos?"
1530
+
1531
+ #: inc/support.php:139
1532
+ #, php-format
1533
+ msgid ""
1534
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1535
+ "plugin that should be a good start."
1536
+ msgstr ""
1537
+ "%s tem um excelente %sartigo%s para introduzir utilizadores ao plugin "
1538
+ "%sPosts 2 Posts%s que deve ser um bom começo."
1539
+
1540
+ #: inc/support.php:148
1541
+ msgid "Is there any function reference list?"
1542
+ msgstr "Existe alguma lista de referência das funções?"
1543
+
1544
+ #: inc/support.php:149
1545
+ #, php-format
1546
+ msgid ""
1547
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1548
+ "will be useful as they are attached to hooks."
1549
+ msgstr ""
1550
+ "O %s compilou uma boa lista de funções utilizadas pelo nosso plugin. Note "
1551
+ "que nem todas serão úteis, uma vez que estão anexadas a hooks."
1552
+
1553
+ #: inc/support.php:153
1554
+ msgid ""
1555
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1556
+ msgstr ""
1557
+ "Como posso filtrar o texto \"Introduza o título aqui\" no ecrã de edição?"
1558
+
1559
+ #: inc/support.php:154
1560
+ msgid ""
1561
+ "Change text inside the post/page editor title field. Should be able to adapt "
1562
+ "as necessary."
1563
+ msgstr ""
1564
+ "Modifique o texto dentro do campo do título no editor de artigo/página. "
1565
+ "Deverá adaptar-se conforme necessário."
1566
+
1567
+ #: inc/taxonomies.php:89
1568
+ msgid ""
1569
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1570
+ "registers a new taxonomy entry for your install."
1571
+ msgstr ""
1572
+ "NÃO EDITE a slug da taxonomia a não ser que estritamente necessário. Alterar "
1573
+ "este valor regista uma nova taxonomia na sua instalação."
1574
+
1575
+ #: inc/taxonomies.php:129
1576
+ msgid "Taxonomy Slug"
1577
+ msgstr "Slug da taxonomia"
1578
+
1579
+ #: inc/taxonomies.php:130
1580
+ msgid "(e.g. actor)"
1581
+ msgstr "(p. ex. actor)"
1582
+
1583
+ #: inc/taxonomies.php:131
1584
+ msgid ""
1585
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1586
+ "and unique"
1587
+ msgstr ""
1588
+ "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1589
+ "personalizada. Deverá ser curto e único."
1590
+
1591
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1592
+ msgid "(e.g. Actors)"
1593
+ msgstr "(p. ex. Actores)"
1594
+
1595
+ #: inc/taxonomies.php:141
1596
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1597
+ msgstr ""
1598
+ "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1599
+ "taxonomia personalizada."
1600
+
1601
+ #: inc/taxonomies.php:148
1602
+ msgid "(e.g. Actor)"
1603
+ msgstr "(p. ex. Actor)"
1604
+
1605
+ #: inc/taxonomies.php:150
1606
+ msgid ""
1607
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1608
+ msgstr ""
1609
+ "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1610
+ "quando é necessária uma legenda no singular."
1611
+
1612
+ #: inc/taxonomies.php:167
1613
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1614
+ msgstr "Descrição da taxonomia. Descreva para que serve a sua taxonomia."
1615
+
1616
+ #: inc/taxonomies.php:170
1617
+ msgid "Attach to Post Type"
1618
+ msgstr "Anexar ao tipo de conteúdo"
1619
+
1620
+ #: inc/taxonomies.php:220
1621
+ msgid "Save Taxonomy"
1622
+ msgstr "Guardar taxonomia"
1623
+
1624
+ #: inc/taxonomies.php:231
1625
+ msgid "Delete Taxonomy"
1626
+ msgstr "Eliminar taxonomia"
1627
+
1628
+ #: inc/taxonomies.php:243
1629
+ msgid "Add Taxonomy"
1630
+ msgstr "Adicionar taxonomia"
1631
+
1632
+ #: inc/taxonomies.php:252
1633
+ #, php-format
1634
+ msgid ""
1635
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1636
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1637
+ "letters that do not have accents."
1638
+ msgstr ""
1639
+ "Nomes de taxonomias podem ter no %smáximo 32 caracteres%s, apenas pode "
1640
+ "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1641
+ "letras sem acentos."
1642
+
1643
+ #: inc/taxonomies.php:253
1644
+ #, php-format
1645
+ msgid ""
1646
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1647
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1648
+ "settings will use default values. Labels, if left blank, will be "
1649
+ "automatically created based on the taxonomy name. Hover over the question "
1650
+ "marks for more details."
1651
+ msgstr ""
1652
+ "Se não estiver familiarizado com as definições avançadas das taxonomias, "
1653
+ "preencha apenas os campos %sNome da taxonomia%s e %sAnexar ao tipo de "
1654
+ "conteúdo%s. Para as restantes definições serão atribuídos os valores por "
1655
+ "omissão. Se deixadas em branco, as legendas serão automaticamente criadas "
1656
+ "com base no nome da taxonomia. Ver o ponto de interrogação para mais "
1657
+ "detalhes."
1658
+
1659
+ #: inc/taxonomies.php:254
1660
+ #, php-format
1661
+ msgid ""
1662
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1663
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1664
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1665
+ "terms in the database."
1666
+ msgstr ""
1667
+ "Eliminar taxonomias personalizadas %sNÃO%s eliminará quaisquer termos "
1668
+ "adicionados a essas taxonomias. Pode recriar as suas taxonomias e os termos "
1669
+ "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1670
+ "actualizará os termos na base de dados."
1671
+
1672
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1673
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1674
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1675
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1676
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1677
+ msgid ""
1678
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1679
+ msgstr ""
1680
+ "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1681
+ "mostrar taxonomias."
1682
+
1683
+ #: inc/taxonomies.php:278
1684
+ msgid "(e.g. All Actors)"
1685
+ msgstr "(p. ex. Todos os actores)"
1686
+
1687
+ #: inc/taxonomies.php:287
1688
+ msgid "(e.g. Edit Actor)"
1689
+ msgstr "(p. ex. Editar actor)"
1690
+
1691
+ #: inc/taxonomies.php:296
1692
+ msgid "(e.g. View Actor)"
1693
+ msgstr "(p. ex. Ver actor)"
1694
+
1695
+ #: inc/taxonomies.php:305
1696
+ msgid "(e.g. Update Actor Name)"
1697
+ msgstr "(p. ex. Actualizar nome de actor)"
1698
+
1699
+ #: inc/taxonomies.php:306
1700
+ msgid "Update Item Name"
1701
+ msgstr "Actualizar nome do item"
1702
+
1703
+ #: inc/taxonomies.php:314
1704
+ msgid "(e.g. Add New Actor)"
1705
+ msgstr "(p. ex. Adicionar novo actor)"
1706
+
1707
+ #: inc/taxonomies.php:323
1708
+ msgid "(e.g. New Actor Name)"
1709
+ msgstr "(p. ex. Nome do novo actor)"
1710
+
1711
+ #: inc/taxonomies.php:324
1712
+ msgid "New Item Name"
1713
+ msgstr "Nome do novo item"
1714
+
1715
+ #: inc/taxonomies.php:332
1716
+ msgid "(e.g. Parent Actor)"
1717
+ msgstr "(p. ex. Actor superior)"
1718
+
1719
+ #: inc/taxonomies.php:333
1720
+ msgid "Parent Item"
1721
+ msgstr "Item superior"
1722
+
1723
+ #: inc/taxonomies.php:341
1724
+ msgid "(e.g. Parent Actor:)"
1725
+ msgstr "(p. ex. Actor superior:)"
1726
+
1727
+ #: inc/taxonomies.php:342
1728
+ msgid "Parent Item Colon"
1729
+ msgstr "Item superior com pontuação"
1730
+
1731
+ #: inc/taxonomies.php:350
1732
+ msgid "(e.g. Search Actors)"
1733
+ msgstr "(p. ex. Pesquisar actores)"
1734
+
1735
+ #: inc/taxonomies.php:351
1736
+ msgid "Search Items"
1737
+ msgstr "Pesquisar itens"
1738
+
1739
+ #: inc/taxonomies.php:359
1740
+ msgid "(e.g. Popular Actors)"
1741
+ msgstr "(p. ex. Actores populares)"
1742
+
1743
+ #: inc/taxonomies.php:360
1744
+ msgid "Popular Items"
1745
+ msgstr "Itens populares"
1746
+
1747
+ #: inc/taxonomies.php:368
1748
+ msgid "(e.g. Separate Actors with commas)"
1749
+ msgstr "(p. ex. Actores separados por vírgulas)"
1750
+
1751
+ #: inc/taxonomies.php:369
1752
+ msgid "Separate Items with Commas"
1753
+ msgstr "Itens separados por vírgulas"
1754
+
1755
+ #: inc/taxonomies.php:377
1756
+ msgid "(e.g. Add or remove Actors)"
1757
+ msgstr "(p. ex. Adicionar ou remover actores)"
1758
+
1759
+ #: inc/taxonomies.php:378
1760
+ msgid "Add or Remove Items"
1761
+ msgstr "Adicionar ou remover itens"
1762
+
1763
+ #: inc/taxonomies.php:386
1764
+ msgid "(e.g. Choose from the most used Actors)"
1765
+ msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1766
+
1767
+ #: inc/taxonomies.php:387
1768
+ msgid "Choose From Most Used"
1769
+ msgstr "Escolher entre os mais utilizados"
1770
+
1771
+ #: inc/taxonomies.php:395
1772
+ msgid "(e.g. No Actors found)"
1773
+ msgstr "(p. ex. Nenhum actor encontrado)"
1774
+
1775
+ #: inc/taxonomies.php:396
1776
+ msgid "Not found"
1777
+ msgstr "Não encontrado"
1778
+
1779
+ #: inc/taxonomies.php:419
1780
+ msgid "Whether the taxonomy can have parent-child relationships"
1781
+ msgstr "Se a taxonomia pode ter relações superior/dependente"
1782
+
1783
+ #: inc/taxonomies.php:436
1784
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1785
+ msgstr ""
1786
+ "Se cria um interface de utilizador para gerir esta taxonomia personalizada."
1787
+
1788
+ #: inc/taxonomies.php:453
1789
+ msgid "Sets the query_var key for this taxonomy."
1790
+ msgstr "Define a chave query_var para esta taxonomia."
1791
+
1792
+ #: inc/taxonomies.php:461
1793
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1794
+ msgstr ""
1795
+ "(por omissão: nenhum). Na opção query var tem que estar verdadeiro para ser "
1796
+ "utilizada."
1797
+
1798
+ #: inc/taxonomies.php:462
1799
+ msgid "Custom Query Var String"
1800
+ msgstr "Valor personalizado da query var"
1801
+
1802
+ #: inc/taxonomies.php:463
1803
+ msgid "Sets a custom query_var slug for this taxonomy."
1804
+ msgstr "Define uma slug personalizada para a query_var desta taxonomia."
1805
+
1806
+ #: inc/taxonomies.php:479
1807
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1808
+ msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1809
+
1810
+ #: inc/taxonomies.php:487
1811
+ msgid "(default: taxonomy name)"
1812
+ msgstr "(por omissão: nome da taxonomia)"
1813
+
1814
+ #: inc/taxonomies.php:489
1815
+ msgid "Custom taxonomy rewrite slug."
1816
+ msgstr "Slug da taxonomia personalizada."
1817
+
1818
+ #: inc/taxonomies.php:503
1819
+ msgid "Rewrite With Front"
1820
+ msgstr "Reescrever URL com slug base"
1821
+
1822
+ #: inc/taxonomies.php:504
1823
+ msgid "(default: true)"
1824
+ msgstr "(por omissão: Verdadeiro)"
1825
+
1826
+ #: inc/taxonomies.php:520
1827
+ msgid "Rewrite Hierarchical"
1828
+ msgstr "Reescrever URL hierarquicamente"
1829
+
1830
+ #: inc/taxonomies.php:521
1831
+ msgid "(default: false)"
1832
+ msgstr "(por omissão: Falso)"
1833
+
1834
+ #: inc/taxonomies.php:522
1835
+ msgid "Should the permastruct allow hierarchical urls."
1836
+ msgstr "Permitir URL hierárquicos nas ligações permanentes."
1837
+
1838
+ #: inc/taxonomies.php:537
1839
+ msgid "Show Admin Column"
1840
+ msgstr "Mostrar coluna de administração"
1841
+
1842
+ #: inc/taxonomies.php:539
1843
+ msgid ""
1844
+ "Whether to allow automatic creation of taxonomy columns on associated post-"
1845
+ "types."
1846
+ msgstr ""
1847
+ "Se permite a criação automática de colunas de taxonomias em tipos de "
1848
+ "conteúdo associados."
1849
+
1850
+ #: inc/taxonomies.php:559
1851
+ msgid "Whether to show this taxonomy data in the WP REST API."
1852
+ msgstr "Se mostra os dados desta taxonomia na WP REST API."
1853
+
1854
+ #: inc/taxonomies.php:676
1855
+ msgid "Please provide a taxonomy to delete"
1856
+ msgstr "Por favor introduza uma taxonomia a eliminar"
1857
+
1858
+ #: inc/taxonomies.php:727
1859
+ msgid "Please provide a taxonomy name"
1860
+ msgstr "Por favor introduza um nome de taxonomia"
1861
+
1862
+ #: inc/taxonomies.php:743
1863
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1864
+ msgstr ""
1865
+ "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1866
+
1867
+ #: inc/taxonomies.php:749
1868
+ #, php-format
1869
+ msgid "Please choose a different taxonomy name. %s is already used."
1870
+ msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1871
+
1872
+ #. Plugin URI of the plugin/theme
1873
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1874
+ msgstr "https://github.com/WebDevStudios/custom-post-type-ui/"
1875
+
1876
+ #. Description of the plugin/theme
1877
+ msgid ""
1878
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1879
+ msgstr ""
1880
+ "Painel de administração para criar tipos de conteúdo personalizados e "
1881
+ "taxonomias personalizadas no WordPress"
1882
+
1883
+ #. Author of the plugin/theme
1884
+ msgid "WebDevStudios"
1885
+ msgstr "WebDevStudios"
1886
+
1887
+ #. Author URI of the plugin/theme
1888
+ msgid "http://webdevstudios.com/"
1889
+ msgstr "http://webdevstudios.com/"
languages/custom-post-type-ui-tr_TR.mo ADDED
Binary file
languages/{cpt-plugin-tr_TR.po → custom-post-type-ui-tr_TR.po} RENAMED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
- "POT-Creation-Date: 2015-08-11 11:36-0500\n"
6
- "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: TrStar <trstar@gmail.com>\n"
9
  "Language: tr_TR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.2\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
@@ -22,103 +22,165 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
- #: custom-post-type-ui.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Custom Post Types"
27
  msgstr "Özel Yazı Türleri"
28
 
29
- #: custom-post-type-ui.php:60
30
  msgid "CPT UI"
31
  msgstr "CPT KA"
32
 
33
- #: custom-post-type-ui.php:61
34
  #, fuzzy
35
  msgid "Add/Edit Post Types"
36
  msgstr "Ek Yazı Türleri"
37
 
38
- #: custom-post-type-ui.php:62
39
  #, fuzzy
40
  msgid "Add/Edit Taxonomies"
41
  msgstr "Dahili Sınıflandırmalar"
42
 
43
- #: custom-post-type-ui.php:63
44
  msgid "Registered Types and Taxes"
45
  msgstr ""
46
 
47
- #: custom-post-type-ui.php:63
48
  msgid "Registered Types/Taxes"
49
  msgstr ""
50
 
51
- #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
52
  msgid "Import/Export"
53
  msgstr ""
54
 
55
- #: custom-post-type-ui.php:65
56
  #, fuzzy
57
  msgid "Help/Support"
58
  msgstr "Eklentiye Destek, Yardım!"
59
 
60
- #: custom-post-type-ui.php:69
61
  #, fuzzy
62
  msgid "About CPT UI"
63
  msgstr "CPT KA"
64
 
65
  #. Plugin Name of the plugin/theme
66
- #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
67
  msgid "Custom Post Type UI"
68
  msgstr "Özel Yazı Türleri KA"
69
 
70
- #: custom-post-type-ui.php:342
71
  msgid ""
72
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
73
  "with our plugin provides efficiency and speed in creating post types and "
74
  "taxonomies, to better organize your content, without having to touch code."
75
  msgstr ""
76
 
77
- #: custom-post-type-ui.php:348
78
- #, fuzzy
79
- msgid "Post type migration"
80
- msgstr "Özel Yazı Türleri"
 
 
 
 
81
 
82
- #: custom-post-type-ui.php:349
83
  msgid ""
84
- "In the past, if you changed your post type slug, you would lose immediate "
85
- "access to the posts in the post type and need to recover another way. We "
86
- "have now added support for migrating all posts within the old post type to "
87
- "the new post type you renamed it to."
88
  msgstr ""
89
 
90
- #: custom-post-type-ui.php:352
91
- msgid "UI Refinement"
92
  msgstr ""
93
 
94
- #: custom-post-type-ui.php:353
95
  msgid ""
96
- "After receiving feedback regarding the 1.0.x changes, we have further "
97
- "simplified the UI to reduce the amount of clicking necessary to manage your "
98
- "post types and taxonomies."
99
  msgstr ""
100
 
101
- #: custom-post-type-ui.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  #, fuzzy
103
- msgid "Registered Post Type and Taxonomy Listings"
104
- msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
105
 
106
- #: custom-post-type-ui.php:357
107
  msgid ""
108
- "We are bringing back the listing of all CPTUI-registered post types and "
109
- "taxonomies for easier quick view of what you have going."
 
110
  msgstr ""
111
 
112
- #: custom-post-type-ui.php:362
113
  msgid "Help Support This Plugin!"
114
  msgstr "Eklentiye Destek, Yardım!"
115
 
116
- #: custom-post-type-ui.php:366
117
  #, fuzzy
118
  msgid "Professional WordPress<br />Third Edition"
119
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
120
 
121
- #: custom-post-type-ui.php:371
 
 
 
 
 
122
  #, fuzzy
123
  msgid ""
124
  "The leading book on WordPress design and development! Brand new third "
@@ -127,215 +189,236 @@ msgstr ""
127
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
128
  "sürüm !"
129
 
130
- #: custom-post-type-ui.php:374
131
  msgid "Professional WordPress<br />Plugin Development"
132
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
133
 
134
- #: custom-post-type-ui.php:379
 
 
 
 
 
135
  msgid "Highest rated WordPress development book on Amazon!"
136
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
137
 
138
- #: custom-post-type-ui.php:382
139
  msgid "PayPal Donation"
140
  msgstr "PayPal Bağış"
141
 
142
- #: custom-post-type-ui.php:386
143
  msgid "PayPal - The safer, easier way to pay online!"
144
  msgstr ""
145
 
146
- #: custom-post-type-ui.php:389
147
  #, fuzzy
148
  msgid "Please donate to the development of Custom Post Type UI:"
149
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
150
 
151
- #: custom-post-type-ui.php:415
152
  #, php-format
153
  msgid "%s version %s by %s"
154
  msgstr ""
155
 
156
- #: custom-post-type-ui.php:426
157
  msgid "Please Report Bugs"
158
  msgstr "Lütfen Hataları Bildirin"
159
 
160
- #: custom-post-type-ui.php:429
161
  msgid "Follow on Twitter:"
162
  msgstr "Twitterden takip et:"
163
 
164
- #: custom-post-type-ui.php:493
165
  msgid "Manage Taxonomies"
166
  msgstr "Sınıflandırmaları Yönet"
167
 
168
- #: custom-post-type-ui.php:497
169
  msgid "Manage Post Types"
170
  msgstr "Yazı Türlerini Yönet"
171
 
172
- #: custom-post-type-ui.php:523
173
  #, fuzzy
174
  msgid "Add New Post Type"
175
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
176
 
177
- #: custom-post-type-ui.php:526
178
  #, fuzzy
179
  msgid "Edit Post Types"
180
  msgstr "Özel Yazı Türleri"
181
 
182
- #: custom-post-type-ui.php:530
183
  #, fuzzy
184
  msgid "Add New Taxonomy"
185
  msgstr "Sınıflandırma Adı"
186
 
187
- #: custom-post-type-ui.php:533
188
  #, fuzzy
189
  msgid "Edit Taxonomies"
190
  msgstr "Dahili Sınıflandırmalar"
191
 
192
- #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
193
- #: inc/listings.php:224
194
  #, fuzzy
195
  msgid "Post Types"
196
  msgstr "Özel Yazı Türleri"
197
 
198
- #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
199
- #: inc/listings.php:122 inc/listings.php:132
200
  #, fuzzy
201
  msgid "Taxonomies"
202
  msgstr "Sınıflandırmaları Yönet"
203
 
204
- #: custom-post-type-ui.php:539
205
  msgid "Get Code"
206
  msgstr "Kodu Alın"
207
 
208
- #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
209
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
210
- #: inc/taxonomies.php:343
 
 
 
211
  msgid "Settings"
212
  msgstr ""
213
 
214
- #: custom-post-type-ui.php:622
215
  msgid "Help"
216
  msgstr ""
217
 
218
- #: custom-post-type-ui.php:651
219
  #, php-format
220
  msgid "%s has been successfully added"
221
  msgstr ""
222
 
223
- #: custom-post-type-ui.php:653
224
  #, php-format
225
  msgid "%s has failed to be added"
226
  msgstr ""
227
 
228
- #: custom-post-type-ui.php:657
229
  #, php-format
230
  msgid "%s has been successfully updated"
231
  msgstr ""
232
 
233
- #: custom-post-type-ui.php:659
234
  #, php-format
235
  msgid "%s has failed to be updated"
236
  msgstr ""
237
 
238
- #: custom-post-type-ui.php:663
239
  #, php-format
240
  msgid "%s has been successfully deleted"
241
  msgstr ""
242
 
243
- #: custom-post-type-ui.php:665
244
  #, php-format
245
  msgid "%s has failed to be deleted"
246
  msgstr ""
247
 
248
- #: custom-post-type-ui.php:669
249
  #, php-format
250
  msgid "%s has been successfully imported"
251
  msgstr ""
252
 
253
- #: custom-post-type-ui.php:671
254
  #, php-format
255
  msgid "%s has failed to be imported"
256
  msgstr ""
257
 
258
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
259
  #, fuzzy, php-format
260
  msgid "Add new %s"
261
  msgstr "Yeni Ekle"
262
 
263
- #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
 
264
  #, fuzzy, php-format
265
  msgid "Edit %s"
266
  msgstr "Düzenle"
267
 
268
- #: custom-post-type-ui.php:756
269
  #, php-format
270
  msgid "New %s"
271
  msgstr ""
272
 
273
- #: custom-post-type-ui.php:757
274
  #, fuzzy, php-format
275
  msgid "View %s"
276
  msgstr "Göster"
277
 
278
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
279
  #, fuzzy, php-format
280
  msgid "All %s"
281
  msgstr "Bütün Elemanlar"
282
 
283
- #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
284
  #, fuzzy, php-format
285
  msgid "Search %s"
286
  msgstr "Eleman Ara"
287
 
288
- #: custom-post-type-ui.php:760
289
  #, fuzzy, php-format
290
  msgid "No %s found."
291
  msgstr "Bulunamadı"
292
 
293
- #: custom-post-type-ui.php:761
294
  #, fuzzy, php-format
295
  msgid "No %s found in trash."
296
  msgstr "Çöpte Bulunamadı"
297
 
298
- #: custom-post-type-ui.php:765
299
  #, fuzzy, php-format
300
  msgid "Popular %s"
301
  msgstr "Popüler Elemanlar"
302
 
303
- #: custom-post-type-ui.php:767
304
  #, fuzzy, php-format
305
  msgid "Parent %s"
306
  msgstr "Temel"
307
 
308
- #: custom-post-type-ui.php:768
309
  #, fuzzy, php-format
310
  msgid "Parent %s:"
311
  msgstr "Temel"
312
 
313
- #: custom-post-type-ui.php:770
314
  #, php-format
315
  msgid "Update %s"
316
  msgstr ""
317
 
318
- #: custom-post-type-ui.php:772
319
  #, fuzzy, php-format
320
  msgid "New %s name"
321
  msgstr "Yeni Eleman Adı"
322
 
323
- #: custom-post-type-ui.php:773
324
  #, fuzzy, php-format
325
  msgid "Separate %s with commas"
326
  msgstr "Elemanları virgül ile ayır"
327
 
328
- #: custom-post-type-ui.php:774
329
  #, fuzzy, php-format
330
  msgid "Add or remove %s"
331
  msgstr "Elemanları Ekle veya Çıkar "
332
 
333
- #: custom-post-type-ui.php:775
334
  #, fuzzy, php-format
335
  msgid "Choose from the most used %s"
336
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
337
 
338
- #: inc/import_export.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
339
  msgid ""
340
  "If you are wanting to migrate registered post types or taxonomies from this "
341
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -343,198 +426,238 @@ msgid ""
343
  "the information in the \"Get Code\" tab."
344
  msgstr ""
345
 
346
- #: inc/import_export.php:45
347
  msgid "NOTE"
348
  msgstr ""
349
 
350
- #: inc/import_export.php:46
351
- msgid "This will not export the associated posts, just the settings."
 
 
352
  msgstr ""
353
 
354
- #: inc/import_export.php:53
355
  #, fuzzy
356
  msgid "Import Post Types"
357
  msgstr "Özel Yazı Türleri"
358
 
359
- #: inc/import_export.php:55 inc/import_export.php:80
360
  msgid "Paste content here."
361
  msgstr ""
362
 
363
- #: inc/import_export.php:56 inc/import_export.php:81
364
  msgid "Note:"
365
  msgstr ""
366
 
367
- #: inc/import_export.php:56 inc/import_export.php:81
368
  msgid "Importing will overwrite previous registered settings."
369
  msgstr ""
370
 
371
- #: inc/import_export.php:57
372
  msgid ""
373
  "To import post types from a different WordPress site, paste the exported "
374
  "content from that site and click the \"Import\" button."
375
  msgstr ""
376
 
377
- #: inc/import_export.php:58 inc/import_export.php:83
378
  msgid "Import"
379
  msgstr ""
380
 
381
- #: inc/import_export.php:62
382
  #, fuzzy
383
  msgid "Export Post Types"
384
  msgstr "Özel Yazı Türleri"
385
 
386
- #: inc/import_export.php:68
387
  msgid "No post types registered yet."
388
  msgstr ""
389
 
390
- #: inc/import_export.php:71 inc/import_export.php:96
391
  msgid ""
392
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
393
  "(Mac)."
394
  msgstr ""
395
 
396
- #: inc/import_export.php:72
397
  msgid ""
398
  "Use the content above to import current post types into a different "
399
  "WordPress site. You can also use this to simply back up your post type "
400
  "settings."
401
  msgstr ""
402
 
403
- #: inc/import_export.php:78
404
  #, fuzzy
405
  msgid "Import Taxonomies"
406
  msgstr "Sınıflandırmaları Yönet"
407
 
408
- #: inc/import_export.php:82
409
  msgid ""
410
  "To import taxonomies from a different WordPress site, paste the exported "
411
  "content from that site and click the \"Import\" button."
412
  msgstr ""
413
 
414
- #: inc/import_export.php:87
415
  #, fuzzy
416
  msgid "Export Taxonomies"
417
  msgstr "Sınıflandırmaları Yönet"
418
 
419
- #: inc/import_export.php:93
420
  msgid "No taxonomies registered yet."
421
  msgstr ""
422
 
423
- #: inc/import_export.php:97
424
  msgid ""
425
  "Use the content above to import current taxonomies into a different "
426
  "WordPress site. You can also use this to simply back up your taxonomy "
427
  "settings."
428
  msgstr ""
429
 
430
- #: inc/import_export.php:105
431
  #, fuzzy
432
  msgid "Get Post Type and Taxonomy Code"
433
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
434
 
435
- #: inc/import_export.php:107
436
  #, fuzzy
437
  msgid "All CPT UI Post Types"
438
  msgstr "Özel Yazı Türleri"
439
 
440
- #: inc/import_export.php:108 inc/import_export.php:112
 
441
  msgid "Copy/paste the code below into your functions.php file."
442
  msgstr ""
443
 
444
- #: inc/import_export.php:111
 
 
 
 
 
445
  #, fuzzy
446
  msgid "All CPT UI Taxonomies"
447
  msgstr "Dahili Sınıflandırmalar"
448
 
449
- #: inc/import_export.php:142
450
- msgid "No taxonomies to display at this time"
451
- msgstr ""
 
452
 
453
- #: inc/import_export.php:241
454
- msgid "No post types to display at this time"
455
  msgstr ""
456
 
457
- #: inc/import_export.php:367
458
- #, fuzzy
459
- msgid "Post types"
460
- msgstr "Özel Yazı Türleri"
461
 
462
  #: inc/listings.php:10
463
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
464
  msgstr ""
465
 
466
- #: inc/listings.php:18 inc/listings.php:134
467
  #, php-format
468
  msgid "Total count: %d"
469
  msgstr ""
470
 
471
- #: inc/listings.php:31 inc/listings.php:119
472
  #, fuzzy
473
  msgid "Post Type"
474
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
475
 
476
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
477
  msgid "Supports"
478
  msgstr "Destekler"
479
 
480
- #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
481
- #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
482
  #, fuzzy
483
  msgid "Labels"
484
  msgstr "Etiket"
485
 
486
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
487
- msgid "Edit"
488
- msgstr "Düzenle"
 
489
 
490
- #: inc/listings.php:75
491
  msgid "View frontend archive"
492
  msgstr ""
493
 
494
- #: inc/listings.php:108 inc/listings.php:211
495
  #, fuzzy
496
  msgid "No custom labels to display"
497
  msgstr "Özel Yazı Türleri"
498
 
499
- #: inc/listings.php:147 inc/listings.php:222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
  #, fuzzy
501
  msgid "Taxonomy"
502
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
503
 
504
- #: inc/post-types.php:30 inc/taxonomies.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  msgid "Are you sure you want to delete this?"
506
  msgstr ""
507
 
508
- #: inc/post-types.php:89
509
  msgid ""
510
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
511
  "registers a new post type entry for your install."
512
  msgstr ""
513
 
514
- #: inc/post-types.php:90
515
  msgid ""
516
  "Use appropriate checkbox above save/delete buttons if you wish to change "
517
  "slugs and update post types for existing posts."
518
  msgstr ""
519
 
520
- #: inc/post-types.php:91 inc/taxonomies.php:87
521
  msgid "Select: "
522
  msgstr ""
523
 
524
- #: inc/post-types.php:94 inc/taxonomies.php:91
525
  msgid "Select"
526
  msgstr ""
527
 
528
- #: inc/post-types.php:124
529
  #, fuzzy
530
  msgid "Post Type Slug"
531
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
532
 
533
- #: inc/post-types.php:125
534
  msgid "(e.g. movie)"
535
  msgstr "(örnek: film)"
536
 
537
- #: inc/post-types.php:126
538
  #, fuzzy
539
  msgid ""
540
  "The post type name. Used to retrieve custom post type content. Should be "
@@ -543,35 +666,35 @@ msgstr ""
543
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
544
  "kullanılacaktır."
545
 
546
- #: inc/post-types.php:137 inc/taxonomies.php:129
547
  #, fuzzy
548
  msgid "Plural Label"
549
  msgstr "Tekil Etiket"
550
 
551
- #: inc/post-types.php:138
552
  msgid "(e.g. Movies)"
553
  msgstr "(örneğin: Filmler)"
554
 
555
- #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
556
- #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
557
- #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
558
- #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
559
- #: inc/post-types.php:368
560
  #, fuzzy
561
  msgid "Post type label. Used in the admin menu for displaying post types."
562
  msgstr ""
563
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
564
  "kullanılacak."
565
 
566
- #: inc/post-types.php:149 inc/taxonomies.php:138
567
  msgid "Singular Label"
568
  msgstr "Tekil Etiket"
569
 
570
- #: inc/post-types.php:150
571
  msgid "(e.g. Movie)"
572
  msgstr "(örneğin: Film)"
573
 
574
- #: inc/post-types.php:151
575
  #, fuzzy
576
  msgid ""
577
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
@@ -580,11 +703,11 @@ msgstr ""
580
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
581
  "kullanacak."
582
 
583
- #: inc/post-types.php:167
584
  msgid "Description"
585
  msgstr "Açıklama"
586
 
587
- #: inc/post-types.php:168
588
  #, fuzzy
589
  msgid ""
590
  "Custom Post Type Description. Describe what your custom post type is used "
@@ -592,34 +715,34 @@ msgid ""
592
  msgstr ""
593
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
594
 
595
- #: inc/post-types.php:180
596
  msgid "Migrate posts to newly renamed post type?"
597
  msgstr ""
598
 
599
- #: inc/post-types.php:181
600
  msgid "Check this to migrate posts if and when renaming your post type."
601
  msgstr ""
602
 
603
- #: inc/post-types.php:190
604
  #, fuzzy
605
  msgid "Save Post Type"
606
  msgstr "Özel Yazı Türü Kaydet"
607
 
608
- #: inc/post-types.php:191
609
  #, fuzzy
610
  msgid "Delete Post Type"
611
  msgstr "Ek Yazı Türleri"
612
 
613
- #: inc/post-types.php:193
614
  #, fuzzy
615
  msgid "Add Post Type"
616
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
617
 
618
- #: inc/post-types.php:204 inc/taxonomies.php:190
619
  msgid "Starter Notes"
620
  msgstr ""
621
 
622
- #: inc/post-types.php:207
623
  #, fuzzy, php-format
624
  msgid ""
625
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -630,7 +753,7 @@ msgstr ""
630
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
631
  "post, sayfa, ek, revizyon, nav_menu_item."
632
 
633
- #: inc/post-types.php:208
634
  #, fuzzy, php-format
635
  msgid ""
636
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -642,7 +765,7 @@ msgstr ""
642
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
643
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
644
 
645
- #: inc/post-types.php:209
646
  #, fuzzy, php-format
647
  msgid ""
648
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -653,253 +776,311 @@ msgstr ""
653
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
654
  "veritabanında olacaktır."
655
 
656
- #: inc/post-types.php:223 inc/taxonomies.php:211
657
  msgid "Menu Name"
658
  msgstr "Menü Adı"
659
 
660
- #: inc/post-types.php:224
661
  msgid "Custom menu name for your custom post type."
662
  msgstr "Özel yazı türü için özel menü adı."
663
 
664
- #: inc/post-types.php:228
665
  msgid "(e.g. My Movies)"
666
  msgstr "(örneğin: Benim Filmlerim)"
667
 
668
- #: inc/post-types.php:235 inc/taxonomies.php:220
669
  msgid "All Items"
670
  msgstr "Bütün Elemanlar"
671
 
672
- #: inc/post-types.php:240
673
  #, fuzzy
674
  msgid "(e.g. All Movies)"
675
  msgstr "(örneğin: Filmler)"
676
 
677
- #: inc/post-types.php:247
678
  msgid "Add New"
679
  msgstr "Yeni Ekle"
680
 
681
- #: inc/post-types.php:252
682
  msgid "(e.g. Add New)"
683
  msgstr "(örneğin: Yeni Ekle)"
684
 
685
- #: inc/post-types.php:259 inc/taxonomies.php:256
686
  msgid "Add New Item"
687
  msgstr "Yeni Eleman Ekle"
688
 
689
- #: inc/post-types.php:264
690
  msgid "(e.g. Add New Movie)"
691
  msgstr "(örneğin: Yeni Film ekle)"
692
 
693
- #: inc/post-types.php:276
 
 
 
 
694
  msgid "(e.g. Edit)"
695
  msgstr "(örneğin: Düzenle)"
696
 
697
- #: inc/post-types.php:283 inc/taxonomies.php:229
698
  msgid "Edit Item"
699
  msgstr "Eleman Düzenle"
700
 
701
- #: inc/post-types.php:288
702
  msgid "(e.g. Edit Movie)"
703
  msgstr "(örneğin: Film Düzenle)"
704
 
705
- #: inc/post-types.php:295
706
  msgid "New Item"
707
  msgstr "Yeni Eleman"
708
 
709
- #: inc/post-types.php:300
710
  msgid "(e.g. New Movie)"
711
  msgstr "(örneğin: Yeni Film)"
712
 
713
- #: inc/post-types.php:307
714
  msgid "View"
715
  msgstr "Göster"
716
 
717
- #: inc/post-types.php:312
718
  #, fuzzy
719
  msgid "(e.g. View)"
720
  msgstr "(örneğin: Film Göster)"
721
 
722
- #: inc/post-types.php:319 inc/taxonomies.php:238
723
  msgid "View Item"
724
  msgstr "Elemanı Göster"
725
 
726
- #: inc/post-types.php:324
727
  msgid "(e.g. View Movie)"
728
  msgstr "(örneğin: Film Göster)"
729
 
730
- #: inc/post-types.php:331
731
  #, fuzzy
732
  msgid "Search Item"
733
  msgstr "Eleman Düzenle"
734
 
735
- #: inc/post-types.php:336
736
  #, fuzzy
737
  msgid "(e.g. Search Movie)"
738
  msgstr "(örneğin: Filmleri Ara)"
739
 
740
- #: inc/post-types.php:343
741
  msgid "Not Found"
742
  msgstr "Bulunamadı"
743
 
744
- #: inc/post-types.php:348
745
  #, fuzzy
746
  msgid "(e.g. No Movies found)"
747
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
748
 
749
- #: inc/post-types.php:355
750
  msgid "Not Found in Trash"
751
  msgstr "Çöpte Bulunamadı"
752
 
753
- #: inc/post-types.php:360
754
  msgid "(e.g. No Movies found in Trash)"
755
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
756
 
757
- #: inc/post-types.php:367
758
  msgid "Parent"
759
  msgstr "Temel"
760
 
761
- #: inc/post-types.php:372
762
  msgid "(e.g. Parent Movie)"
763
  msgstr "(örneğin: Temel Film)"
764
 
765
- #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
766
- #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
767
- #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
768
- #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
769
- #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
770
- #: inc/taxonomies.php:469
 
771
  msgid "False"
772
  msgstr "False"
773
 
774
- #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
775
- #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
776
- #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
777
- #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
778
- #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
779
- #: inc/taxonomies.php:470
 
780
  msgid "True"
781
  msgstr "True"
782
 
783
- #: inc/post-types.php:395
784
  msgid "Public"
785
  msgstr "Genel"
786
 
787
- #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
788
- #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
789
- #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
790
- msgid "(default: True)"
791
  msgstr "(varsayılan: Doğru)"
792
 
793
- #: inc/post-types.php:397
794
  #, fuzzy
795
  msgid ""
 
796
  "Whether posts of this type should be shown in the admin UI and is publicly "
797
  "queryable."
798
  msgstr ""
799
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
800
 
801
- #: inc/post-types.php:415 inc/taxonomies.php:375
802
  msgid "Show UI"
803
  msgstr "KA Göster"
804
 
805
- #: inc/post-types.php:417
 
 
 
 
 
 
806
  #, fuzzy
807
  msgid "Whether to generate a default UI for managing this post type."
808
  msgstr ""
809
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
810
 
811
- #: inc/post-types.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
812
  msgid "Has Archive"
813
  msgstr "Arşivlenebilir mi?"
814
 
815
- #: inc/post-types.php:426
816
  #, fuzzy
817
  msgid "Whether the post type will have a post type archive URL."
818
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
819
 
820
- #: inc/post-types.php:427
821
  msgid "If left blank, the archive slug will default to the post type slug."
822
  msgstr ""
823
 
824
- #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
825
- #: inc/taxonomies.php:359 inc/taxonomies.php:479
826
- msgid "(default: False)"
827
- msgstr "(varsayılan:Yanlış)"
828
-
829
- #: inc/post-types.php:453
830
  msgid "Slug to be used for archive URL."
831
  msgstr ""
832
 
833
- #: inc/post-types.php:473
834
  msgid "Exclude From Search"
835
  msgstr "Arama Dışında Bırak"
836
 
837
- #: inc/post-types.php:475
838
  msgid ""
839
  "Whether to exclude posts with this post type from front end search results."
840
  msgstr ""
841
 
842
- #: inc/post-types.php:486
843
  msgid "Capability Type"
844
  msgstr "Yetenek Türü"
845
 
846
- #: inc/post-types.php:487
847
  msgid "The post type to use for checking read, edit, and delete capabilities"
848
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
849
 
850
- #: inc/post-types.php:504 inc/taxonomies.php:358
851
  msgid "Hierarchical"
852
  msgstr "Hiyerarşik"
853
 
854
- #: inc/post-types.php:506
855
  msgid "Whether the post type can have parent-child relationships"
856
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
857
 
858
- #: inc/post-types.php:524 inc/taxonomies.php:418
859
  msgid "Rewrite"
860
  msgstr "Rewrite"
861
 
862
- #: inc/post-types.php:526
863
  #, fuzzy
864
  msgid "Whether or not WordPress should use rewrites for this post type"
865
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
866
 
867
- #: inc/post-types.php:537 inc/taxonomies.php:429
868
  msgid "Custom Rewrite Slug"
869
  msgstr "Özel Rewrite Slug"
870
 
871
- #: inc/post-types.php:538
872
  #, fuzzy
873
  msgid "(default: post type slug)"
874
  msgstr "(varsayılan: yazı türü adı)"
875
 
876
- #: inc/post-types.php:539
877
  #, fuzzy
878
  msgid "Custom post type slug to use instead of the default."
879
  msgstr "Özel slug yerine varsayılan kullanmak için."
880
 
881
- #: inc/post-types.php:556
882
  msgid "With Front"
883
  msgstr "Cephesinden"
884
 
885
- #: inc/post-types.php:558 inc/taxonomies.php:446
886
  msgid "Should the permastruct be prepended with the front base."
887
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
888
 
889
- #: inc/post-types.php:576 inc/taxonomies.php:392
890
  msgid "Query Var"
891
  msgstr "Sorgu Tanımı"
892
 
893
- #: inc/post-types.php:578
894
  #, fuzzy
895
  msgid "Sets the query_var key for this post type."
896
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
897
 
898
- #: inc/post-types.php:586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
899
  msgid "Menu Position"
900
  msgstr "Menü Pozisyonu"
901
 
902
- #: inc/post-types.php:587
903
  msgid ""
904
  "The position in the menu order the post type should appear. show_in_menu "
905
  "must be true."
@@ -907,7 +1088,7 @@ msgstr ""
907
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
908
  "gerekir."
909
 
910
- #: inc/post-types.php:588
911
  #, fuzzy
912
  msgid ""
913
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
@@ -918,17 +1099,17 @@ msgstr ""
918
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
919
  "bölümü\". Aralık 5 ile 100"
920
 
921
- #: inc/post-types.php:603
922
  msgid "Show in Menu"
923
  msgstr "Menüde Göster"
924
 
925
- #: inc/post-types.php:604
926
  #, fuzzy
927
  msgid ""
928
  "Whether to show the post type in the admin menu and where to show that menu."
929
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
930
 
931
- #: inc/post-types.php:605
932
  msgid ""
933
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
934
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -937,95 +1118,95 @@ msgstr ""
937
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
938
  "olacaktır."
939
 
940
- #: inc/post-types.php:631
941
  msgid "Top-level page file name to make post type a sub-menu of."
942
  msgstr ""
943
 
944
- #: inc/post-types.php:643
945
  msgid "Menu Icon"
946
  msgstr "Menü Simgesi"
947
 
948
- #: inc/post-types.php:644
949
  msgid "(Full URL for icon or Dashicon class)"
950
  msgstr ""
951
 
952
- #: inc/post-types.php:645
953
  #, fuzzy
954
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
955
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
956
 
957
- #: inc/post-types.php:658
958
  msgid "Title"
959
  msgstr "Başlık"
960
 
961
- #: inc/post-types.php:659
962
  msgid "Adds the title meta box when creating content for this custom post type"
963
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
964
 
965
- #: inc/post-types.php:673
966
  msgid "Editor"
967
  msgstr "Editör"
968
 
969
- #: inc/post-types.php:674
970
  msgid ""
971
  "Adds the content editor meta box when creating content for this custom post "
972
  "type"
973
  msgstr ""
974
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
975
 
976
- #: inc/post-types.php:688
977
  msgid "Excerpt"
978
  msgstr "Alıntı"
979
 
980
- #: inc/post-types.php:689
981
  msgid ""
982
  "Adds the excerpt meta box when creating content for this custom post type"
983
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
984
 
985
- #: inc/post-types.php:703
986
  msgid "Trackbacks"
987
  msgstr "Parçagönderimi"
988
 
989
- #: inc/post-types.php:704
990
  msgid ""
991
  "Adds the trackbacks meta box when creating content for this custom post type"
992
  msgstr ""
993
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
994
 
995
- #: inc/post-types.php:718
996
  msgid "Custom Fields"
997
  msgstr "Özel Alanlar"
998
 
999
- #: inc/post-types.php:719
1000
  msgid ""
1001
  "Adds the custom fields meta box when creating content for this custom post "
1002
  "type"
1003
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1004
 
1005
- #: inc/post-types.php:733
1006
  msgid "Comments"
1007
  msgstr "Yorumlar"
1008
 
1009
- #: inc/post-types.php:734
1010
  msgid ""
1011
  "Adds the comments meta box when creating content for this custom post type"
1012
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1013
 
1014
- #: inc/post-types.php:748
1015
  msgid "Revisions"
1016
  msgstr "Düzenlemeler"
1017
 
1018
- #: inc/post-types.php:749
1019
  msgid ""
1020
  "Adds the revisions meta box when creating content for this custom post type"
1021
  msgstr ""
1022
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1023
 
1024
- #: inc/post-types.php:763
1025
  msgid "Featured Image"
1026
  msgstr "Öne Çıkan Görüntü"
1027
 
1028
- #: inc/post-types.php:764
1029
  msgid ""
1030
  "Adds the featured image meta box when creating content for this custom post "
1031
  "type"
@@ -1033,20 +1214,20 @@ msgstr ""
1033
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1034
  "ekler"
1035
 
1036
- #: inc/post-types.php:778
1037
  msgid "Author"
1038
  msgstr "Yazar"
1039
 
1040
- #: inc/post-types.php:779
1041
  msgid ""
1042
  "Adds the author meta box when creating content for this custom post type"
1043
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1044
 
1045
- #: inc/post-types.php:793
1046
  msgid "Page Attributes"
1047
  msgstr "Sayfa Öznitelikleri"
1048
 
1049
- #: inc/post-types.php:794
1050
  msgid ""
1051
  "Adds the page attribute meta box when creating content for this custom post "
1052
  "type"
@@ -1054,75 +1235,75 @@ msgstr ""
1054
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1055
  "ekler "
1056
 
1057
- #: inc/post-types.php:808
1058
  msgid "Post Formats"
1059
  msgstr "Yazı Formatları"
1060
 
1061
- #: inc/post-types.php:809
1062
  msgid "Adds post format support"
1063
  msgstr "Bu Yazı format desteği ekler"
1064
 
1065
- #: inc/post-types.php:814
1066
  msgid "Use the option below to explicitly set \"supports\" to false."
1067
  msgstr ""
1068
 
1069
- #: inc/post-types.php:822
1070
  msgid "None"
1071
  msgstr ""
1072
 
1073
- #: inc/post-types.php:823
1074
  msgid "Remove all support features"
1075
  msgstr ""
1076
 
1077
- #: inc/post-types.php:829
1078
  #, fuzzy
1079
  msgid "Custom \"Supports\""
1080
  msgstr "Destekler"
1081
 
1082
- #: inc/post-types.php:830
1083
  msgid ""
1084
  "Use this input to register custom \"supports\" values, separated by commas."
1085
  msgstr ""
1086
 
1087
- #: inc/post-types.php:836
1088
  msgid "Provide custom support slugs here."
1089
  msgstr ""
1090
 
1091
- #: inc/post-types.php:842
1092
  msgid "Built-in Taxonomies"
1093
  msgstr "Dahili Sınıflandırmalar"
1094
 
1095
- #: inc/post-types.php:871 inc/taxonomies.php:172
1096
  #, fuzzy, php-format
1097
  msgid "Adds %s support"
1098
  msgstr "Bu Yazı format desteği ekler"
1099
 
1100
- #: inc/post-types.php:977
1101
  msgid "Please provide a post type to delete"
1102
  msgstr ""
1103
 
1104
- #: inc/post-types.php:1037
1105
  #, fuzzy
1106
  msgid "Please provide a post type name"
1107
  msgstr "(varsayılan: yazı türü adı)"
1108
 
1109
- #: inc/post-types.php:1061
1110
  #, fuzzy
1111
  msgid "Please do not use quotes in post type names or rewrite slugs"
1112
  msgstr ""
1113
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1114
 
1115
- #: inc/post-types.php:1068
1116
  #, php-format
1117
  msgid "Please choose a different post type name. %s is already registered."
1118
  msgstr ""
1119
 
1120
- #: inc/support.php:41
1121
  #, fuzzy
1122
  msgid "Custom Post Type UI Support"
1123
  msgstr "Özel Yazı Türleri KA"
1124
 
1125
- #: inc/support.php:43
1126
  #, fuzzy, php-format
1127
  msgid ""
1128
  "Please note that this plugin will NOT handle display of registered post "
@@ -1132,16 +1313,29 @@ msgstr ""
1132
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1133
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1134
 
1135
- #: inc/support.php:44
1136
  #, fuzzy
1137
  msgid "Support Forums"
1138
  msgstr "Destekler"
1139
 
1140
- #: inc/support.php:50
1141
  msgid "General"
1142
  msgstr ""
1143
 
1144
- #: inc/support.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
1145
  #, fuzzy
1146
  msgid ""
1147
  "I changed my custom post type name and now I can not get to my posts. How do "
@@ -1150,7 +1344,7 @@ msgstr ""
1150
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1151
  "gösterilmiyor</strong>"
1152
 
1153
- #: inc/support.php:54
1154
  #, fuzzy
1155
  msgid ""
1156
  "You can either change the custom post type name back to the original name or "
@@ -1159,13 +1353,13 @@ msgstr ""
1159
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1160
  "deneyebilirsiniz:"
1161
 
1162
- #: inc/support.php:59
1163
  msgid ""
1164
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1165
  "shown. How do I remove the duplicate?"
1166
  msgstr ""
1167
 
1168
- #: inc/support.php:60
1169
  msgid ""
1170
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1171
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1173,40 +1367,58 @@ msgid ""
1173
  "delete the previous version's entry."
1174
  msgstr ""
1175
 
1176
- #: inc/support.php:63
1177
  msgid ""
1178
  "I have added post thumbnail and/or post format support to my post type, but "
1179
  "those do not appear when adding a post type post."
1180
  msgstr ""
1181
 
1182
- #: inc/support.php:64
1183
  msgid ""
1184
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1185
  msgstr ""
1186
 
1187
- #: inc/support.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1188
  msgid "Front-end Display"
1189
  msgstr ""
1190
 
1191
- #: inc/support.php:72
1192
  msgid "What template files should I edit to alter my post type display?"
1193
  msgstr ""
1194
 
1195
- #: inc/support.php:73
1196
  #, php-format
1197
  msgid ""
1198
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1199
  "details about available templates."
1200
  msgstr ""
1201
 
1202
- #: inc/support.php:80
1203
  #, fuzzy
1204
  msgid "How do I display my custom post type on my site?"
1205
  msgstr ""
1206
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1207
  "strong>"
1208
 
1209
- #: inc/support.php:81
1210
  #, php-format
1211
  msgid ""
1212
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1214,13 +1426,13 @@ msgid ""
1214
  "should be something like \"http://www.mysite.com/post-type-slug\""
1215
  msgstr ""
1216
 
1217
- #: inc/support.php:87
1218
  msgid ""
1219
  "I have added categories and tags to my custom post type, but they do not "
1220
  "appear in the archives."
1221
  msgstr ""
1222
 
1223
- #: inc/support.php:88
1224
  #, php-format
1225
  msgid ""
1226
  "You will need to add your newly created post type to the types that the "
@@ -1228,85 +1440,85 @@ msgid ""
1228
  "that at %s"
1229
  msgstr ""
1230
 
1231
- #: inc/support.php:97
1232
  #, fuzzy
1233
  msgid "Advanced"
1234
  msgstr "Gelişmiş Ayarlar"
1235
 
1236
- #: inc/support.php:100
1237
  #, fuzzy
1238
  msgid "How do I add custom metaboxes to my post type?"
1239
  msgstr ""
1240
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1241
  "ekleyebilirsiniz?</strong>"
1242
 
1243
- #: inc/support.php:102
1244
  #, php-format
1245
  msgid ""
1246
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1247
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1248
  msgstr ""
1249
 
1250
- #: inc/support.php:108
1251
  msgid ""
1252
  "How do I add a newly registered taxonomy to a post type that already exists?"
1253
  msgstr ""
1254
 
1255
- #: inc/support.php:110
1256
  #, php-format
1257
  msgid "Check out the %s function for documentation and usage examples."
1258
  msgstr ""
1259
 
1260
- #: inc/support.php:116
1261
  msgid "Post relationships?"
1262
  msgstr ""
1263
 
1264
- #: inc/support.php:117
1265
  #, php-format
1266
  msgid ""
1267
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1268
  "plugin that should be a good start."
1269
  msgstr ""
1270
 
1271
- #: inc/support.php:126
1272
  msgid "Is there any function reference list?"
1273
  msgstr ""
1274
 
1275
- #: inc/support.php:127
1276
  #, php-format
1277
  msgid ""
1278
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1279
  "will be useful as they are attached to hooks."
1280
  msgstr ""
1281
 
1282
- #: inc/support.php:131
1283
  msgid ""
1284
  "How do I filter the \"enter title here\" text in the post editor screen?"
1285
  msgstr ""
1286
 
1287
- #: inc/support.php:132
1288
  msgid ""
1289
  "Change text inside the post/page editor title field. Should be able to adapt "
1290
  "as necessary."
1291
  msgstr ""
1292
 
1293
- #: inc/taxonomies.php:85
1294
  msgid ""
1295
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1296
  "registers a new taxonomy entry for your install."
1297
  msgstr ""
1298
 
1299
- #: inc/taxonomies.php:118
1300
  #, fuzzy
1301
  msgid "Taxonomy Slug"
1302
  msgstr "Sınıflandırma Adı"
1303
 
1304
- #: inc/taxonomies.php:119
1305
  #, fuzzy
1306
  msgid "(e.g. actor)"
1307
  msgstr "(örneğin: Aktör)"
1308
 
1309
- #: inc/taxonomies.php:120
1310
  #, fuzzy
1311
  msgid ""
1312
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
@@ -1315,48 +1527,54 @@ msgstr ""
1315
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1316
  "tatlı olmalıdır"
1317
 
1318
- #: inc/taxonomies.php:128 inc/taxonomies.php:210
1319
  msgid "(e.g. Actors)"
1320
  msgstr "(örneğin: Aktörler)"
1321
 
1322
- #: inc/taxonomies.php:130
1323
  #, fuzzy
1324
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1325
  msgstr ""
1326
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1327
  "menüsünde kullanılan."
1328
 
1329
- #: inc/taxonomies.php:137
1330
  msgid "(e.g. Actor)"
1331
  msgstr "(örneğin: Aktör)"
1332
 
1333
- #: inc/taxonomies.php:139
1334
  msgid ""
1335
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1336
  msgstr ""
1337
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1338
  "kullanır."
1339
 
1340
- #: inc/taxonomies.php:142
 
 
 
 
 
 
1341
  msgid "Attach to Post Type"
1342
  msgstr "Yazı Türüne ekle"
1343
 
1344
- #: inc/taxonomies.php:181
1345
  #, fuzzy
1346
  msgid "Save Taxonomy"
1347
  msgstr "Özel Sınıflandırma Kaydet"
1348
 
1349
- #: inc/taxonomies.php:182
1350
  #, fuzzy
1351
  msgid "Delete Taxonomy"
1352
  msgstr "Özel Sınıflandırma Oluştur"
1353
 
1354
- #: inc/taxonomies.php:184
1355
  #, fuzzy
1356
  msgid "Add Taxonomy"
1357
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1358
 
1359
- #: inc/taxonomies.php:193
1360
  #, fuzzy, php-format
1361
  msgid ""
1362
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1366,7 +1584,7 @@ msgstr ""
1366
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1367
  "boşluk yerine alt çizgi olmalıdır."
1368
 
1369
- #: inc/taxonomies.php:194
1370
  #, fuzzy, php-format
1371
  msgid ""
1372
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1378,7 +1596,7 @@ msgstr ""
1378
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1379
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1380
 
1381
- #: inc/taxonomies.php:195
1382
  #, fuzzy, php-format
1383
  msgid ""
1384
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1389,11 +1607,11 @@ msgstr ""
1389
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1390
  "içerikleri kalacaktır."
1391
 
1392
- #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1393
- #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1394
- #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1395
- #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1396
- #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1397
  #, fuzzy
1398
  msgid ""
1399
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
@@ -1401,200 +1619,208 @@ msgstr ""
1401
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1402
  "menüsünde kullanılan."
1403
 
1404
- #: inc/taxonomies.php:219
1405
  msgid "(e.g. All Actors)"
1406
  msgstr "(örneğin: Bütün Aktörler)"
1407
 
1408
- #: inc/taxonomies.php:228
1409
  msgid "(e.g. Edit Actor)"
1410
  msgstr "(örneğin: Aktör Düzenle)"
1411
 
1412
- #: inc/taxonomies.php:237
1413
  #, fuzzy
1414
  msgid "(e.g. View Actor)"
1415
  msgstr "(örneğin: Aktör)"
1416
 
1417
- #: inc/taxonomies.php:246
1418
  #, fuzzy
1419
  msgid "(e.g. Update Actor Name)"
1420
  msgstr "(örneğin: Aktörü Güncelle)"
1421
 
1422
- #: inc/taxonomies.php:247
1423
  #, fuzzy
1424
  msgid "Update Item Name"
1425
  msgstr "Eleman Güncelle"
1426
 
1427
- #: inc/taxonomies.php:255
1428
  msgid "(e.g. Add New Actor)"
1429
  msgstr "(örneğin: Yeni Aktör Ekle)"
1430
 
1431
- #: inc/taxonomies.php:264
1432
  msgid "(e.g. New Actor Name)"
1433
  msgstr "(örneğin: Yeni Aktör Adı)"
1434
 
1435
- #: inc/taxonomies.php:265
1436
  msgid "New Item Name"
1437
  msgstr "Yeni Eleman Adı"
1438
 
1439
- #: inc/taxonomies.php:273
1440
  msgid "(e.g. Parent Actor)"
1441
  msgstr "(örneğin: Temel Aktör)"
1442
 
1443
- #: inc/taxonomies.php:274
1444
  msgid "Parent Item"
1445
  msgstr "Temel Eleman"
1446
 
1447
- #: inc/taxonomies.php:282
1448
  msgid "(e.g. Parent Actor:)"
1449
  msgstr "(örneğin: Temel Aktör:)"
1450
 
1451
- #: inc/taxonomies.php:283
1452
  msgid "Parent Item Colon"
1453
  msgstr "Temel Eleman Kolon"
1454
 
1455
- #: inc/taxonomies.php:291
1456
  msgid "(e.g. Search Actors)"
1457
  msgstr "(örneğin: Aktörleri Ara)"
1458
 
1459
- #: inc/taxonomies.php:292
1460
  msgid "Search Items"
1461
  msgstr "Eleman Ara"
1462
 
1463
- #: inc/taxonomies.php:300
1464
  msgid "(e.g. Popular Actors)"
1465
  msgstr "(örneğin: Popüler Aktörler)"
1466
 
1467
- #: inc/taxonomies.php:301
1468
  msgid "Popular Items"
1469
  msgstr "Popüler Elemanlar"
1470
 
1471
- #: inc/taxonomies.php:309
1472
- msgid "(e.g. Separate actors with commas)"
 
1473
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1474
 
1475
- #: inc/taxonomies.php:310
1476
  msgid "Separate Items with Commas"
1477
  msgstr "Elemanları virgül ile ayır"
1478
 
1479
- #: inc/taxonomies.php:318
1480
- msgid "(e.g. Add or remove actors)"
 
1481
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1482
 
1483
- #: inc/taxonomies.php:319
1484
  msgid "Add or Remove Items"
1485
  msgstr "Elemanları Ekle veya Çıkar "
1486
 
1487
- #: inc/taxonomies.php:327
1488
- msgid "(e.g. Choose from the most used actors)"
 
1489
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1490
 
1491
- #: inc/taxonomies.php:328
1492
  msgid "Choose From Most Used"
1493
  msgstr "Çok Kullanılandan Seç"
1494
 
1495
- #: inc/taxonomies.php:336
1496
  #, fuzzy
1497
- msgid "(e.g. No actors found)"
1498
  msgstr "(örneğin: Filmler bulunamadı)"
1499
 
1500
- #: inc/taxonomies.php:337
1501
  #, fuzzy
1502
  msgid "Not found"
1503
  msgstr "Bulunamadı"
1504
 
1505
- #: inc/taxonomies.php:360
1506
  msgid "Whether the taxonomy can have parent-child relationships"
1507
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1508
 
1509
- #: inc/taxonomies.php:377
1510
  #, fuzzy
1511
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1512
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1513
 
1514
- #: inc/taxonomies.php:394
1515
  #, fuzzy
1516
  msgid "Sets the query_var key for this taxonomy."
1517
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1518
 
1519
- #: inc/taxonomies.php:402
1520
- msgid "(default: none). Query Var needs to be true to use."
1521
  msgstr ""
1522
 
1523
- #: inc/taxonomies.php:403
1524
  msgid "Custom Query Var String"
1525
  msgstr ""
1526
 
1527
- #: inc/taxonomies.php:404
1528
  msgid "Sets a custom query_var slug for this taxonomy."
1529
  msgstr ""
1530
 
1531
- #: inc/taxonomies.php:420
1532
  #, fuzzy
1533
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1534
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1535
 
1536
- #: inc/taxonomies.php:428
1537
  msgid "(default: taxonomy name)"
1538
  msgstr "(varsayılan: sınıflandırma adı)"
1539
 
1540
- #: inc/taxonomies.php:430
1541
  #, fuzzy
1542
  msgid "Custom taxonomy rewrite slug."
1543
  msgstr "Özel Sınıflandırma Rewrite Slug"
1544
 
1545
- #: inc/taxonomies.php:444
1546
  #, fuzzy
1547
  msgid "Rewrite With Front"
1548
  msgstr "Cephesinden"
1549
 
1550
- #: inc/taxonomies.php:445
1551
  #, fuzzy
1552
  msgid "(default: true)"
1553
  msgstr "(varsayılan: Doğru)"
1554
 
1555
- #: inc/taxonomies.php:461
1556
  #, fuzzy
1557
  msgid "Rewrite Hierarchical"
1558
  msgstr "Hiyerarşik"
1559
 
1560
- #: inc/taxonomies.php:462
1561
  #, fuzzy
1562
  msgid "(default: false)"
1563
  msgstr "(varsayılan:Yanlış)"
1564
 
1565
- #: inc/taxonomies.php:463
1566
  #, fuzzy
1567
  msgid "Should the permastruct allow hierarchical urls."
1568
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1569
 
1570
- #: inc/taxonomies.php:478
1571
  msgid "Show Admin Column"
1572
  msgstr "Yönetici Sütunu Göster"
1573
 
1574
- #: inc/taxonomies.php:480
1575
  msgid ""
1576
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1577
  "types."
1578
  msgstr ""
1579
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1580
 
1581
- #: inc/taxonomies.php:585
 
 
 
 
 
1582
  msgid "Please provide a taxonomy to delete"
1583
  msgstr ""
1584
 
1585
- #: inc/taxonomies.php:636
1586
  #, fuzzy
1587
  msgid "Please provide a taxonomy name"
1588
  msgstr "(varsayılan: sınıflandırma adı)"
1589
 
1590
- #: inc/taxonomies.php:652
1591
  #, fuzzy
1592
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1593
  msgstr ""
1594
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1595
  "kullanmayınız."
1596
 
1597
- #: inc/taxonomies.php:658
1598
  #, php-format
1599
  msgid "Please choose a different taxonomy name. %s is already used."
1600
  msgstr ""
@@ -1616,6 +1842,14 @@ msgstr ""
1616
  msgid "http://webdevstudios.com/"
1617
  msgstr ""
1618
 
 
 
 
 
 
 
 
 
1619
  #~ msgid "Whether posts of this type should be shown in the admin UI"
1620
  #~ msgstr ""
1621
  #~ "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
@@ -1634,10 +1868,6 @@ msgstr ""
1634
  #~ msgid "Edit Taxonomy"
1635
  #~ msgstr "Dahili Sınıflandırmalar"
1636
 
1637
- #, fuzzy
1638
- #~ msgid "Custom Query Var Slug"
1639
- #~ msgstr "Özel Rewrite Slug"
1640
-
1641
  #, fuzzy
1642
  #~ msgid "URL or Dashicon value for image to be used as menu icon."
1643
  #~ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-12-13 00:08-0600\n"
6
+ "PO-Revision-Date: 2015-12-13 00:08-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: TrStar <trstar@gmail.com>\n"
9
  "Language: tr_TR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
+ #: classes/class.cptui_debug_info.php:7
26
+ msgid ""
27
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
28
+ "requested to send the information below to the plugin developer. Simply "
29
+ "insert the email they provided in the input field at the bottom and click "
30
+ "the \"Send debug info\" button. Only the data below will be sent to them."
31
+ msgstr ""
32
+
33
+ #: classes/class.cptui_debug_info.php:186
34
+ #, php-format
35
+ msgid "CPTUI debug information for %s"
36
+ msgstr ""
37
+
38
+ #: custom-post-type-ui.php:61
39
  msgid "Custom Post Types"
40
  msgstr "Özel Yazı Türleri"
41
 
42
+ #: custom-post-type-ui.php:61
43
  msgid "CPT UI"
44
  msgstr "CPT KA"
45
 
46
+ #: custom-post-type-ui.php:62 inc/listings.php:155
47
  #, fuzzy
48
  msgid "Add/Edit Post Types"
49
  msgstr "Ek Yazı Türleri"
50
 
51
+ #: custom-post-type-ui.php:63 inc/listings.php:287
52
  #, fuzzy
53
  msgid "Add/Edit Taxonomies"
54
  msgstr "Dahili Sınıflandırmalar"
55
 
56
+ #: custom-post-type-ui.php:64
57
  msgid "Registered Types and Taxes"
58
  msgstr ""
59
 
60
+ #: custom-post-type-ui.php:64
61
  msgid "Registered Types/Taxes"
62
  msgstr ""
63
 
64
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
65
  msgid "Import/Export"
66
  msgstr ""
67
 
68
+ #: custom-post-type-ui.php:66
69
  #, fuzzy
70
  msgid "Help/Support"
71
  msgstr "Eklentiye Destek, Yardım!"
72
 
73
+ #: custom-post-type-ui.php:70
74
  #, fuzzy
75
  msgid "About CPT UI"
76
  msgstr "CPT KA"
77
 
78
  #. Plugin Name of the plugin/theme
79
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
80
  msgid "Custom Post Type UI"
81
  msgstr "Özel Yazı Türleri KA"
82
 
83
+ #: custom-post-type-ui.php:385
84
  msgid ""
85
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
86
  "with our plugin provides efficiency and speed in creating post types and "
87
  "taxonomies, to better organize your content, without having to touch code."
88
  msgstr ""
89
 
90
+ #: custom-post-type-ui.php:387
91
+ #, php-format
92
+ msgid "What's new in version %s"
93
+ msgstr ""
94
+
95
+ #: custom-post-type-ui.php:392
96
+ msgid "Updated internationalization"
97
+ msgstr ""
98
 
99
+ #: custom-post-type-ui.php:393
100
  msgid ""
101
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
102
+ "to help aid in translating Custom Post Type UI"
 
 
103
  msgstr ""
104
 
105
+ #: custom-post-type-ui.php:396
106
+ msgid "Debugging information"
107
  msgstr ""
108
 
109
+ #: custom-post-type-ui.php:397
110
  msgid ""
111
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
112
+ "debugging issues with Custom Post Type UI."
 
113
  msgstr ""
114
 
115
+ #: custom-post-type-ui.php:400
116
+ msgid "Improved accessibility"
117
+ msgstr ""
118
+
119
+ #: custom-post-type-ui.php:401
120
+ msgid ""
121
+ "A lot of work was done in the areas of accessibility to help aid users who "
122
+ "need it. If you have feedback on where it could be further improved, let us "
123
+ "know."
124
+ msgstr ""
125
+
126
+ #: custom-post-type-ui.php:404
127
+ msgid "WP REST API support"
128
+ msgstr ""
129
+
130
+ #: custom-post-type-ui.php:405
131
+ msgid ""
132
+ "We now have support for the required fields for the WP REST API. Now you can "
133
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
134
+ "API lists."
135
+ msgstr ""
136
+
137
+ #: custom-post-type-ui.php:408
138
+ msgid "More parameter support"
139
+ msgstr ""
140
+
141
+ #: custom-post-type-ui.php:409
142
+ msgid ""
143
+ "We have added more parameters for greater customization of your post type "
144
+ "and taxonomy settings."
145
+ msgstr ""
146
+
147
+ #: custom-post-type-ui.php:412
148
+ msgid "New individual \"Get Code\" sections"
149
+ msgstr ""
150
+
151
+ #: custom-post-type-ui.php:413
152
+ msgid ""
153
+ "The \"Get Code\" area now has support for copy/paste of individual post "
154
+ "types and taxonomies."
155
+ msgstr ""
156
+
157
+ #: custom-post-type-ui.php:416
158
  #, fuzzy
159
+ msgid "Template hierarchy reference"
160
+ msgstr "Hiyerarşik"
161
 
162
+ #: custom-post-type-ui.php:417
163
  msgid ""
164
+ "To help aid your development with post types and taxonomies, we have added a "
165
+ "quick reference list of common template files you can use in your theme. "
166
+ "They will be listed on the \"Registered Types/Taxes\" screen."
167
  msgstr ""
168
 
169
+ #: custom-post-type-ui.php:422
170
  msgid "Help Support This Plugin!"
171
  msgstr "Eklentiye Destek, Yardım!"
172
 
173
+ #: custom-post-type-ui.php:426
174
  #, fuzzy
175
  msgid "Professional WordPress<br />Third Edition"
176
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
177
 
178
+ #: custom-post-type-ui.php:428
179
+ #, fuzzy
180
+ msgid "Professional WordPress Design and Development book cover."
181
+ msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
182
+
183
+ #: custom-post-type-ui.php:431
184
  #, fuzzy
185
  msgid ""
186
  "The leading book on WordPress design and development! Brand new third "
189
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
190
  "sürüm !"
191
 
192
+ #: custom-post-type-ui.php:434
193
  msgid "Professional WordPress<br />Plugin Development"
194
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
195
 
196
+ #: custom-post-type-ui.php:436
197
+ #, fuzzy
198
+ msgid "Professional WordPress Pluing Development book cover."
199
+ msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
200
+
201
+ #: custom-post-type-ui.php:439
202
  msgid "Highest rated WordPress development book on Amazon!"
203
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
204
 
205
+ #: custom-post-type-ui.php:442
206
  msgid "PayPal Donation"
207
  msgstr "PayPal Bağış"
208
 
209
+ #: custom-post-type-ui.php:446
210
  msgid "PayPal - The safer, easier way to pay online!"
211
  msgstr ""
212
 
213
+ #: custom-post-type-ui.php:449
214
  #, fuzzy
215
  msgid "Please donate to the development of Custom Post Type UI:"
216
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
217
 
218
+ #: custom-post-type-ui.php:475
219
  #, php-format
220
  msgid "%s version %s by %s"
221
  msgstr ""
222
 
223
+ #: custom-post-type-ui.php:486
224
  msgid "Please Report Bugs"
225
  msgstr "Lütfen Hataları Bildirin"
226
 
227
+ #: custom-post-type-ui.php:489
228
  msgid "Follow on Twitter:"
229
  msgstr "Twitterden takip et:"
230
 
231
+ #: custom-post-type-ui.php:553
232
  msgid "Manage Taxonomies"
233
  msgstr "Sınıflandırmaları Yönet"
234
 
235
+ #: custom-post-type-ui.php:557
236
  msgid "Manage Post Types"
237
  msgstr "Yazı Türlerini Yönet"
238
 
239
+ #: custom-post-type-ui.php:585
240
  #, fuzzy
241
  msgid "Add New Post Type"
242
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
243
 
244
+ #: custom-post-type-ui.php:588
245
  #, fuzzy
246
  msgid "Edit Post Types"
247
  msgstr "Özel Yazı Türleri"
248
 
249
+ #: custom-post-type-ui.php:592
250
  #, fuzzy
251
  msgid "Add New Taxonomy"
252
  msgstr "Sınıflandırma Adı"
253
 
254
+ #: custom-post-type-ui.php:595
255
  #, fuzzy
256
  msgid "Edit Taxonomies"
257
  msgstr "Dahili Sınıflandırmalar"
258
 
259
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
 
260
  #, fuzzy
261
  msgid "Post Types"
262
  msgstr "Özel Yazı Türleri"
263
 
264
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
265
+ #: inc/listings.php:161
266
  #, fuzzy
267
  msgid "Taxonomies"
268
  msgstr "Sınıflandırmaları Yönet"
269
 
270
+ #: custom-post-type-ui.php:601
271
  msgid "Get Code"
272
  msgstr "Kodu Alın"
273
 
274
+ #: custom-post-type-ui.php:602
275
+ msgid "Debug Info"
276
+ msgstr ""
277
+
278
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
279
+ #: inc/post-types.php:420 inc/taxonomies.php:402
280
  msgid "Settings"
281
  msgstr ""
282
 
283
+ #: custom-post-type-ui.php:685
284
  msgid "Help"
285
  msgstr ""
286
 
287
+ #: custom-post-type-ui.php:714
288
  #, php-format
289
  msgid "%s has been successfully added"
290
  msgstr ""
291
 
292
+ #: custom-post-type-ui.php:716
293
  #, php-format
294
  msgid "%s has failed to be added"
295
  msgstr ""
296
 
297
+ #: custom-post-type-ui.php:720
298
  #, php-format
299
  msgid "%s has been successfully updated"
300
  msgstr ""
301
 
302
+ #: custom-post-type-ui.php:722
303
  #, php-format
304
  msgid "%s has failed to be updated"
305
  msgstr ""
306
 
307
+ #: custom-post-type-ui.php:726
308
  #, php-format
309
  msgid "%s has been successfully deleted"
310
  msgstr ""
311
 
312
+ #: custom-post-type-ui.php:728
313
  #, php-format
314
  msgid "%s has failed to be deleted"
315
  msgstr ""
316
 
317
+ #: custom-post-type-ui.php:732
318
  #, php-format
319
  msgid "%s has been successfully imported"
320
  msgstr ""
321
 
322
+ #: custom-post-type-ui.php:734
323
  #, php-format
324
  msgid "%s has failed to be imported"
325
  msgstr ""
326
 
327
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
328
  #, fuzzy, php-format
329
  msgid "Add new %s"
330
  msgstr "Yeni Ekle"
331
 
332
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
333
+ #: inc/listings.php:220
334
  #, fuzzy, php-format
335
  msgid "Edit %s"
336
  msgstr "Düzenle"
337
 
338
+ #: custom-post-type-ui.php:819
339
  #, php-format
340
  msgid "New %s"
341
  msgstr ""
342
 
343
+ #: custom-post-type-ui.php:820
344
  #, fuzzy, php-format
345
  msgid "View %s"
346
  msgstr "Göster"
347
 
348
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
349
  #, fuzzy, php-format
350
  msgid "All %s"
351
  msgstr "Bütün Elemanlar"
352
 
353
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
354
  #, fuzzy, php-format
355
  msgid "Search %s"
356
  msgstr "Eleman Ara"
357
 
358
+ #: custom-post-type-ui.php:823
359
  #, fuzzy, php-format
360
  msgid "No %s found."
361
  msgstr "Bulunamadı"
362
 
363
+ #: custom-post-type-ui.php:824
364
  #, fuzzy, php-format
365
  msgid "No %s found in trash."
366
  msgstr "Çöpte Bulunamadı"
367
 
368
+ #: custom-post-type-ui.php:828
369
  #, fuzzy, php-format
370
  msgid "Popular %s"
371
  msgstr "Popüler Elemanlar"
372
 
373
+ #: custom-post-type-ui.php:830
374
  #, fuzzy, php-format
375
  msgid "Parent %s"
376
  msgstr "Temel"
377
 
378
+ #: custom-post-type-ui.php:831
379
  #, fuzzy, php-format
380
  msgid "Parent %s:"
381
  msgstr "Temel"
382
 
383
+ #: custom-post-type-ui.php:833
384
  #, php-format
385
  msgid "Update %s"
386
  msgstr ""
387
 
388
+ #: custom-post-type-ui.php:835
389
  #, fuzzy, php-format
390
  msgid "New %s name"
391
  msgstr "Yeni Eleman Adı"
392
 
393
+ #: custom-post-type-ui.php:836
394
  #, fuzzy, php-format
395
  msgid "Separate %s with commas"
396
  msgstr "Elemanları virgül ile ayır"
397
 
398
+ #: custom-post-type-ui.php:837
399
  #, fuzzy, php-format
400
  msgid "Add or remove %s"
401
  msgstr "Elemanları Ekle veya Çıkar "
402
 
403
+ #: custom-post-type-ui.php:838
404
  #, fuzzy, php-format
405
  msgid "Choose from the most used %s"
406
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
407
 
408
+ #: inc/import_export.php:77
409
+ msgid "No taxonomies to display at this time"
410
+ msgstr ""
411
+
412
+ #: inc/import_export.php:184
413
+ msgid "No post types to display at this time"
414
+ msgstr ""
415
+
416
+ #: inc/import_export.php:372
417
+ #, fuzzy
418
+ msgid "Post types"
419
+ msgstr "Özel Yazı Türleri"
420
+
421
+ #: inc/import_export.php:404
422
  msgid ""
423
  "If you are wanting to migrate registered post types or taxonomies from this "
424
  "site to another, that will also use Custom Post Type UI, use the import and "
426
  "the information in the \"Get Code\" tab."
427
  msgstr ""
428
 
429
+ #: inc/import_export.php:407
430
  msgid "NOTE"
431
  msgstr ""
432
 
433
+ #: inc/import_export.php:408
434
+ msgid ""
435
+ "This will not export the associated posts or taxonomy terms, just the "
436
+ "settings."
437
  msgstr ""
438
 
439
+ #: inc/import_export.php:415
440
  #, fuzzy
441
  msgid "Import Post Types"
442
  msgstr "Özel Yazı Türleri"
443
 
444
+ #: inc/import_export.php:419 inc/import_export.php:459
445
  msgid "Paste content here."
446
  msgstr ""
447
 
448
+ #: inc/import_export.php:422 inc/import_export.php:462
449
  msgid "Note:"
450
  msgstr ""
451
 
452
+ #: inc/import_export.php:422 inc/import_export.php:462
453
  msgid "Importing will overwrite previous registered settings."
454
  msgstr ""
455
 
456
+ #: inc/import_export.php:426
457
  msgid ""
458
  "To import post types from a different WordPress site, paste the exported "
459
  "content from that site and click the \"Import\" button."
460
  msgstr ""
461
 
462
+ #: inc/import_export.php:430 inc/import_export.php:470
463
  msgid "Import"
464
  msgstr ""
465
 
466
+ #: inc/import_export.php:435
467
  #, fuzzy
468
  msgid "Export Post Types"
469
  msgstr "Özel Yazı Türleri"
470
 
471
+ #: inc/import_export.php:442
472
  msgid "No post types registered yet."
473
  msgstr ""
474
 
475
+ #: inc/import_export.php:445 inc/import_export.php:485
476
  msgid ""
477
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
478
  "(Mac)."
479
  msgstr ""
480
 
481
+ #: inc/import_export.php:448
482
  msgid ""
483
  "Use the content above to import current post types into a different "
484
  "WordPress site. You can also use this to simply back up your post type "
485
  "settings."
486
  msgstr ""
487
 
488
+ #: inc/import_export.php:455
489
  #, fuzzy
490
  msgid "Import Taxonomies"
491
  msgstr "Sınıflandırmaları Yönet"
492
 
493
+ #: inc/import_export.php:466
494
  msgid ""
495
  "To import taxonomies from a different WordPress site, paste the exported "
496
  "content from that site and click the \"Import\" button."
497
  msgstr ""
498
 
499
+ #: inc/import_export.php:475
500
  #, fuzzy
501
  msgid "Export Taxonomies"
502
  msgstr "Sınıflandırmaları Yönet"
503
 
504
+ #: inc/import_export.php:482
505
  msgid "No taxonomies registered yet."
506
  msgstr ""
507
 
508
+ #: inc/import_export.php:488
509
  msgid ""
510
  "Use the content above to import current taxonomies into a different "
511
  "WordPress site. You can also use this to simply back up your taxonomy "
512
  "settings."
513
  msgstr ""
514
 
515
+ #: inc/import_export.php:499
516
  #, fuzzy
517
  msgid "Get Post Type and Taxonomy Code"
518
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
519
 
520
+ #: inc/import_export.php:501
521
  #, fuzzy
522
  msgid "All CPT UI Post Types"
523
  msgstr "Özel Yazı Türleri"
524
 
525
+ #: inc/import_export.php:504 inc/import_export.php:513
526
+ #: inc/import_export.php:521 inc/import_export.php:530
527
  msgid "Copy/paste the code below into your functions.php file."
528
  msgstr ""
529
 
530
+ #: inc/import_export.php:512
531
+ #, fuzzy, php-format
532
+ msgid "%s Post Type"
533
+ msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
534
+
535
+ #: inc/import_export.php:518
536
  #, fuzzy
537
  msgid "All CPT UI Taxonomies"
538
  msgstr "Dahili Sınıflandırmalar"
539
 
540
+ #: inc/import_export.php:529
541
+ #, fuzzy, php-format
542
+ msgid "%s Taxonomy"
543
+ msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
544
 
545
+ #: inc/import_export.php:549
546
+ msgid "Please provide an email address to send debug information to: "
547
  msgstr ""
548
 
549
+ #: inc/import_export.php:551
550
+ msgid "Send debug info"
551
+ msgstr ""
 
552
 
553
  #: inc/listings.php:10
554
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
555
  msgstr ""
556
 
557
+ #: inc/listings.php:16 inc/listings.php:164
558
  #, php-format
559
  msgid "Total count: %d"
560
  msgstr ""
561
 
562
+ #: inc/listings.php:21
563
  #, fuzzy
564
  msgid "Post Type"
565
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
566
 
567
+ #: inc/listings.php:23 inc/post-types.php:754
568
  msgid "Supports"
569
  msgstr "Destekler"
570
 
571
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
572
+ #: inc/taxonomies.php:260
573
  #, fuzzy
574
  msgid "Labels"
575
  msgstr "Etiket"
576
 
577
+ #: inc/listings.php:26 inc/listings.php:173
578
+ #, fuzzy
579
+ msgid "Template Hierarchy"
580
+ msgstr "Hiyerarşik"
581
 
582
+ #: inc/listings.php:81
583
  msgid "View frontend archive"
584
  msgstr ""
585
 
586
+ #: inc/listings.php:114 inc/listings.php:249
587
  #, fuzzy
588
  msgid "No custom labels to display"
589
  msgstr "Özel Yazı Türleri"
590
 
591
+ #: inc/listings.php:119
592
+ msgid "Archives file name examples."
593
+ msgstr ""
594
+
595
+ #: inc/listings.php:125
596
+ msgid "Single Posts file name examples."
597
+ msgstr ""
598
+
599
+ #: inc/listings.php:134 inc/listings.php:267
600
+ msgid "Template hierarchy Theme Handbook"
601
+ msgstr ""
602
+
603
+ #: inc/listings.php:152
604
+ #, php-format
605
+ msgid "No post types registered for display. Visit %s to get started."
606
+ msgstr ""
607
+
608
+ #: inc/listings.php:169
609
  #, fuzzy
610
  msgid "Taxonomy"
611
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
612
 
613
+ #: inc/listings.php:254
614
+ #, fuzzy
615
+ msgid "Archives"
616
+ msgstr "Arşivlenebilir mi?"
617
+
618
+ #: inc/listings.php:263
619
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
620
+ msgstr ""
621
+
622
+ #: inc/listings.php:284
623
+ #, php-format
624
+ msgid "No taxonomies registered for display. Visit %s to get started."
625
+ msgstr ""
626
+
627
+ #: inc/post-types.php:34 inc/taxonomies.php:29
628
  msgid "Are you sure you want to delete this?"
629
  msgstr ""
630
 
631
+ #: inc/post-types.php:93
632
  msgid ""
633
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
634
  "registers a new post type entry for your install."
635
  msgstr ""
636
 
637
+ #: inc/post-types.php:94
638
  msgid ""
639
  "Use appropriate checkbox above save/delete buttons if you wish to change "
640
  "slugs and update post types for existing posts."
641
  msgstr ""
642
 
643
+ #: inc/post-types.php:95 inc/taxonomies.php:90
644
  msgid "Select: "
645
  msgstr ""
646
 
647
+ #: inc/post-types.php:107 inc/taxonomies.php:102
648
  msgid "Select"
649
  msgstr ""
650
 
651
+ #: inc/post-types.php:137
652
  #, fuzzy
653
  msgid "Post Type Slug"
654
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
655
 
656
+ #: inc/post-types.php:138
657
  msgid "(e.g. movie)"
658
  msgstr "(örnek: film)"
659
 
660
+ #: inc/post-types.php:139
661
  #, fuzzy
662
  msgid ""
663
  "The post type name. Used to retrieve custom post type content. Should be "
666
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
667
  "kullanılacaktır."
668
 
669
+ #: inc/post-types.php:150 inc/taxonomies.php:140
670
  #, fuzzy
671
  msgid "Plural Label"
672
  msgstr "Tekil Etiket"
673
 
674
+ #: inc/post-types.php:151
675
  msgid "(e.g. Movies)"
676
  msgstr "(örneğin: Filmler)"
677
 
678
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
679
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
680
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
681
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
682
+ #: inc/post-types.php:411
683
  #, fuzzy
684
  msgid "Post type label. Used in the admin menu for displaying post types."
685
  msgstr ""
686
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
687
  "kullanılacak."
688
 
689
+ #: inc/post-types.php:162 inc/taxonomies.php:149
690
  msgid "Singular Label"
691
  msgstr "Tekil Etiket"
692
 
693
+ #: inc/post-types.php:163
694
  msgid "(e.g. Movie)"
695
  msgstr "(örneğin: Film)"
696
 
697
+ #: inc/post-types.php:164
698
  #, fuzzy
699
  msgid ""
700
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
703
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
704
  "kullanacak."
705
 
706
+ #: inc/post-types.php:180 inc/taxonomies.php:166
707
  msgid "Description"
708
  msgstr "Açıklama"
709
 
710
+ #: inc/post-types.php:181
711
  #, fuzzy
712
  msgid ""
713
  "Custom Post Type Description. Describe what your custom post type is used "
715
  msgstr ""
716
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
717
 
718
+ #: inc/post-types.php:193
719
  msgid "Migrate posts to newly renamed post type?"
720
  msgstr ""
721
 
722
+ #: inc/post-types.php:194
723
  msgid "Check this to migrate posts if and when renaming your post type."
724
  msgstr ""
725
 
726
+ #: inc/post-types.php:213
727
  #, fuzzy
728
  msgid "Save Post Type"
729
  msgstr "Özel Yazı Türü Kaydet"
730
 
731
+ #: inc/post-types.php:224
732
  #, fuzzy
733
  msgid "Delete Post Type"
734
  msgstr "Ek Yazı Türleri"
735
 
736
+ #: inc/post-types.php:236
737
  #, fuzzy
738
  msgid "Add Post Type"
739
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
740
 
741
+ #: inc/post-types.php:247 inc/taxonomies.php:249
742
  msgid "Starter Notes"
743
  msgstr ""
744
 
745
+ #: inc/post-types.php:250
746
  #, fuzzy, php-format
747
  msgid ""
748
  "Post Type names should have %smax 20 characters%s, and only contain "
753
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
754
  "post, sayfa, ek, revizyon, nav_menu_item."
755
 
756
+ #: inc/post-types.php:251
757
  #, fuzzy, php-format
758
  msgid ""
759
  "If you are unfamiliar with the advanced post type settings, just fill in the "
765
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
766
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
767
 
768
+ #: inc/post-types.php:252
769
  #, fuzzy, php-format
770
  msgid ""
771
  "Deleting custom post types will %sNOT%s delete any content into the database "
776
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
777
  "veritabanında olacaktır."
778
 
779
+ #: inc/post-types.php:266 inc/taxonomies.php:270
780
  msgid "Menu Name"
781
  msgstr "Menü Adı"
782
 
783
+ #: inc/post-types.php:267
784
  msgid "Custom menu name for your custom post type."
785
  msgstr "Özel yazı türü için özel menü adı."
786
 
787
+ #: inc/post-types.php:271
788
  msgid "(e.g. My Movies)"
789
  msgstr "(örneğin: Benim Filmlerim)"
790
 
791
+ #: inc/post-types.php:278 inc/taxonomies.php:279
792
  msgid "All Items"
793
  msgstr "Bütün Elemanlar"
794
 
795
+ #: inc/post-types.php:283
796
  #, fuzzy
797
  msgid "(e.g. All Movies)"
798
  msgstr "(örneğin: Filmler)"
799
 
800
+ #: inc/post-types.php:290
801
  msgid "Add New"
802
  msgstr "Yeni Ekle"
803
 
804
+ #: inc/post-types.php:295
805
  msgid "(e.g. Add New)"
806
  msgstr "(örneğin: Yeni Ekle)"
807
 
808
+ #: inc/post-types.php:302 inc/taxonomies.php:315
809
  msgid "Add New Item"
810
  msgstr "Yeni Eleman Ekle"
811
 
812
+ #: inc/post-types.php:307
813
  msgid "(e.g. Add New Movie)"
814
  msgstr "(örneğin: Yeni Film ekle)"
815
 
816
+ #: inc/post-types.php:314
817
+ msgid "Edit"
818
+ msgstr "Düzenle"
819
+
820
+ #: inc/post-types.php:319
821
  msgid "(e.g. Edit)"
822
  msgstr "(örneğin: Düzenle)"
823
 
824
+ #: inc/post-types.php:326 inc/taxonomies.php:288
825
  msgid "Edit Item"
826
  msgstr "Eleman Düzenle"
827
 
828
+ #: inc/post-types.php:331
829
  msgid "(e.g. Edit Movie)"
830
  msgstr "(örneğin: Film Düzenle)"
831
 
832
+ #: inc/post-types.php:338
833
  msgid "New Item"
834
  msgstr "Yeni Eleman"
835
 
836
+ #: inc/post-types.php:343
837
  msgid "(e.g. New Movie)"
838
  msgstr "(örneğin: Yeni Film)"
839
 
840
+ #: inc/post-types.php:350
841
  msgid "View"
842
  msgstr "Göster"
843
 
844
+ #: inc/post-types.php:355
845
  #, fuzzy
846
  msgid "(e.g. View)"
847
  msgstr "(örneğin: Film Göster)"
848
 
849
+ #: inc/post-types.php:362 inc/taxonomies.php:297
850
  msgid "View Item"
851
  msgstr "Elemanı Göster"
852
 
853
+ #: inc/post-types.php:367
854
  msgid "(e.g. View Movie)"
855
  msgstr "(örneğin: Film Göster)"
856
 
857
+ #: inc/post-types.php:374
858
  #, fuzzy
859
  msgid "Search Item"
860
  msgstr "Eleman Düzenle"
861
 
862
+ #: inc/post-types.php:379
863
  #, fuzzy
864
  msgid "(e.g. Search Movie)"
865
  msgstr "(örneğin: Filmleri Ara)"
866
 
867
+ #: inc/post-types.php:386
868
  msgid "Not Found"
869
  msgstr "Bulunamadı"
870
 
871
+ #: inc/post-types.php:391
872
  #, fuzzy
873
  msgid "(e.g. No Movies found)"
874
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
875
 
876
+ #: inc/post-types.php:398
877
  msgid "Not Found in Trash"
878
  msgstr "Çöpte Bulunamadı"
879
 
880
+ #: inc/post-types.php:403
881
  msgid "(e.g. No Movies found in Trash)"
882
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
883
 
884
+ #: inc/post-types.php:410
885
  msgid "Parent"
886
  msgstr "Temel"
887
 
888
+ #: inc/post-types.php:415
889
  msgid "(e.g. Parent Movie)"
890
  msgstr "(örneğin: Temel Film)"
891
 
892
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
893
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
894
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
895
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
896
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
897
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
898
+ #: inc/taxonomies.php:548
899
  msgid "False"
900
  msgstr "False"
901
 
902
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
903
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
904
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
905
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
906
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
907
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
908
+ #: inc/taxonomies.php:549
909
  msgid "True"
910
  msgstr "True"
911
 
912
+ #: inc/post-types.php:438
913
  msgid "Public"
914
  msgstr "Genel"
915
 
916
+ #: inc/post-types.php:439
917
+ #, fuzzy
918
+ msgid "(CPTUI default: True.)"
 
919
  msgstr "(varsayılan: Doğru)"
920
 
921
+ #: inc/post-types.php:440
922
  #, fuzzy
923
  msgid ""
924
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
925
  "Whether posts of this type should be shown in the admin UI and is publicly "
926
  "queryable."
927
  msgstr ""
928
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
929
 
930
+ #: inc/post-types.php:458 inc/taxonomies.php:434
931
  msgid "Show UI"
932
  msgstr "KA Göster"
933
 
934
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
935
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
936
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
937
+ msgid "(default: True)"
938
+ msgstr "(varsayılan: Doğru)"
939
+
940
+ #: inc/post-types.php:460
941
  #, fuzzy
942
  msgid "Whether to generate a default UI for managing this post type."
943
  msgstr ""
944
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
945
 
946
+ #: inc/post-types.php:478
947
+ #, fuzzy
948
+ msgid "Show in Nav Menus"
949
+ msgstr "Menüde Göster"
950
+
951
+ #: inc/post-types.php:479
952
+ #, fuzzy
953
+ msgid "(CPTUI default: true)"
954
+ msgstr "(varsayılan: Doğru)"
955
+
956
+ #: inc/post-types.php:480
957
+ msgid "Whether post type is available for selection in navigation menus."
958
+ msgstr ""
959
+
960
+ #: inc/post-types.php:498 inc/taxonomies.php:557
961
+ msgid "Show in REST API"
962
+ msgstr ""
963
+
964
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
965
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
966
+ #: inc/taxonomies.php:558
967
+ msgid "(default: False)"
968
+ msgstr "(varsayılan:Yanlış)"
969
+
970
+ #: inc/post-types.php:500
971
+ #, fuzzy
972
+ msgid "Whether to show this post type data in the WP REST API."
973
+ msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
974
+
975
+ #: inc/post-types.php:508 inc/taxonomies.php:567
976
+ msgid "REST API base slug"
977
+ msgstr ""
978
+
979
+ #: inc/post-types.php:509 inc/taxonomies.php:568
980
+ msgid "Slug to use in REST API URLs."
981
+ msgstr ""
982
+
983
+ #: inc/post-types.php:519
984
  msgid "Has Archive"
985
  msgstr "Arşivlenebilir mi?"
986
 
987
+ #: inc/post-types.php:520
988
  #, fuzzy
989
  msgid "Whether the post type will have a post type archive URL."
990
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
991
 
992
+ #: inc/post-types.php:521
993
  msgid "If left blank, the archive slug will default to the post type slug."
994
  msgstr ""
995
 
996
+ #: inc/post-types.php:547
 
 
 
 
 
997
  msgid "Slug to be used for archive URL."
998
  msgstr ""
999
 
1000
+ #: inc/post-types.php:567
1001
  msgid "Exclude From Search"
1002
  msgstr "Arama Dışında Bırak"
1003
 
1004
+ #: inc/post-types.php:569
1005
  msgid ""
1006
  "Whether to exclude posts with this post type from front end search results."
1007
  msgstr ""
1008
 
1009
+ #: inc/post-types.php:580
1010
  msgid "Capability Type"
1011
  msgstr "Yetenek Türü"
1012
 
1013
+ #: inc/post-types.php:581
1014
  msgid "The post type to use for checking read, edit, and delete capabilities"
1015
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
1016
 
1017
+ #: inc/post-types.php:598 inc/taxonomies.php:417
1018
  msgid "Hierarchical"
1019
  msgstr "Hiyerarşik"
1020
 
1021
+ #: inc/post-types.php:600
1022
  msgid "Whether the post type can have parent-child relationships"
1023
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
1024
 
1025
+ #: inc/post-types.php:618 inc/taxonomies.php:477
1026
  msgid "Rewrite"
1027
  msgstr "Rewrite"
1028
 
1029
+ #: inc/post-types.php:620
1030
  #, fuzzy
1031
  msgid "Whether or not WordPress should use rewrites for this post type"
1032
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
1033
 
1034
+ #: inc/post-types.php:631 inc/taxonomies.php:488
1035
  msgid "Custom Rewrite Slug"
1036
  msgstr "Özel Rewrite Slug"
1037
 
1038
+ #: inc/post-types.php:632
1039
  #, fuzzy
1040
  msgid "(default: post type slug)"
1041
  msgstr "(varsayılan: yazı türü adı)"
1042
 
1043
+ #: inc/post-types.php:633
1044
  #, fuzzy
1045
  msgid "Custom post type slug to use instead of the default."
1046
  msgstr "Özel slug yerine varsayılan kullanmak için."
1047
 
1048
+ #: inc/post-types.php:650
1049
  msgid "With Front"
1050
  msgstr "Cephesinden"
1051
 
1052
+ #: inc/post-types.php:652 inc/taxonomies.php:505
1053
  msgid "Should the permastruct be prepended with the front base."
1054
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1055
 
1056
+ #: inc/post-types.php:670 inc/taxonomies.php:451
1057
  msgid "Query Var"
1058
  msgstr "Sorgu Tanımı"
1059
 
1060
+ #: inc/post-types.php:672
1061
  #, fuzzy
1062
  msgid "Sets the query_var key for this post type."
1063
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
1064
 
1065
+ #: inc/post-types.php:683
1066
+ #, fuzzy
1067
+ msgid "Custom Query Var Slug"
1068
+ msgstr "Özel Rewrite Slug"
1069
+
1070
+ #: inc/post-types.php:684
1071
+ msgid "(default: post type slug) Query var needs to be true to use."
1072
+ msgstr ""
1073
+
1074
+ #: inc/post-types.php:685
1075
+ #, fuzzy
1076
+ msgid "Custom query var slug to use instead of the default."
1077
+ msgstr "Özel slug yerine varsayılan kullanmak için."
1078
+
1079
+ #: inc/post-types.php:692
1080
  msgid "Menu Position"
1081
  msgstr "Menü Pozisyonu"
1082
 
1083
+ #: inc/post-types.php:693
1084
  msgid ""
1085
  "The position in the menu order the post type should appear. show_in_menu "
1086
  "must be true."
1088
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
1089
  "gerekir."
1090
 
1091
+ #: inc/post-types.php:694
1092
  #, fuzzy
1093
  msgid ""
1094
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1099
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
1100
  "bölümü\". Aralık 5 ile 100"
1101
 
1102
+ #: inc/post-types.php:709
1103
  msgid "Show in Menu"
1104
  msgstr "Menüde Göster"
1105
 
1106
+ #: inc/post-types.php:710
1107
  #, fuzzy
1108
  msgid ""
1109
  "Whether to show the post type in the admin menu and where to show that menu."
1110
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
1111
 
1112
+ #: inc/post-types.php:711
1113
  msgid ""
1114
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1115
  "php\" is indicated for second input, post type will be sub menu of that."
1118
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
1119
  "olacaktır."
1120
 
1121
+ #: inc/post-types.php:737
1122
  msgid "Top-level page file name to make post type a sub-menu of."
1123
  msgstr ""
1124
 
1125
+ #: inc/post-types.php:749
1126
  msgid "Menu Icon"
1127
  msgstr "Menü Simgesi"
1128
 
1129
+ #: inc/post-types.php:750
1130
  msgid "(Full URL for icon or Dashicon class)"
1131
  msgstr ""
1132
 
1133
+ #: inc/post-types.php:751
1134
  #, fuzzy
1135
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1136
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
1137
 
1138
+ #: inc/post-types.php:764
1139
  msgid "Title"
1140
  msgstr "Başlık"
1141
 
1142
+ #: inc/post-types.php:765
1143
  msgid "Adds the title meta box when creating content for this custom post type"
1144
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
1145
 
1146
+ #: inc/post-types.php:779
1147
  msgid "Editor"
1148
  msgstr "Editör"
1149
 
1150
+ #: inc/post-types.php:780
1151
  msgid ""
1152
  "Adds the content editor meta box when creating content for this custom post "
1153
  "type"
1154
  msgstr ""
1155
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
1156
 
1157
+ #: inc/post-types.php:794
1158
  msgid "Excerpt"
1159
  msgstr "Alıntı"
1160
 
1161
+ #: inc/post-types.php:795
1162
  msgid ""
1163
  "Adds the excerpt meta box when creating content for this custom post type"
1164
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
1165
 
1166
+ #: inc/post-types.php:809
1167
  msgid "Trackbacks"
1168
  msgstr "Parçagönderimi"
1169
 
1170
+ #: inc/post-types.php:810
1171
  msgid ""
1172
  "Adds the trackbacks meta box when creating content for this custom post type"
1173
  msgstr ""
1174
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
1175
 
1176
+ #: inc/post-types.php:824
1177
  msgid "Custom Fields"
1178
  msgstr "Özel Alanlar"
1179
 
1180
+ #: inc/post-types.php:825
1181
  msgid ""
1182
  "Adds the custom fields meta box when creating content for this custom post "
1183
  "type"
1184
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1185
 
1186
+ #: inc/post-types.php:839
1187
  msgid "Comments"
1188
  msgstr "Yorumlar"
1189
 
1190
+ #: inc/post-types.php:840
1191
  msgid ""
1192
  "Adds the comments meta box when creating content for this custom post type"
1193
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1194
 
1195
+ #: inc/post-types.php:854
1196
  msgid "Revisions"
1197
  msgstr "Düzenlemeler"
1198
 
1199
+ #: inc/post-types.php:855
1200
  msgid ""
1201
  "Adds the revisions meta box when creating content for this custom post type"
1202
  msgstr ""
1203
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1204
 
1205
+ #: inc/post-types.php:869
1206
  msgid "Featured Image"
1207
  msgstr "Öne Çıkan Görüntü"
1208
 
1209
+ #: inc/post-types.php:870
1210
  msgid ""
1211
  "Adds the featured image meta box when creating content for this custom post "
1212
  "type"
1214
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1215
  "ekler"
1216
 
1217
+ #: inc/post-types.php:884
1218
  msgid "Author"
1219
  msgstr "Yazar"
1220
 
1221
+ #: inc/post-types.php:885
1222
  msgid ""
1223
  "Adds the author meta box when creating content for this custom post type"
1224
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1225
 
1226
+ #: inc/post-types.php:899
1227
  msgid "Page Attributes"
1228
  msgstr "Sayfa Öznitelikleri"
1229
 
1230
+ #: inc/post-types.php:900
1231
  msgid ""
1232
  "Adds the page attribute meta box when creating content for this custom post "
1233
  "type"
1235
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1236
  "ekler "
1237
 
1238
+ #: inc/post-types.php:914
1239
  msgid "Post Formats"
1240
  msgstr "Yazı Formatları"
1241
 
1242
+ #: inc/post-types.php:915
1243
  msgid "Adds post format support"
1244
  msgstr "Bu Yazı format desteği ekler"
1245
 
1246
+ #: inc/post-types.php:920
1247
  msgid "Use the option below to explicitly set \"supports\" to false."
1248
  msgstr ""
1249
 
1250
+ #: inc/post-types.php:928
1251
  msgid "None"
1252
  msgstr ""
1253
 
1254
+ #: inc/post-types.php:929
1255
  msgid "Remove all support features"
1256
  msgstr ""
1257
 
1258
+ #: inc/post-types.php:936
1259
  #, fuzzy
1260
  msgid "Custom \"Supports\""
1261
  msgstr "Destekler"
1262
 
1263
+ #: inc/post-types.php:937
1264
  msgid ""
1265
  "Use this input to register custom \"supports\" values, separated by commas."
1266
  msgstr ""
1267
 
1268
+ #: inc/post-types.php:943
1269
  msgid "Provide custom support slugs here."
1270
  msgstr ""
1271
 
1272
+ #: inc/post-types.php:949
1273
  msgid "Built-in Taxonomies"
1274
  msgstr "Dahili Sınıflandırmalar"
1275
 
1276
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1277
  #, fuzzy, php-format
1278
  msgid "Adds %s support"
1279
  msgstr "Bu Yazı format desteği ekler"
1280
 
1281
+ #: inc/post-types.php:1085
1282
  msgid "Please provide a post type to delete"
1283
  msgstr ""
1284
 
1285
+ #: inc/post-types.php:1145
1286
  #, fuzzy
1287
  msgid "Please provide a post type name"
1288
  msgstr "(varsayılan: yazı türü adı)"
1289
 
1290
+ #: inc/post-types.php:1169
1291
  #, fuzzy
1292
  msgid "Please do not use quotes in post type names or rewrite slugs"
1293
  msgstr ""
1294
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1295
 
1296
+ #: inc/post-types.php:1176
1297
  #, php-format
1298
  msgid "Please choose a different post type name. %s is already registered."
1299
  msgstr ""
1300
 
1301
+ #: inc/support.php:45
1302
  #, fuzzy
1303
  msgid "Custom Post Type UI Support"
1304
  msgstr "Özel Yazı Türleri KA"
1305
 
1306
+ #: inc/support.php:47
1307
  #, fuzzy, php-format
1308
  msgid ""
1309
  "Please note that this plugin will NOT handle display of registered post "
1313
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1314
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1315
 
1316
+ #: inc/support.php:48
1317
  #, fuzzy
1318
  msgid "Support Forums"
1319
  msgstr "Destekler"
1320
 
1321
+ #: inc/support.php:54
1322
  msgid "General"
1323
  msgstr ""
1324
 
1325
+ #: inc/support.php:57
1326
+ msgid ""
1327
+ "I have post types with spaces in their slug and can not successfully delete "
1328
+ "them. How can I fix that?"
1329
+ msgstr ""
1330
+
1331
+ #: inc/support.php:58
1332
+ msgid ""
1333
+ "Visit the Import/Export page and copy the export code into the import side "
1334
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1335
+ "You should be able to delete the individual post types afterwards."
1336
+ msgstr ""
1337
+
1338
+ #: inc/support.php:62
1339
  #, fuzzy
1340
  msgid ""
1341
  "I changed my custom post type name and now I can not get to my posts. How do "
1344
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1345
  "gösterilmiyor</strong>"
1346
 
1347
+ #: inc/support.php:63
1348
  #, fuzzy
1349
  msgid ""
1350
  "You can either change the custom post type name back to the original name or "
1353
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1354
  "deneyebilirsiniz:"
1355
 
1356
+ #: inc/support.php:68
1357
  msgid ""
1358
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1359
  "shown. How do I remove the duplicate?"
1360
  msgstr ""
1361
 
1362
+ #: inc/support.php:69
1363
  msgid ""
1364
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1365
  "saved option which gets registered as its own post type or taxonomy. Since "
1367
  "delete the previous version's entry."
1368
  msgstr ""
1369
 
1370
+ #: inc/support.php:72
1371
  msgid ""
1372
  "I have added post thumbnail and/or post format support to my post type, but "
1373
  "those do not appear when adding a post type post."
1374
  msgstr ""
1375
 
1376
+ #: inc/support.php:73
1377
  msgid ""
1378
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1379
  msgstr ""
1380
 
1381
+ #: inc/support.php:76
1382
+ msgid "Do you have any recommendations for an alternative to Visual Composer."
1383
+ msgstr ""
1384
+
1385
+ #: inc/support.php:77
1386
+ msgid "We recommend using VelocityPage."
1387
+ msgstr ""
1388
+
1389
+ #: inc/support.php:82
1390
+ msgid ""
1391
+ "Is there any way to get CPTUI-registered post types working with Visual "
1392
+ "Composer Media Grid?"
1393
+ msgstr ""
1394
+
1395
+ #: inc/support.php:84
1396
+ msgid "Please see the solution from the following forum support thread."
1397
+ msgstr ""
1398
+
1399
+ #: inc/support.php:91
1400
  msgid "Front-end Display"
1401
  msgstr ""
1402
 
1403
+ #: inc/support.php:94
1404
  msgid "What template files should I edit to alter my post type display?"
1405
  msgstr ""
1406
 
1407
+ #: inc/support.php:95
1408
  #, php-format
1409
  msgid ""
1410
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1411
  "details about available templates."
1412
  msgstr ""
1413
 
1414
+ #: inc/support.php:102
1415
  #, fuzzy
1416
  msgid "How do I display my custom post type on my site?"
1417
  msgstr ""
1418
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1419
  "strong>"
1420
 
1421
+ #: inc/support.php:103
1422
  #, php-format
1423
  msgid ""
1424
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1426
  "should be something like \"http://www.mysite.com/post-type-slug\""
1427
  msgstr ""
1428
 
1429
+ #: inc/support.php:109
1430
  msgid ""
1431
  "I have added categories and tags to my custom post type, but they do not "
1432
  "appear in the archives."
1433
  msgstr ""
1434
 
1435
+ #: inc/support.php:110
1436
  #, php-format
1437
  msgid ""
1438
  "You will need to add your newly created post type to the types that the "
1440
  "that at %s"
1441
  msgstr ""
1442
 
1443
+ #: inc/support.php:119
1444
  #, fuzzy
1445
  msgid "Advanced"
1446
  msgstr "Gelişmiş Ayarlar"
1447
 
1448
+ #: inc/support.php:122
1449
  #, fuzzy
1450
  msgid "How do I add custom metaboxes to my post type?"
1451
  msgstr ""
1452
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1453
  "ekleyebilirsiniz?</strong>"
1454
 
1455
+ #: inc/support.php:124
1456
  #, php-format
1457
  msgid ""
1458
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1459
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1460
  msgstr ""
1461
 
1462
+ #: inc/support.php:130
1463
  msgid ""
1464
  "How do I add a newly registered taxonomy to a post type that already exists?"
1465
  msgstr ""
1466
 
1467
+ #: inc/support.php:132
1468
  #, php-format
1469
  msgid "Check out the %s function for documentation and usage examples."
1470
  msgstr ""
1471
 
1472
+ #: inc/support.php:138
1473
  msgid "Post relationships?"
1474
  msgstr ""
1475
 
1476
+ #: inc/support.php:139
1477
  #, php-format
1478
  msgid ""
1479
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1480
  "plugin that should be a good start."
1481
  msgstr ""
1482
 
1483
+ #: inc/support.php:148
1484
  msgid "Is there any function reference list?"
1485
  msgstr ""
1486
 
1487
+ #: inc/support.php:149
1488
  #, php-format
1489
  msgid ""
1490
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1491
  "will be useful as they are attached to hooks."
1492
  msgstr ""
1493
 
1494
+ #: inc/support.php:153
1495
  msgid ""
1496
  "How do I filter the \"enter title here\" text in the post editor screen?"
1497
  msgstr ""
1498
 
1499
+ #: inc/support.php:154
1500
  msgid ""
1501
  "Change text inside the post/page editor title field. Should be able to adapt "
1502
  "as necessary."
1503
  msgstr ""
1504
 
1505
+ #: inc/taxonomies.php:89
1506
  msgid ""
1507
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1508
  "registers a new taxonomy entry for your install."
1509
  msgstr ""
1510
 
1511
+ #: inc/taxonomies.php:129
1512
  #, fuzzy
1513
  msgid "Taxonomy Slug"
1514
  msgstr "Sınıflandırma Adı"
1515
 
1516
+ #: inc/taxonomies.php:130
1517
  #, fuzzy
1518
  msgid "(e.g. actor)"
1519
  msgstr "(örneğin: Aktör)"
1520
 
1521
+ #: inc/taxonomies.php:131
1522
  #, fuzzy
1523
  msgid ""
1524
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1527
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1528
  "tatlı olmalıdır"
1529
 
1530
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1531
  msgid "(e.g. Actors)"
1532
  msgstr "(örneğin: Aktörler)"
1533
 
1534
+ #: inc/taxonomies.php:141
1535
  #, fuzzy
1536
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1537
  msgstr ""
1538
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1539
  "menüsünde kullanılan."
1540
 
1541
+ #: inc/taxonomies.php:148
1542
  msgid "(e.g. Actor)"
1543
  msgstr "(örneğin: Aktör)"
1544
 
1545
+ #: inc/taxonomies.php:150
1546
  msgid ""
1547
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1548
  msgstr ""
1549
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1550
  "kullanır."
1551
 
1552
+ #: inc/taxonomies.php:167
1553
+ #, fuzzy
1554
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1555
+ msgstr ""
1556
+ "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
1557
+
1558
+ #: inc/taxonomies.php:170
1559
  msgid "Attach to Post Type"
1560
  msgstr "Yazı Türüne ekle"
1561
 
1562
+ #: inc/taxonomies.php:220
1563
  #, fuzzy
1564
  msgid "Save Taxonomy"
1565
  msgstr "Özel Sınıflandırma Kaydet"
1566
 
1567
+ #: inc/taxonomies.php:231
1568
  #, fuzzy
1569
  msgid "Delete Taxonomy"
1570
  msgstr "Özel Sınıflandırma Oluştur"
1571
 
1572
+ #: inc/taxonomies.php:243
1573
  #, fuzzy
1574
  msgid "Add Taxonomy"
1575
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1576
 
1577
+ #: inc/taxonomies.php:252
1578
  #, fuzzy, php-format
1579
  msgid ""
1580
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1584
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1585
  "boşluk yerine alt çizgi olmalıdır."
1586
 
1587
+ #: inc/taxonomies.php:253
1588
  #, fuzzy, php-format
1589
  msgid ""
1590
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1596
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1597
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1598
 
1599
+ #: inc/taxonomies.php:254
1600
  #, fuzzy, php-format
1601
  msgid ""
1602
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1607
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1608
  "içerikleri kalacaktır."
1609
 
1610
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1611
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1612
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1613
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1614
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1615
  #, fuzzy
1616
  msgid ""
1617
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1619
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1620
  "menüsünde kullanılan."
1621
 
1622
+ #: inc/taxonomies.php:278
1623
  msgid "(e.g. All Actors)"
1624
  msgstr "(örneğin: Bütün Aktörler)"
1625
 
1626
+ #: inc/taxonomies.php:287
1627
  msgid "(e.g. Edit Actor)"
1628
  msgstr "(örneğin: Aktör Düzenle)"
1629
 
1630
+ #: inc/taxonomies.php:296
1631
  #, fuzzy
1632
  msgid "(e.g. View Actor)"
1633
  msgstr "(örneğin: Aktör)"
1634
 
1635
+ #: inc/taxonomies.php:305
1636
  #, fuzzy
1637
  msgid "(e.g. Update Actor Name)"
1638
  msgstr "(örneğin: Aktörü Güncelle)"
1639
 
1640
+ #: inc/taxonomies.php:306
1641
  #, fuzzy
1642
  msgid "Update Item Name"
1643
  msgstr "Eleman Güncelle"
1644
 
1645
+ #: inc/taxonomies.php:314
1646
  msgid "(e.g. Add New Actor)"
1647
  msgstr "(örneğin: Yeni Aktör Ekle)"
1648
 
1649
+ #: inc/taxonomies.php:323
1650
  msgid "(e.g. New Actor Name)"
1651
  msgstr "(örneğin: Yeni Aktör Adı)"
1652
 
1653
+ #: inc/taxonomies.php:324
1654
  msgid "New Item Name"
1655
  msgstr "Yeni Eleman Adı"
1656
 
1657
+ #: inc/taxonomies.php:332
1658
  msgid "(e.g. Parent Actor)"
1659
  msgstr "(örneğin: Temel Aktör)"
1660
 
1661
+ #: inc/taxonomies.php:333
1662
  msgid "Parent Item"
1663
  msgstr "Temel Eleman"
1664
 
1665
+ #: inc/taxonomies.php:341
1666
  msgid "(e.g. Parent Actor:)"
1667
  msgstr "(örneğin: Temel Aktör:)"
1668
 
1669
+ #: inc/taxonomies.php:342
1670
  msgid "Parent Item Colon"
1671
  msgstr "Temel Eleman Kolon"
1672
 
1673
+ #: inc/taxonomies.php:350
1674
  msgid "(e.g. Search Actors)"
1675
  msgstr "(örneğin: Aktörleri Ara)"
1676
 
1677
+ #: inc/taxonomies.php:351
1678
  msgid "Search Items"
1679
  msgstr "Eleman Ara"
1680
 
1681
+ #: inc/taxonomies.php:359
1682
  msgid "(e.g. Popular Actors)"
1683
  msgstr "(örneğin: Popüler Aktörler)"
1684
 
1685
+ #: inc/taxonomies.php:360
1686
  msgid "Popular Items"
1687
  msgstr "Popüler Elemanlar"
1688
 
1689
+ #: inc/taxonomies.php:368
1690
+ #, fuzzy
1691
+ msgid "(e.g. Separate Actors with commas)"
1692
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1693
 
1694
+ #: inc/taxonomies.php:369
1695
  msgid "Separate Items with Commas"
1696
  msgstr "Elemanları virgül ile ayır"
1697
 
1698
+ #: inc/taxonomies.php:377
1699
+ #, fuzzy
1700
+ msgid "(e.g. Add or remove Actors)"
1701
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1702
 
1703
+ #: inc/taxonomies.php:378
1704
  msgid "Add or Remove Items"
1705
  msgstr "Elemanları Ekle veya Çıkar "
1706
 
1707
+ #: inc/taxonomies.php:386
1708
+ #, fuzzy
1709
+ msgid "(e.g. Choose from the most used Actors)"
1710
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1711
 
1712
+ #: inc/taxonomies.php:387
1713
  msgid "Choose From Most Used"
1714
  msgstr "Çok Kullanılandan Seç"
1715
 
1716
+ #: inc/taxonomies.php:395
1717
  #, fuzzy
1718
+ msgid "(e.g. No Actors found)"
1719
  msgstr "(örneğin: Filmler bulunamadı)"
1720
 
1721
+ #: inc/taxonomies.php:396
1722
  #, fuzzy
1723
  msgid "Not found"
1724
  msgstr "Bulunamadı"
1725
 
1726
+ #: inc/taxonomies.php:419
1727
  msgid "Whether the taxonomy can have parent-child relationships"
1728
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1729
 
1730
+ #: inc/taxonomies.php:436
1731
  #, fuzzy
1732
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1733
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1734
 
1735
+ #: inc/taxonomies.php:453
1736
  #, fuzzy
1737
  msgid "Sets the query_var key for this taxonomy."
1738
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1739
 
1740
+ #: inc/taxonomies.php:461
1741
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1742
  msgstr ""
1743
 
1744
+ #: inc/taxonomies.php:462
1745
  msgid "Custom Query Var String"
1746
  msgstr ""
1747
 
1748
+ #: inc/taxonomies.php:463
1749
  msgid "Sets a custom query_var slug for this taxonomy."
1750
  msgstr ""
1751
 
1752
+ #: inc/taxonomies.php:479
1753
  #, fuzzy
1754
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1755
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1756
 
1757
+ #: inc/taxonomies.php:487
1758
  msgid "(default: taxonomy name)"
1759
  msgstr "(varsayılan: sınıflandırma adı)"
1760
 
1761
+ #: inc/taxonomies.php:489
1762
  #, fuzzy
1763
  msgid "Custom taxonomy rewrite slug."
1764
  msgstr "Özel Sınıflandırma Rewrite Slug"
1765
 
1766
+ #: inc/taxonomies.php:503
1767
  #, fuzzy
1768
  msgid "Rewrite With Front"
1769
  msgstr "Cephesinden"
1770
 
1771
+ #: inc/taxonomies.php:504
1772
  #, fuzzy
1773
  msgid "(default: true)"
1774
  msgstr "(varsayılan: Doğru)"
1775
 
1776
+ #: inc/taxonomies.php:520
1777
  #, fuzzy
1778
  msgid "Rewrite Hierarchical"
1779
  msgstr "Hiyerarşik"
1780
 
1781
+ #: inc/taxonomies.php:521
1782
  #, fuzzy
1783
  msgid "(default: false)"
1784
  msgstr "(varsayılan:Yanlış)"
1785
 
1786
+ #: inc/taxonomies.php:522
1787
  #, fuzzy
1788
  msgid "Should the permastruct allow hierarchical urls."
1789
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1790
 
1791
+ #: inc/taxonomies.php:537
1792
  msgid "Show Admin Column"
1793
  msgstr "Yönetici Sütunu Göster"
1794
 
1795
+ #: inc/taxonomies.php:539
1796
  msgid ""
1797
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1798
  "types."
1799
  msgstr ""
1800
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1801
 
1802
+ #: inc/taxonomies.php:559
1803
+ #, fuzzy
1804
+ msgid "Whether to show this taxonomy data in the WP REST API."
1805
+ msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
1806
+
1807
+ #: inc/taxonomies.php:676
1808
  msgid "Please provide a taxonomy to delete"
1809
  msgstr ""
1810
 
1811
+ #: inc/taxonomies.php:727
1812
  #, fuzzy
1813
  msgid "Please provide a taxonomy name"
1814
  msgstr "(varsayılan: sınıflandırma adı)"
1815
 
1816
+ #: inc/taxonomies.php:743
1817
  #, fuzzy
1818
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1819
  msgstr ""
1820
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1821
  "kullanmayınız."
1822
 
1823
+ #: inc/taxonomies.php:749
1824
  #, php-format
1825
  msgid "Please choose a different taxonomy name. %s is already used."
1826
  msgstr ""
1842
  msgid "http://webdevstudios.com/"
1843
  msgstr ""
1844
 
1845
+ #, fuzzy
1846
+ #~ msgid "Post type migration"
1847
+ #~ msgstr "Özel Yazı Türleri"
1848
+
1849
+ #, fuzzy
1850
+ #~ msgid "Registered Post Type and Taxonomy Listings"
1851
+ #~ msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
1852
+
1853
  #~ msgid "Whether posts of this type should be shown in the admin UI"
1854
  #~ msgstr ""
1855
  #~ "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
1868
  #~ msgid "Edit Taxonomy"
1869
  #~ msgstr "Dahili Sınıflandırmalar"
1870
 
 
 
 
 
1871
  #, fuzzy
1872
  #~ msgid "URL or Dashicon value for image to be used as menu icon."
1873
  #~ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
languages/{cpt-plugin-zh_CN.mo → custom-post-type-ui-zh_CN.mo} RENAMED
Binary file
languages/{cpt-plugin-zh_CN.po → custom-post-type-ui-zh_CN.po} RENAMED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
- "POT-Creation-Date: 2015-08-11 11:35-0500\n"
6
- "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh_CN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.2\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
@@ -22,317 +22,399 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
- #: custom-post-type-ui.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #, fuzzy
27
  msgid "Custom Post Types"
28
  msgstr "附属到文章类型"
29
 
30
- #: custom-post-type-ui.php:60
31
  msgid "CPT UI"
32
  msgstr ""
33
 
34
- #: custom-post-type-ui.php:61
35
  #, fuzzy
36
  msgid "Add/Edit Post Types"
37
  msgstr "编辑自定义文章类型"
38
 
39
- #: custom-post-type-ui.php:62
40
  #, fuzzy
41
  msgid "Add/Edit Taxonomies"
42
  msgstr "内置类别"
43
 
44
- #: custom-post-type-ui.php:63
45
  msgid "Registered Types and Taxes"
46
  msgstr ""
47
 
48
- #: custom-post-type-ui.php:63
49
  msgid "Registered Types/Taxes"
50
  msgstr ""
51
 
52
- #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
53
  msgid "Import/Export"
54
  msgstr ""
55
 
56
- #: custom-post-type-ui.php:65
57
  #, fuzzy
58
  msgid "Help/Support"
59
  msgstr "支持"
60
 
61
- #: custom-post-type-ui.php:69
62
  msgid "About CPT UI"
63
  msgstr ""
64
 
65
  #. Plugin Name of the plugin/theme
66
- #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
67
  #, fuzzy
68
  msgid "Custom Post Type UI"
69
  msgstr "附属到文章类型"
70
 
71
- #: custom-post-type-ui.php:342
72
  msgid ""
73
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
74
  "with our plugin provides efficiency and speed in creating post types and "
75
  "taxonomies, to better organize your content, without having to touch code."
76
  msgstr ""
77
 
78
- #: custom-post-type-ui.php:348
79
- #, fuzzy
80
- msgid "Post type migration"
81
- msgstr "文章类型名称"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
- #: custom-post-type-ui.php:349
84
  msgid ""
85
- "In the past, if you changed your post type slug, you would lose immediate "
86
- "access to the posts in the post type and need to recover another way. We "
87
- "have now added support for migrating all posts within the old post type to "
88
- "the new post type you renamed it to."
89
  msgstr ""
90
 
91
- #: custom-post-type-ui.php:352
92
- msgid "UI Refinement"
93
  msgstr ""
94
 
95
- #: custom-post-type-ui.php:353
96
  msgid ""
97
- "After receiving feedback regarding the 1.0.x changes, we have further "
98
- "simplified the UI to reduce the amount of clicking necessary to manage your "
99
- "post types and taxonomies."
100
  msgstr ""
101
 
102
- #: custom-post-type-ui.php:356
103
- msgid "Registered Post Type and Taxonomy Listings"
104
  msgstr ""
105
 
106
- #: custom-post-type-ui.php:357
 
 
 
 
 
 
 
 
 
 
 
107
  msgid ""
108
- "We are bringing back the listing of all CPTUI-registered post types and "
109
- "taxonomies for easier quick view of what you have going."
 
110
  msgstr ""
111
 
112
- #: custom-post-type-ui.php:362
113
  msgid "Help Support This Plugin!"
114
  msgstr ""
115
 
116
- #: custom-post-type-ui.php:366
117
  msgid "Professional WordPress<br />Third Edition"
118
  msgstr ""
119
 
120
- #: custom-post-type-ui.php:371
 
 
 
 
121
  msgid ""
122
  "The leading book on WordPress design and development! Brand new third "
123
  "edition!"
124
  msgstr ""
125
 
126
- #: custom-post-type-ui.php:374
127
  msgid "Professional WordPress<br />Plugin Development"
128
  msgstr ""
129
 
130
- #: custom-post-type-ui.php:379
 
 
 
 
131
  msgid "Highest rated WordPress development book on Amazon!"
132
  msgstr ""
133
 
134
- #: custom-post-type-ui.php:382
135
  msgid "PayPal Donation"
136
  msgstr ""
137
 
138
- #: custom-post-type-ui.php:386
139
  msgid "PayPal - The safer, easier way to pay online!"
140
  msgstr ""
141
 
142
- #: custom-post-type-ui.php:389
143
  msgid "Please donate to the development of Custom Post Type UI:"
144
  msgstr ""
145
 
146
- #: custom-post-type-ui.php:415
147
  #, php-format
148
  msgid "%s version %s by %s"
149
  msgstr ""
150
 
151
- #: custom-post-type-ui.php:426
152
  msgid "Please Report Bugs"
153
  msgstr ""
154
 
155
- #: custom-post-type-ui.php:429
156
  msgid "Follow on Twitter:"
157
  msgstr ""
158
 
159
- #: custom-post-type-ui.php:493
160
  #, fuzzy
161
  msgid "Manage Taxonomies"
162
  msgstr "管理自定义类别"
163
 
164
- #: custom-post-type-ui.php:497
165
  #, fuzzy
166
  msgid "Manage Post Types"
167
  msgstr "管理自定义文章类型"
168
 
169
- #: custom-post-type-ui.php:523
170
  #, fuzzy
171
  msgid "Add New Post Type"
172
  msgstr "已附属文章类型"
173
 
174
- #: custom-post-type-ui.php:526
175
  #, fuzzy
176
  msgid "Edit Post Types"
177
  msgstr "编辑自定义文章类型"
178
 
179
- #: custom-post-type-ui.php:530
180
  #, fuzzy
181
  msgid "Add New Taxonomy"
182
  msgstr "类别名称"
183
 
184
- #: custom-post-type-ui.php:533
185
  #, fuzzy
186
  msgid "Edit Taxonomies"
187
  msgstr "内置类别"
188
 
189
- #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
190
- #: inc/listings.php:224
191
  #, fuzzy
192
  msgid "Post Types"
193
  msgstr "文章类型名称"
194
 
195
- #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
196
- #: inc/listings.php:122 inc/listings.php:132
197
  #, fuzzy
198
  msgid "Taxonomies"
199
  msgstr "内置类别"
200
 
201
- #: custom-post-type-ui.php:539
202
  msgid "Get Code"
203
  msgstr ""
204
 
205
- #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
206
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
207
- #: inc/taxonomies.php:343
 
 
 
208
  msgid "Settings"
209
  msgstr ""
210
 
211
- #: custom-post-type-ui.php:622
212
  msgid "Help"
213
  msgstr ""
214
 
215
- #: custom-post-type-ui.php:651
216
  #, php-format
217
  msgid "%s has been successfully added"
218
  msgstr ""
219
 
220
- #: custom-post-type-ui.php:653
221
  #, php-format
222
  msgid "%s has failed to be added"
223
  msgstr ""
224
 
225
- #: custom-post-type-ui.php:657
226
  #, php-format
227
  msgid "%s has been successfully updated"
228
  msgstr ""
229
 
230
- #: custom-post-type-ui.php:659
231
  #, php-format
232
  msgid "%s has failed to be updated"
233
  msgstr ""
234
 
235
- #: custom-post-type-ui.php:663
236
  #, php-format
237
  msgid "%s has been successfully deleted"
238
  msgstr ""
239
 
240
- #: custom-post-type-ui.php:665
241
  #, php-format
242
  msgid "%s has failed to be deleted"
243
  msgstr ""
244
 
245
- #: custom-post-type-ui.php:669
246
  #, php-format
247
  msgid "%s has been successfully imported"
248
  msgstr ""
249
 
250
- #: custom-post-type-ui.php:671
251
  #, php-format
252
  msgid "%s has failed to be imported"
253
  msgstr ""
254
 
255
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
256
  #, fuzzy, php-format
257
  msgid "Add new %s"
258
  msgstr "添加"
259
 
260
- #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
 
261
  #, fuzzy, php-format
262
  msgid "Edit %s"
263
  msgstr "编辑"
264
 
265
- #: custom-post-type-ui.php:756
266
  #, php-format
267
  msgid "New %s"
268
  msgstr ""
269
 
270
- #: custom-post-type-ui.php:757
271
  #, fuzzy, php-format
272
  msgid "View %s"
273
  msgstr "查看"
274
 
275
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
276
  #, fuzzy, php-format
277
  msgid "All %s"
278
  msgstr "所有条目"
279
 
280
- #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
281
  #, fuzzy, php-format
282
  msgid "Search %s"
283
  msgstr "搜索条目"
284
 
285
- #: custom-post-type-ui.php:760
286
  #, fuzzy, php-format
287
  msgid "No %s found."
288
  msgstr "未找到"
289
 
290
- #: custom-post-type-ui.php:761
291
  #, fuzzy, php-format
292
  msgid "No %s found in trash."
293
  msgstr "在回收站中没有找到"
294
 
295
- #: custom-post-type-ui.php:765
296
  #, fuzzy, php-format
297
  msgid "Popular %s"
298
  msgstr "热门条目"
299
 
300
- #: custom-post-type-ui.php:767
301
  #, fuzzy, php-format
302
  msgid "Parent %s"
303
  msgstr "上级"
304
 
305
- #: custom-post-type-ui.php:768
306
  #, fuzzy, php-format
307
  msgid "Parent %s:"
308
  msgstr "上级"
309
 
310
- #: custom-post-type-ui.php:770
311
  #, php-format
312
  msgid "Update %s"
313
  msgstr ""
314
 
315
- #: custom-post-type-ui.php:772
316
  #, fuzzy, php-format
317
  msgid "New %s name"
318
  msgstr "新条目名称"
319
 
320
- #: custom-post-type-ui.php:773
321
  #, fuzzy, php-format
322
  msgid "Separate %s with commas"
323
  msgstr "使用英文逗号隔开多个标签条目"
324
 
325
- #: custom-post-type-ui.php:774
326
  #, fuzzy, php-format
327
  msgid "Add or remove %s"
328
  msgstr "添加或删除条目"
329
 
330
- #: custom-post-type-ui.php:775
331
  #, fuzzy, php-format
332
  msgid "Choose from the most used %s"
333
  msgstr "使用次数最多"
334
 
335
- #: inc/import_export.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  msgid ""
337
  "If you are wanting to migrate registered post types or taxonomies from this "
338
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -340,271 +422,310 @@ msgid ""
340
  "the information in the \"Get Code\" tab."
341
  msgstr ""
342
 
343
- #: inc/import_export.php:45
344
  msgid "NOTE"
345
  msgstr ""
346
 
347
- #: inc/import_export.php:46
348
- msgid "This will not export the associated posts, just the settings."
 
 
349
  msgstr ""
350
 
351
- #: inc/import_export.php:53
352
  #, fuzzy
353
  msgid "Import Post Types"
354
  msgstr "已附属文章类型"
355
 
356
- #: inc/import_export.php:55 inc/import_export.php:80
357
  #, fuzzy
358
  msgid "Paste content here."
359
  msgstr "特色内容"
360
 
361
- #: inc/import_export.php:56 inc/import_export.php:81
362
  msgid "Note:"
363
  msgstr ""
364
 
365
- #: inc/import_export.php:56 inc/import_export.php:81
366
  msgid "Importing will overwrite previous registered settings."
367
  msgstr ""
368
 
369
- #: inc/import_export.php:57
370
  msgid ""
371
  "To import post types from a different WordPress site, paste the exported "
372
  "content from that site and click the \"Import\" button."
373
  msgstr ""
374
 
375
- #: inc/import_export.php:58 inc/import_export.php:83
376
  msgid "Import"
377
  msgstr ""
378
 
379
- #: inc/import_export.php:62
380
  #, fuzzy
381
  msgid "Export Post Types"
382
  msgstr "已附属文章类型"
383
 
384
- #: inc/import_export.php:68
385
  msgid "No post types registered yet."
386
  msgstr ""
387
 
388
- #: inc/import_export.php:71 inc/import_export.php:96
389
  msgid ""
390
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
391
  "(Mac)."
392
  msgstr ""
393
 
394
- #: inc/import_export.php:72
395
  msgid ""
396
  "Use the content above to import current post types into a different "
397
  "WordPress site. You can also use this to simply back up your post type "
398
  "settings."
399
  msgstr ""
400
 
401
- #: inc/import_export.php:78
402
  #, fuzzy
403
  msgid "Import Taxonomies"
404
  msgstr "内置类别"
405
 
406
- #: inc/import_export.php:82
407
  msgid ""
408
  "To import taxonomies from a different WordPress site, paste the exported "
409
  "content from that site and click the \"Import\" button."
410
  msgstr ""
411
 
412
- #: inc/import_export.php:87
413
  #, fuzzy
414
  msgid "Export Taxonomies"
415
  msgstr "内置类别"
416
 
417
- #: inc/import_export.php:93
418
  msgid "No taxonomies registered yet."
419
  msgstr ""
420
 
421
- #: inc/import_export.php:97
422
  msgid ""
423
  "Use the content above to import current taxonomies into a different "
424
  "WordPress site. You can also use this to simply back up your taxonomy "
425
  "settings."
426
  msgstr ""
427
 
428
- #: inc/import_export.php:105
429
  msgid "Get Post Type and Taxonomy Code"
430
  msgstr ""
431
 
432
- #: inc/import_export.php:107
433
  #, fuzzy
434
  msgid "All CPT UI Post Types"
435
  msgstr "其它自定义文章类型"
436
 
437
- #: inc/import_export.php:108 inc/import_export.php:112
 
438
  msgid "Copy/paste the code below into your functions.php file."
439
  msgstr ""
440
 
441
- #: inc/import_export.php:111
 
 
 
 
 
442
  #, fuzzy
443
  msgid "All CPT UI Taxonomies"
444
  msgstr "内置类别"
445
 
446
- #: inc/import_export.php:142
447
- msgid "No taxonomies to display at this time"
448
- msgstr ""
 
449
 
450
- #: inc/import_export.php:241
451
- msgid "No post types to display at this time"
452
  msgstr ""
453
 
454
- #: inc/import_export.php:367
455
- #, fuzzy
456
- msgid "Post types"
457
- msgstr "文章类型名称"
458
 
459
  #: inc/listings.php:10
460
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
461
  msgstr ""
462
 
463
- #: inc/listings.php:18 inc/listings.php:134
464
  #, php-format
465
  msgid "Total count: %d"
466
  msgstr ""
467
 
468
- #: inc/listings.php:31 inc/listings.php:119
469
  #, fuzzy
470
  msgid "Post Type"
471
  msgstr "附属到文章类型"
472
 
473
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
474
  msgid "Supports"
475
  msgstr "支持"
476
 
477
- #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
478
- #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
479
  #, fuzzy
480
  msgid "Labels"
481
  msgstr "标签"
482
 
483
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
484
- msgid "Edit"
485
- msgstr "编辑"
 
486
 
487
- #: inc/listings.php:75
488
  msgid "View frontend archive"
489
  msgstr ""
490
 
491
- #: inc/listings.php:108 inc/listings.php:211
492
  msgid "No custom labels to display"
493
  msgstr ""
494
 
495
- #: inc/listings.php:147 inc/listings.php:222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  #, fuzzy
497
  msgid "Taxonomy"
498
  msgstr "类别名称"
499
 
500
- #: inc/post-types.php:30 inc/taxonomies.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
501
  msgid "Are you sure you want to delete this?"
502
  msgstr ""
503
 
504
- #: inc/post-types.php:89
505
  msgid ""
506
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
507
  "registers a new post type entry for your install."
508
  msgstr ""
509
 
510
- #: inc/post-types.php:90
511
  msgid ""
512
  "Use appropriate checkbox above save/delete buttons if you wish to change "
513
  "slugs and update post types for existing posts."
514
  msgstr ""
515
 
516
- #: inc/post-types.php:91 inc/taxonomies.php:87
517
  msgid "Select: "
518
  msgstr ""
519
 
520
- #: inc/post-types.php:94 inc/taxonomies.php:91
521
  msgid "Select"
522
  msgstr ""
523
 
524
- #: inc/post-types.php:124
525
  #, fuzzy
526
  msgid "Post Type Slug"
527
  msgstr "文章类型名称"
528
 
529
- #: inc/post-types.php:125
530
  msgid "(e.g. movie)"
531
  msgstr ""
532
 
533
- #: inc/post-types.php:126
534
  msgid ""
535
  "The post type name. Used to retrieve custom post type content. Should be "
536
  "short and unique"
537
  msgstr ""
538
 
539
- #: inc/post-types.php:137 inc/taxonomies.php:129
540
  #, fuzzy
541
  msgid "Plural Label"
542
  msgstr "单数标签"
543
 
544
- #: inc/post-types.php:138
545
  msgid "(e.g. Movies)"
546
  msgstr ""
547
 
548
- #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
549
- #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
550
- #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
551
- #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
552
- #: inc/post-types.php:368
553
  msgid "Post type label. Used in the admin menu for displaying post types."
554
  msgstr ""
555
 
556
- #: inc/post-types.php:149 inc/taxonomies.php:138
557
  msgid "Singular Label"
558
  msgstr "单数标签"
559
 
560
- #: inc/post-types.php:150
561
  msgid "(e.g. Movie)"
562
  msgstr ""
563
 
564
- #: inc/post-types.php:151
565
  msgid ""
566
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
567
  "needed."
568
  msgstr ""
569
 
570
- #: inc/post-types.php:167
571
  msgid "Description"
572
  msgstr "描述"
573
 
574
- #: inc/post-types.php:168
575
  msgid ""
576
  "Custom Post Type Description. Describe what your custom post type is used "
577
  "for."
578
  msgstr ""
579
 
580
- #: inc/post-types.php:180
581
  msgid "Migrate posts to newly renamed post type?"
582
  msgstr ""
583
 
584
- #: inc/post-types.php:181
585
  msgid "Check this to migrate posts if and when renaming your post type."
586
  msgstr ""
587
 
588
- #: inc/post-types.php:190
589
  #, fuzzy
590
  msgid "Save Post Type"
591
  msgstr "附属到文章类型"
592
 
593
- #: inc/post-types.php:191
594
  #, fuzzy
595
  msgid "Delete Post Type"
596
  msgstr "已附属文章类型"
597
 
598
- #: inc/post-types.php:193
599
  #, fuzzy
600
  msgid "Add Post Type"
601
  msgstr "已附属文章类型"
602
 
603
- #: inc/post-types.php:204 inc/taxonomies.php:190
604
  msgid "Starter Notes"
605
  msgstr ""
606
 
607
- #: inc/post-types.php:207
608
  #, php-format
609
  msgid ""
610
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -613,7 +734,7 @@ msgid ""
613
  "revision, nav_menu_item."
614
  msgstr ""
615
 
616
- #: inc/post-types.php:208
617
  #, php-format
618
  msgid ""
619
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -622,7 +743,7 @@ msgid ""
622
  "post type name. Hover over the question mark for more details."
623
  msgstr ""
624
 
625
- #: inc/post-types.php:209
626
  #, fuzzy, php-format
627
  msgid ""
628
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -632,450 +753,505 @@ msgstr ""
632
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
633
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
634
 
635
- #: inc/post-types.php:223 inc/taxonomies.php:211
636
  #, fuzzy
637
  msgid "Menu Name"
638
  msgstr "名称"
639
 
640
- #: inc/post-types.php:224
641
  msgid "Custom menu name for your custom post type."
642
  msgstr ""
643
 
644
- #: inc/post-types.php:228
645
  msgid "(e.g. My Movies)"
646
  msgstr ""
647
 
648
- #: inc/post-types.php:235 inc/taxonomies.php:220
649
  msgid "All Items"
650
  msgstr "所有条目"
651
 
652
- #: inc/post-types.php:240
653
  msgid "(e.g. All Movies)"
654
  msgstr ""
655
 
656
- #: inc/post-types.php:247
657
  msgid "Add New"
658
  msgstr "添加"
659
 
660
- #: inc/post-types.php:252
661
  #, fuzzy
662
  msgid "(e.g. Add New)"
663
  msgstr "添加"
664
 
665
- #: inc/post-types.php:259 inc/taxonomies.php:256
666
  msgid "Add New Item"
667
  msgstr "添加新条目"
668
 
669
- #: inc/post-types.php:264
670
  msgid "(e.g. Add New Movie)"
671
  msgstr ""
672
 
673
- #: inc/post-types.php:276
 
 
 
 
674
  msgid "(e.g. Edit)"
675
  msgstr ""
676
 
677
- #: inc/post-types.php:283 inc/taxonomies.php:229
678
  msgid "Edit Item"
679
  msgstr "编辑条目"
680
 
681
- #: inc/post-types.php:288
682
  msgid "(e.g. Edit Movie)"
683
  msgstr ""
684
 
685
- #: inc/post-types.php:295
686
  msgid "New Item"
687
  msgstr "新条目"
688
 
689
- #: inc/post-types.php:300
690
  #, fuzzy
691
  msgid "(e.g. New Movie)"
692
  msgstr "添加新条目"
693
 
694
- #: inc/post-types.php:307
695
  msgid "View"
696
  msgstr "查看"
697
 
698
- #: inc/post-types.php:312
699
  msgid "(e.g. View)"
700
  msgstr ""
701
 
702
- #: inc/post-types.php:319 inc/taxonomies.php:238
703
  msgid "View Item"
704
  msgstr "查看条目"
705
 
706
- #: inc/post-types.php:324
707
  msgid "(e.g. View Movie)"
708
  msgstr ""
709
 
710
- #: inc/post-types.php:331
711
  #, fuzzy
712
  msgid "Search Item"
713
  msgstr "搜索条目"
714
 
715
- #: inc/post-types.php:336
716
  msgid "(e.g. Search Movie)"
717
  msgstr ""
718
 
719
- #: inc/post-types.php:343
720
  msgid "Not Found"
721
  msgstr "未找到"
722
 
723
- #: inc/post-types.php:348
724
  msgid "(e.g. No Movies found)"
725
  msgstr ""
726
 
727
- #: inc/post-types.php:355
728
  msgid "Not Found in Trash"
729
  msgstr "在回收站中没有找到"
730
 
731
- #: inc/post-types.php:360
732
  #, fuzzy
733
  msgid "(e.g. No Movies found in Trash)"
734
  msgstr "在回收站中没有找到"
735
 
736
- #: inc/post-types.php:367
737
  msgid "Parent"
738
  msgstr "上级"
739
 
740
- #: inc/post-types.php:372
741
  msgid "(e.g. Parent Movie)"
742
  msgstr ""
743
 
744
- #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
745
- #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
746
- #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
747
- #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
748
- #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
749
- #: inc/taxonomies.php:469
 
750
  msgid "False"
751
  msgstr ""
752
 
753
- #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
754
- #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
755
- #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
756
- #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
757
- #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
758
- #: inc/taxonomies.php:470
 
759
  msgid "True"
760
  msgstr ""
761
 
762
- #: inc/post-types.php:395
763
  msgid "Public"
764
  msgstr "公开"
765
 
766
- #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
767
- #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
768
- #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
769
- msgid "(default: True)"
770
  msgstr ""
771
 
772
- #: inc/post-types.php:397
773
  msgid ""
 
774
  "Whether posts of this type should be shown in the admin UI and is publicly "
775
  "queryable."
776
  msgstr ""
777
 
778
- #: inc/post-types.php:415 inc/taxonomies.php:375
779
  msgid "Show UI"
780
  msgstr "显示用户界面"
781
 
782
- #: inc/post-types.php:417
 
 
 
 
 
 
783
  msgid "Whether to generate a default UI for managing this post type."
784
  msgstr ""
785
 
786
- #: inc/post-types.php:425
787
- msgid "Has Archive"
 
 
 
 
 
788
  msgstr ""
789
 
790
- #: inc/post-types.php:426
791
- msgid "Whether the post type will have a post type archive URL."
792
  msgstr ""
793
 
794
- #: inc/post-types.php:427
795
- msgid "If left blank, the archive slug will default to the post type slug."
796
  msgstr ""
797
 
798
- #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
799
- #: inc/taxonomies.php:359 inc/taxonomies.php:479
 
800
  msgid "(default: False)"
801
  msgstr ""
802
 
803
- #: inc/post-types.php:453
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
804
  msgid "Slug to be used for archive URL."
805
  msgstr ""
806
 
807
- #: inc/post-types.php:473
808
  msgid "Exclude From Search"
809
  msgstr ""
810
 
811
- #: inc/post-types.php:475
812
  msgid ""
813
  "Whether to exclude posts with this post type from front end search results."
814
  msgstr ""
815
 
816
- #: inc/post-types.php:486
817
  msgid "Capability Type"
818
  msgstr "权限类型"
819
 
820
- #: inc/post-types.php:487
821
  msgid "The post type to use for checking read, edit, and delete capabilities"
822
  msgstr ""
823
 
824
- #: inc/post-types.php:504 inc/taxonomies.php:358
825
  msgid "Hierarchical"
826
  msgstr "层级"
827
 
828
- #: inc/post-types.php:506
829
  msgid "Whether the post type can have parent-child relationships"
830
  msgstr ""
831
 
832
- #: inc/post-types.php:524 inc/taxonomies.php:418
833
  msgid "Rewrite"
834
  msgstr "重写"
835
 
836
- #: inc/post-types.php:526
837
  msgid "Whether or not WordPress should use rewrites for this post type"
838
  msgstr ""
839
 
840
- #: inc/post-types.php:537 inc/taxonomies.php:429
841
  msgid "Custom Rewrite Slug"
842
  msgstr "自定义重写缩略名"
843
 
844
- #: inc/post-types.php:538
845
  msgid "(default: post type slug)"
846
  msgstr ""
847
 
848
- #: inc/post-types.php:539
849
  #, fuzzy
850
  msgid "Custom post type slug to use instead of the default."
851
  msgstr "自定义文章类型被成功删除"
852
 
853
- #: inc/post-types.php:556
854
  msgid "With Front"
855
  msgstr ""
856
 
857
- #: inc/post-types.php:558 inc/taxonomies.php:446
858
  msgid "Should the permastruct be prepended with the front base."
859
  msgstr ""
860
 
861
- #: inc/post-types.php:576 inc/taxonomies.php:392
862
  msgid "Query Var"
863
  msgstr "查询变量"
864
 
865
- #: inc/post-types.php:578
866
  msgid "Sets the query_var key for this post type."
867
  msgstr ""
868
 
869
- #: inc/post-types.php:586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
870
  msgid "Menu Position"
871
  msgstr "菜单位置"
872
 
873
- #: inc/post-types.php:587
874
  msgid ""
875
  "The position in the menu order the post type should appear. show_in_menu "
876
  "must be true."
877
  msgstr ""
878
 
879
- #: inc/post-types.php:588
880
  msgid ""
881
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
882
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
883
  "the \"menu_position\" section. Range of 5-100"
884
  msgstr ""
885
 
886
- #: inc/post-types.php:603
887
  msgid "Show in Menu"
888
  msgstr ""
889
 
890
- #: inc/post-types.php:604
891
  msgid ""
892
  "Whether to show the post type in the admin menu and where to show that menu."
893
  msgstr ""
894
 
895
- #: inc/post-types.php:605
896
  msgid ""
897
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
898
  "php\" is indicated for second input, post type will be sub menu of that."
899
  msgstr ""
900
 
901
- #: inc/post-types.php:631
902
  msgid "Top-level page file name to make post type a sub-menu of."
903
  msgstr ""
904
 
905
- #: inc/post-types.php:643
906
  #, fuzzy
907
  msgid "Menu Icon"
908
  msgstr "菜单位置"
909
 
910
- #: inc/post-types.php:644
911
  msgid "(Full URL for icon or Dashicon class)"
912
  msgstr ""
913
 
914
- #: inc/post-types.php:645
915
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
916
  msgstr ""
917
 
918
- #: inc/post-types.php:658
919
  msgid "Title"
920
  msgstr ""
921
 
922
- #: inc/post-types.php:659
923
  msgid "Adds the title meta box when creating content for this custom post type"
924
  msgstr ""
925
 
926
- #: inc/post-types.php:673
927
  #, fuzzy
928
  msgid "Editor"
929
  msgstr "编辑"
930
 
931
- #: inc/post-types.php:674
932
  msgid ""
933
  "Adds the content editor meta box when creating content for this custom post "
934
  "type"
935
  msgstr ""
936
 
937
- #: inc/post-types.php:688
938
  msgid "Excerpt"
939
  msgstr ""
940
 
941
- #: inc/post-types.php:689
942
  msgid ""
943
  "Adds the excerpt meta box when creating content for this custom post type"
944
  msgstr ""
945
 
946
- #: inc/post-types.php:703
947
  msgid "Trackbacks"
948
  msgstr ""
949
 
950
- #: inc/post-types.php:704
951
  msgid ""
952
  "Adds the trackbacks meta box when creating content for this custom post type"
953
  msgstr ""
954
 
955
- #: inc/post-types.php:718
956
  #, fuzzy
957
  msgid "Custom Fields"
958
  msgstr "自定义重写缩略名"
959
 
960
- #: inc/post-types.php:719
961
  msgid ""
962
  "Adds the custom fields meta box when creating content for this custom post "
963
  "type"
964
  msgstr ""
965
 
966
- #: inc/post-types.php:733
967
  msgid "Comments"
968
  msgstr ""
969
 
970
- #: inc/post-types.php:734
971
  msgid ""
972
  "Adds the comments meta box when creating content for this custom post type"
973
  msgstr ""
974
 
975
- #: inc/post-types.php:748
976
  msgid "Revisions"
977
  msgstr ""
978
 
979
- #: inc/post-types.php:749
980
  msgid ""
981
  "Adds the revisions meta box when creating content for this custom post type"
982
  msgstr ""
983
 
984
- #: inc/post-types.php:763
985
  msgid "Featured Image"
986
  msgstr ""
987
 
988
- #: inc/post-types.php:764
989
  msgid ""
990
  "Adds the featured image meta box when creating content for this custom post "
991
  "type"
992
  msgstr ""
993
 
994
- #: inc/post-types.php:778
995
  msgid "Author"
996
  msgstr ""
997
 
998
- #: inc/post-types.php:779
999
  msgid ""
1000
  "Adds the author meta box when creating content for this custom post type"
1001
  msgstr ""
1002
 
1003
- #: inc/post-types.php:793
1004
  msgid "Page Attributes"
1005
  msgstr ""
1006
 
1007
- #: inc/post-types.php:794
1008
  msgid ""
1009
  "Adds the page attribute meta box when creating content for this custom post "
1010
  "type"
1011
  msgstr ""
1012
 
1013
- #: inc/post-types.php:808
1014
  msgid "Post Formats"
1015
  msgstr ""
1016
 
1017
- #: inc/post-types.php:809
1018
  msgid "Adds post format support"
1019
  msgstr ""
1020
 
1021
- #: inc/post-types.php:814
1022
  msgid "Use the option below to explicitly set \"supports\" to false."
1023
  msgstr ""
1024
 
1025
- #: inc/post-types.php:822
1026
  msgid "None"
1027
  msgstr ""
1028
 
1029
- #: inc/post-types.php:823
1030
  msgid "Remove all support features"
1031
  msgstr ""
1032
 
1033
- #: inc/post-types.php:829
1034
  #, fuzzy
1035
  msgid "Custom \"Supports\""
1036
  msgstr "支持"
1037
 
1038
- #: inc/post-types.php:830
1039
  msgid ""
1040
  "Use this input to register custom \"supports\" values, separated by commas."
1041
  msgstr ""
1042
 
1043
- #: inc/post-types.php:836
1044
  msgid "Provide custom support slugs here."
1045
  msgstr ""
1046
 
1047
- #: inc/post-types.php:842
1048
  msgid "Built-in Taxonomies"
1049
  msgstr "内置类别"
1050
 
1051
- #: inc/post-types.php:871 inc/taxonomies.php:172
1052
  #, php-format
1053
  msgid "Adds %s support"
1054
  msgstr ""
1055
 
1056
- #: inc/post-types.php:977
1057
  msgid "Please provide a post type to delete"
1058
  msgstr ""
1059
 
1060
- #: inc/post-types.php:1037
1061
  msgid "Please provide a post type name"
1062
  msgstr ""
1063
 
1064
- #: inc/post-types.php:1061
1065
  msgid "Please do not use quotes in post type names or rewrite slugs"
1066
  msgstr ""
1067
 
1068
- #: inc/post-types.php:1068
1069
  #, php-format
1070
  msgid "Please choose a different post type name. %s is already registered."
1071
  msgstr ""
1072
 
1073
- #: inc/support.php:41
1074
  #, fuzzy
1075
  msgid "Custom Post Type UI Support"
1076
  msgstr "Custom Post Types UI"
1077
 
1078
- #: inc/support.php:43
1079
  #, php-format
1080
  msgid ""
1081
  "Please note that this plugin will NOT handle display of registered post "
@@ -1083,34 +1259,47 @@ msgid ""
1083
  "you. If all else fails, visit us on the %s"
1084
  msgstr ""
1085
 
1086
- #: inc/support.php:44
1087
  #, fuzzy
1088
  msgid "Support Forums"
1089
  msgstr "支持"
1090
 
1091
- #: inc/support.php:50
1092
  msgid "General"
1093
  msgstr ""
1094
 
1095
- #: inc/support.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
1096
  msgid ""
1097
  "I changed my custom post type name and now I can not get to my posts. How do "
1098
  "I get them back?"
1099
  msgstr ""
1100
 
1101
- #: inc/support.php:54
1102
  msgid ""
1103
  "You can either change the custom post type name back to the original name or "
1104
  "try the Post Type Switcher plugin"
1105
  msgstr ""
1106
 
1107
- #: inc/support.php:59
1108
  msgid ""
1109
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1110
  "shown. How do I remove the duplicate?"
1111
  msgstr ""
1112
 
1113
- #: inc/support.php:60
1114
  msgid ""
1115
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1116
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1118,37 +1307,55 @@ msgid ""
1118
  "delete the previous version's entry."
1119
  msgstr ""
1120
 
1121
- #: inc/support.php:63
1122
  msgid ""
1123
  "I have added post thumbnail and/or post format support to my post type, but "
1124
  "those do not appear when adding a post type post."
1125
  msgstr ""
1126
 
1127
- #: inc/support.php:64
1128
  msgid ""
1129
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1130
  msgstr ""
1131
 
1132
- #: inc/support.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1133
  msgid "Front-end Display"
1134
  msgstr ""
1135
 
1136
- #: inc/support.php:72
1137
  msgid "What template files should I edit to alter my post type display?"
1138
  msgstr ""
1139
 
1140
- #: inc/support.php:73
1141
  #, php-format
1142
  msgid ""
1143
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1144
  "details about available templates."
1145
  msgstr ""
1146
 
1147
- #: inc/support.php:80
1148
  msgid "How do I display my custom post type on my site?"
1149
  msgstr ""
1150
 
1151
- #: inc/support.php:81
1152
  #, php-format
1153
  msgid ""
1154
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1156,13 +1363,13 @@ msgid ""
1156
  "should be something like \"http://www.mysite.com/post-type-slug\""
1157
  msgstr ""
1158
 
1159
- #: inc/support.php:87
1160
  msgid ""
1161
  "I have added categories and tags to my custom post type, but they do not "
1162
  "appear in the archives."
1163
  msgstr ""
1164
 
1165
- #: inc/support.php:88
1166
  #, php-format
1167
  msgid ""
1168
  "You will need to add your newly created post type to the types that the "
@@ -1170,124 +1377,128 @@ msgid ""
1170
  "that at %s"
1171
  msgstr ""
1172
 
1173
- #: inc/support.php:97
1174
  msgid "Advanced"
1175
  msgstr ""
1176
 
1177
- #: inc/support.php:100
1178
  msgid "How do I add custom metaboxes to my post type?"
1179
  msgstr ""
1180
 
1181
- #: inc/support.php:102
1182
  #, php-format
1183
  msgid ""
1184
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1185
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1186
  msgstr ""
1187
 
1188
- #: inc/support.php:108
1189
  msgid ""
1190
  "How do I add a newly registered taxonomy to a post type that already exists?"
1191
  msgstr ""
1192
 
1193
- #: inc/support.php:110
1194
  #, php-format
1195
  msgid "Check out the %s function for documentation and usage examples."
1196
  msgstr ""
1197
 
1198
- #: inc/support.php:116
1199
  #, fuzzy
1200
  msgid "Post relationships?"
1201
  msgstr "附属到文章类型"
1202
 
1203
- #: inc/support.php:117
1204
  #, php-format
1205
  msgid ""
1206
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1207
  "plugin that should be a good start."
1208
  msgstr ""
1209
 
1210
- #: inc/support.php:126
1211
  msgid "Is there any function reference list?"
1212
  msgstr ""
1213
 
1214
- #: inc/support.php:127
1215
  #, php-format
1216
  msgid ""
1217
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1218
  "will be useful as they are attached to hooks."
1219
  msgstr ""
1220
 
1221
- #: inc/support.php:131
1222
  msgid ""
1223
  "How do I filter the \"enter title here\" text in the post editor screen?"
1224
  msgstr ""
1225
 
1226
- #: inc/support.php:132
1227
  msgid ""
1228
  "Change text inside the post/page editor title field. Should be able to adapt "
1229
  "as necessary."
1230
  msgstr ""
1231
 
1232
- #: inc/taxonomies.php:85
1233
  msgid ""
1234
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1235
  "registers a new taxonomy entry for your install."
1236
  msgstr ""
1237
 
1238
- #: inc/taxonomies.php:118
1239
  #, fuzzy
1240
  msgid "Taxonomy Slug"
1241
  msgstr "类别名称"
1242
 
1243
- #: inc/taxonomies.php:119
1244
  #, fuzzy
1245
  msgid "(e.g. actor)"
1246
  msgstr "添加或删除条目"
1247
 
1248
- #: inc/taxonomies.php:120
1249
  msgid ""
1250
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1251
  "and unique"
1252
  msgstr ""
1253
 
1254
- #: inc/taxonomies.php:128 inc/taxonomies.php:210
1255
  msgid "(e.g. Actors)"
1256
  msgstr ""
1257
 
1258
- #: inc/taxonomies.php:130
1259
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1260
  msgstr ""
1261
 
1262
- #: inc/taxonomies.php:137
1263
  msgid "(e.g. Actor)"
1264
  msgstr ""
1265
 
1266
- #: inc/taxonomies.php:139
1267
  msgid ""
1268
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1269
  msgstr ""
1270
 
1271
- #: inc/taxonomies.php:142
 
 
 
 
1272
  msgid "Attach to Post Type"
1273
  msgstr "附属到文章类型"
1274
 
1275
- #: inc/taxonomies.php:181
1276
  #, fuzzy
1277
  msgid "Save Taxonomy"
1278
  msgstr "类别名称"
1279
 
1280
- #: inc/taxonomies.php:182
1281
  #, fuzzy
1282
  msgid "Delete Taxonomy"
1283
  msgstr "创建自定义类别"
1284
 
1285
- #: inc/taxonomies.php:184
1286
  #, fuzzy
1287
  msgid "Add Taxonomy"
1288
  msgstr "类别名称"
1289
 
1290
- #: inc/taxonomies.php:193
1291
  #, php-format
1292
  msgid ""
1293
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1295,7 +1506,7 @@ msgid ""
1295
  "letters that do not have accents."
1296
  msgstr ""
1297
 
1298
- #: inc/taxonomies.php:194
1299
  #, php-format
1300
  msgid ""
1301
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1305,7 +1516,7 @@ msgid ""
1305
  "marks for more details."
1306
  msgstr ""
1307
 
1308
- #: inc/taxonomies.php:195
1309
  #, fuzzy, php-format
1310
  msgid ""
1311
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1316,198 +1527,203 @@ msgstr ""
1316
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1317
  "的重新创建您的类别,并且这些内容依旧存在。"
1318
 
1319
- #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1320
- #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1321
- #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1322
- #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1323
- #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1324
  msgid ""
1325
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1326
  msgstr ""
1327
 
1328
- #: inc/taxonomies.php:219
1329
  msgid "(e.g. All Actors)"
1330
  msgstr ""
1331
 
1332
- #: inc/taxonomies.php:228
1333
  msgid "(e.g. Edit Actor)"
1334
  msgstr ""
1335
 
1336
- #: inc/taxonomies.php:237
1337
  msgid "(e.g. View Actor)"
1338
  msgstr ""
1339
 
1340
- #: inc/taxonomies.php:246
1341
  msgid "(e.g. Update Actor Name)"
1342
  msgstr ""
1343
 
1344
- #: inc/taxonomies.php:247
1345
  #, fuzzy
1346
  msgid "Update Item Name"
1347
  msgstr "更新条目"
1348
 
1349
- #: inc/taxonomies.php:255
1350
  msgid "(e.g. Add New Actor)"
1351
  msgstr ""
1352
 
1353
- #: inc/taxonomies.php:264
1354
  msgid "(e.g. New Actor Name)"
1355
  msgstr ""
1356
 
1357
- #: inc/taxonomies.php:265
1358
  msgid "New Item Name"
1359
  msgstr "新条目名称"
1360
 
1361
- #: inc/taxonomies.php:273
1362
  msgid "(e.g. Parent Actor)"
1363
  msgstr ""
1364
 
1365
- #: inc/taxonomies.php:274
1366
  msgid "Parent Item"
1367
  msgstr "上级条目"
1368
 
1369
- #: inc/taxonomies.php:282
1370
  msgid "(e.g. Parent Actor:)"
1371
  msgstr ""
1372
 
1373
- #: inc/taxonomies.php:283
1374
  msgid "Parent Item Colon"
1375
  msgstr "上级条目:"
1376
 
1377
- #: inc/taxonomies.php:291
1378
  msgid "(e.g. Search Actors)"
1379
  msgstr ""
1380
 
1381
- #: inc/taxonomies.php:292
1382
  msgid "Search Items"
1383
  msgstr "搜索条目"
1384
 
1385
- #: inc/taxonomies.php:300
1386
  msgid "(e.g. Popular Actors)"
1387
  msgstr ""
1388
 
1389
- #: inc/taxonomies.php:301
1390
  msgid "Popular Items"
1391
  msgstr "热门条目"
1392
 
1393
- #: inc/taxonomies.php:309
1394
  #, fuzzy
1395
- msgid "(e.g. Separate actors with commas)"
1396
  msgstr "使用英文逗号隔开多个标签条目"
1397
 
1398
- #: inc/taxonomies.php:310
1399
  msgid "Separate Items with Commas"
1400
  msgstr "使用英文逗号隔开多个标签条目"
1401
 
1402
- #: inc/taxonomies.php:318
1403
  #, fuzzy
1404
- msgid "(e.g. Add or remove actors)"
1405
  msgstr "添加或删除条目"
1406
 
1407
- #: inc/taxonomies.php:319
1408
  msgid "Add or Remove Items"
1409
  msgstr "添加或删除条目"
1410
 
1411
- #: inc/taxonomies.php:327
1412
  #, fuzzy
1413
- msgid "(e.g. Choose from the most used actors)"
1414
  msgstr "使用次数最多"
1415
 
1416
- #: inc/taxonomies.php:328
1417
  msgid "Choose From Most Used"
1418
  msgstr "使用次数最多"
1419
 
1420
- #: inc/taxonomies.php:336
1421
- msgid "(e.g. No actors found)"
1422
- msgstr ""
 
1423
 
1424
- #: inc/taxonomies.php:337
1425
  #, fuzzy
1426
  msgid "Not found"
1427
  msgstr "未找到"
1428
 
1429
- #: inc/taxonomies.php:360
1430
  msgid "Whether the taxonomy can have parent-child relationships"
1431
  msgstr ""
1432
 
1433
- #: inc/taxonomies.php:377
1434
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1435
  msgstr ""
1436
 
1437
- #: inc/taxonomies.php:394
1438
  msgid "Sets the query_var key for this taxonomy."
1439
  msgstr ""
1440
 
1441
- #: inc/taxonomies.php:402
1442
- msgid "(default: none). Query Var needs to be true to use."
1443
  msgstr ""
1444
 
1445
- #: inc/taxonomies.php:403
1446
  msgid "Custom Query Var String"
1447
  msgstr ""
1448
 
1449
- #: inc/taxonomies.php:404
1450
  msgid "Sets a custom query_var slug for this taxonomy."
1451
  msgstr ""
1452
 
1453
- #: inc/taxonomies.php:420
1454
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1455
  msgstr ""
1456
 
1457
- #: inc/taxonomies.php:428
1458
  #, fuzzy
1459
  msgid "(default: taxonomy name)"
1460
  msgstr "新条目名称"
1461
 
1462
- #: inc/taxonomies.php:430
1463
  #, fuzzy
1464
  msgid "Custom taxonomy rewrite slug."
1465
  msgstr "自定义重写缩略名"
1466
 
1467
- #: inc/taxonomies.php:444
1468
  msgid "Rewrite With Front"
1469
  msgstr ""
1470
 
1471
- #: inc/taxonomies.php:445
1472
  msgid "(default: true)"
1473
  msgstr ""
1474
 
1475
- #: inc/taxonomies.php:461
1476
  #, fuzzy
1477
  msgid "Rewrite Hierarchical"
1478
  msgstr "层级"
1479
 
1480
- #: inc/taxonomies.php:462
1481
  msgid "(default: false)"
1482
  msgstr ""
1483
 
1484
- #: inc/taxonomies.php:463
1485
  msgid "Should the permastruct allow hierarchical urls."
1486
  msgstr ""
1487
 
1488
- #: inc/taxonomies.php:478
1489
  msgid "Show Admin Column"
1490
  msgstr ""
1491
 
1492
- #: inc/taxonomies.php:480
1493
  msgid ""
1494
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1495
  "types."
1496
  msgstr ""
1497
 
1498
- #: inc/taxonomies.php:585
 
 
 
 
1499
  msgid "Please provide a taxonomy to delete"
1500
  msgstr ""
1501
 
1502
- #: inc/taxonomies.php:636
1503
  msgid "Please provide a taxonomy name"
1504
  msgstr ""
1505
 
1506
- #: inc/taxonomies.php:652
1507
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1508
  msgstr ""
1509
 
1510
- #: inc/taxonomies.php:658
1511
  #, php-format
1512
  msgid "Please choose a different taxonomy name. %s is already used."
1513
  msgstr ""
@@ -1529,6 +1745,10 @@ msgstr ""
1529
  msgid "http://webdevstudios.com/"
1530
  msgstr ""
1531
 
 
 
 
 
1532
  #, fuzzy
1533
  #~ msgid "Edit Post Type"
1534
  #~ msgstr "附属到文章类型"
@@ -1537,14 +1757,6 @@ msgstr ""
1537
  #~ msgid "Edit Taxonomy"
1538
  #~ msgstr "编辑自定义类别"
1539
 
1540
- #, fuzzy
1541
- #~ msgid "Custom Query Var Slug"
1542
- #~ msgstr "自定义重写缩略名"
1543
-
1544
- #, fuzzy
1545
- #~ msgid "Show In Menu"
1546
- #~ msgstr "显示用户界面"
1547
-
1548
  #~ msgid "Plugin version"
1549
  #~ msgstr "插件版本"
1550
 
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-12-13 00:08-0600\n"
6
+ "PO-Revision-Date: 2015-12-13 00:08-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh_CN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
+ #: classes/class.cptui_debug_info.php:7
26
+ msgid ""
27
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
28
+ "requested to send the information below to the plugin developer. Simply "
29
+ "insert the email they provided in the input field at the bottom and click "
30
+ "the \"Send debug info\" button. Only the data below will be sent to them."
31
+ msgstr ""
32
+
33
+ #: classes/class.cptui_debug_info.php:186
34
+ #, php-format
35
+ msgid "CPTUI debug information for %s"
36
+ msgstr ""
37
+
38
+ #: custom-post-type-ui.php:61
39
  #, fuzzy
40
  msgid "Custom Post Types"
41
  msgstr "附属到文章类型"
42
 
43
+ #: custom-post-type-ui.php:61
44
  msgid "CPT UI"
45
  msgstr ""
46
 
47
+ #: custom-post-type-ui.php:62 inc/listings.php:155
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "编辑自定义文章类型"
51
 
52
+ #: custom-post-type-ui.php:63 inc/listings.php:287
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "内置类别"
56
 
57
+ #: custom-post-type-ui.php:64
58
  msgid "Registered Types and Taxes"
59
  msgstr ""
60
 
61
+ #: custom-post-type-ui.php:64
62
  msgid "Registered Types/Taxes"
63
  msgstr ""
64
 
65
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
66
  msgid "Import/Export"
67
  msgstr ""
68
 
69
+ #: custom-post-type-ui.php:66
70
  #, fuzzy
71
  msgid "Help/Support"
72
  msgstr "支持"
73
 
74
+ #: custom-post-type-ui.php:70
75
  msgid "About CPT UI"
76
  msgstr ""
77
 
78
  #. Plugin Name of the plugin/theme
79
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
80
  #, fuzzy
81
  msgid "Custom Post Type UI"
82
  msgstr "附属到文章类型"
83
 
84
+ #: custom-post-type-ui.php:385
85
  msgid ""
86
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
87
  "with our plugin provides efficiency and speed in creating post types and "
88
  "taxonomies, to better organize your content, without having to touch code."
89
  msgstr ""
90
 
91
+ #: custom-post-type-ui.php:387
92
+ #, php-format
93
+ msgid "What's new in version %s"
94
+ msgstr ""
95
+
96
+ #: custom-post-type-ui.php:392
97
+ msgid "Updated internationalization"
98
+ msgstr ""
99
+
100
+ #: custom-post-type-ui.php:393
101
+ msgid ""
102
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
103
+ "to help aid in translating Custom Post Type UI"
104
+ msgstr ""
105
+
106
+ #: custom-post-type-ui.php:396
107
+ msgid "Debugging information"
108
+ msgstr ""
109
+
110
+ #: custom-post-type-ui.php:397
111
+ msgid ""
112
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
113
+ "debugging issues with Custom Post Type UI."
114
+ msgstr ""
115
+
116
+ #: custom-post-type-ui.php:400
117
+ msgid "Improved accessibility"
118
+ msgstr ""
119
+
120
+ #: custom-post-type-ui.php:401
121
+ msgid ""
122
+ "A lot of work was done in the areas of accessibility to help aid users who "
123
+ "need it. If you have feedback on where it could be further improved, let us "
124
+ "know."
125
+ msgstr ""
126
+
127
+ #: custom-post-type-ui.php:404
128
+ msgid "WP REST API support"
129
+ msgstr ""
130
 
131
+ #: custom-post-type-ui.php:405
132
  msgid ""
133
+ "We now have support for the required fields for the WP REST API. Now you can "
134
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
135
+ "API lists."
 
136
  msgstr ""
137
 
138
+ #: custom-post-type-ui.php:408
139
+ msgid "More parameter support"
140
  msgstr ""
141
 
142
+ #: custom-post-type-ui.php:409
143
  msgid ""
144
+ "We have added more parameters for greater customization of your post type "
145
+ "and taxonomy settings."
 
146
  msgstr ""
147
 
148
+ #: custom-post-type-ui.php:412
149
+ msgid "New individual \"Get Code\" sections"
150
  msgstr ""
151
 
152
+ #: custom-post-type-ui.php:413
153
+ msgid ""
154
+ "The \"Get Code\" area now has support for copy/paste of individual post "
155
+ "types and taxonomies."
156
+ msgstr ""
157
+
158
+ #: custom-post-type-ui.php:416
159
+ #, fuzzy
160
+ msgid "Template hierarchy reference"
161
+ msgstr "层级"
162
+
163
+ #: custom-post-type-ui.php:417
164
  msgid ""
165
+ "To help aid your development with post types and taxonomies, we have added a "
166
+ "quick reference list of common template files you can use in your theme. "
167
+ "They will be listed on the \"Registered Types/Taxes\" screen."
168
  msgstr ""
169
 
170
+ #: custom-post-type-ui.php:422
171
  msgid "Help Support This Plugin!"
172
  msgstr ""
173
 
174
+ #: custom-post-type-ui.php:426
175
  msgid "Professional WordPress<br />Third Edition"
176
  msgstr ""
177
 
178
+ #: custom-post-type-ui.php:428
179
+ msgid "Professional WordPress Design and Development book cover."
180
+ msgstr ""
181
+
182
+ #: custom-post-type-ui.php:431
183
  msgid ""
184
  "The leading book on WordPress design and development! Brand new third "
185
  "edition!"
186
  msgstr ""
187
 
188
+ #: custom-post-type-ui.php:434
189
  msgid "Professional WordPress<br />Plugin Development"
190
  msgstr ""
191
 
192
+ #: custom-post-type-ui.php:436
193
+ msgid "Professional WordPress Pluing Development book cover."
194
+ msgstr ""
195
+
196
+ #: custom-post-type-ui.php:439
197
  msgid "Highest rated WordPress development book on Amazon!"
198
  msgstr ""
199
 
200
+ #: custom-post-type-ui.php:442
201
  msgid "PayPal Donation"
202
  msgstr ""
203
 
204
+ #: custom-post-type-ui.php:446
205
  msgid "PayPal - The safer, easier way to pay online!"
206
  msgstr ""
207
 
208
+ #: custom-post-type-ui.php:449
209
  msgid "Please donate to the development of Custom Post Type UI:"
210
  msgstr ""
211
 
212
+ #: custom-post-type-ui.php:475
213
  #, php-format
214
  msgid "%s version %s by %s"
215
  msgstr ""
216
 
217
+ #: custom-post-type-ui.php:486
218
  msgid "Please Report Bugs"
219
  msgstr ""
220
 
221
+ #: custom-post-type-ui.php:489
222
  msgid "Follow on Twitter:"
223
  msgstr ""
224
 
225
+ #: custom-post-type-ui.php:553
226
  #, fuzzy
227
  msgid "Manage Taxonomies"
228
  msgstr "管理自定义类别"
229
 
230
+ #: custom-post-type-ui.php:557
231
  #, fuzzy
232
  msgid "Manage Post Types"
233
  msgstr "管理自定义文章类型"
234
 
235
+ #: custom-post-type-ui.php:585
236
  #, fuzzy
237
  msgid "Add New Post Type"
238
  msgstr "已附属文章类型"
239
 
240
+ #: custom-post-type-ui.php:588
241
  #, fuzzy
242
  msgid "Edit Post Types"
243
  msgstr "编辑自定义文章类型"
244
 
245
+ #: custom-post-type-ui.php:592
246
  #, fuzzy
247
  msgid "Add New Taxonomy"
248
  msgstr "类别名称"
249
 
250
+ #: custom-post-type-ui.php:595
251
  #, fuzzy
252
  msgid "Edit Taxonomies"
253
  msgstr "内置类别"
254
 
255
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
 
256
  #, fuzzy
257
  msgid "Post Types"
258
  msgstr "文章类型名称"
259
 
260
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
261
+ #: inc/listings.php:161
262
  #, fuzzy
263
  msgid "Taxonomies"
264
  msgstr "内置类别"
265
 
266
+ #: custom-post-type-ui.php:601
267
  msgid "Get Code"
268
  msgstr ""
269
 
270
+ #: custom-post-type-ui.php:602
271
+ msgid "Debug Info"
272
+ msgstr ""
273
+
274
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
275
+ #: inc/post-types.php:420 inc/taxonomies.php:402
276
  msgid "Settings"
277
  msgstr ""
278
 
279
+ #: custom-post-type-ui.php:685
280
  msgid "Help"
281
  msgstr ""
282
 
283
+ #: custom-post-type-ui.php:714
284
  #, php-format
285
  msgid "%s has been successfully added"
286
  msgstr ""
287
 
288
+ #: custom-post-type-ui.php:716
289
  #, php-format
290
  msgid "%s has failed to be added"
291
  msgstr ""
292
 
293
+ #: custom-post-type-ui.php:720
294
  #, php-format
295
  msgid "%s has been successfully updated"
296
  msgstr ""
297
 
298
+ #: custom-post-type-ui.php:722
299
  #, php-format
300
  msgid "%s has failed to be updated"
301
  msgstr ""
302
 
303
+ #: custom-post-type-ui.php:726
304
  #, php-format
305
  msgid "%s has been successfully deleted"
306
  msgstr ""
307
 
308
+ #: custom-post-type-ui.php:728
309
  #, php-format
310
  msgid "%s has failed to be deleted"
311
  msgstr ""
312
 
313
+ #: custom-post-type-ui.php:732
314
  #, php-format
315
  msgid "%s has been successfully imported"
316
  msgstr ""
317
 
318
+ #: custom-post-type-ui.php:734
319
  #, php-format
320
  msgid "%s has failed to be imported"
321
  msgstr ""
322
 
323
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
324
  #, fuzzy, php-format
325
  msgid "Add new %s"
326
  msgstr "添加"
327
 
328
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
329
+ #: inc/listings.php:220
330
  #, fuzzy, php-format
331
  msgid "Edit %s"
332
  msgstr "编辑"
333
 
334
+ #: custom-post-type-ui.php:819
335
  #, php-format
336
  msgid "New %s"
337
  msgstr ""
338
 
339
+ #: custom-post-type-ui.php:820
340
  #, fuzzy, php-format
341
  msgid "View %s"
342
  msgstr "查看"
343
 
344
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
345
  #, fuzzy, php-format
346
  msgid "All %s"
347
  msgstr "所有条目"
348
 
349
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
350
  #, fuzzy, php-format
351
  msgid "Search %s"
352
  msgstr "搜索条目"
353
 
354
+ #: custom-post-type-ui.php:823
355
  #, fuzzy, php-format
356
  msgid "No %s found."
357
  msgstr "未找到"
358
 
359
+ #: custom-post-type-ui.php:824
360
  #, fuzzy, php-format
361
  msgid "No %s found in trash."
362
  msgstr "在回收站中没有找到"
363
 
364
+ #: custom-post-type-ui.php:828
365
  #, fuzzy, php-format
366
  msgid "Popular %s"
367
  msgstr "热门条目"
368
 
369
+ #: custom-post-type-ui.php:830
370
  #, fuzzy, php-format
371
  msgid "Parent %s"
372
  msgstr "上级"
373
 
374
+ #: custom-post-type-ui.php:831
375
  #, fuzzy, php-format
376
  msgid "Parent %s:"
377
  msgstr "上级"
378
 
379
+ #: custom-post-type-ui.php:833
380
  #, php-format
381
  msgid "Update %s"
382
  msgstr ""
383
 
384
+ #: custom-post-type-ui.php:835
385
  #, fuzzy, php-format
386
  msgid "New %s name"
387
  msgstr "新条目名称"
388
 
389
+ #: custom-post-type-ui.php:836
390
  #, fuzzy, php-format
391
  msgid "Separate %s with commas"
392
  msgstr "使用英文逗号隔开多个标签条目"
393
 
394
+ #: custom-post-type-ui.php:837
395
  #, fuzzy, php-format
396
  msgid "Add or remove %s"
397
  msgstr "添加或删除条目"
398
 
399
+ #: custom-post-type-ui.php:838
400
  #, fuzzy, php-format
401
  msgid "Choose from the most used %s"
402
  msgstr "使用次数最多"
403
 
404
+ #: inc/import_export.php:77
405
+ msgid "No taxonomies to display at this time"
406
+ msgstr ""
407
+
408
+ #: inc/import_export.php:184
409
+ msgid "No post types to display at this time"
410
+ msgstr ""
411
+
412
+ #: inc/import_export.php:372
413
+ #, fuzzy
414
+ msgid "Post types"
415
+ msgstr "文章类型名称"
416
+
417
+ #: inc/import_export.php:404
418
  msgid ""
419
  "If you are wanting to migrate registered post types or taxonomies from this "
420
  "site to another, that will also use Custom Post Type UI, use the import and "
422
  "the information in the \"Get Code\" tab."
423
  msgstr ""
424
 
425
+ #: inc/import_export.php:407
426
  msgid "NOTE"
427
  msgstr ""
428
 
429
+ #: inc/import_export.php:408
430
+ msgid ""
431
+ "This will not export the associated posts or taxonomy terms, just the "
432
+ "settings."
433
  msgstr ""
434
 
435
+ #: inc/import_export.php:415
436
  #, fuzzy
437
  msgid "Import Post Types"
438
  msgstr "已附属文章类型"
439
 
440
+ #: inc/import_export.php:419 inc/import_export.php:459
441
  #, fuzzy
442
  msgid "Paste content here."
443
  msgstr "特色内容"
444
 
445
+ #: inc/import_export.php:422 inc/import_export.php:462
446
  msgid "Note:"
447
  msgstr ""
448
 
449
+ #: inc/import_export.php:422 inc/import_export.php:462
450
  msgid "Importing will overwrite previous registered settings."
451
  msgstr ""
452
 
453
+ #: inc/import_export.php:426
454
  msgid ""
455
  "To import post types from a different WordPress site, paste the exported "
456
  "content from that site and click the \"Import\" button."
457
  msgstr ""
458
 
459
+ #: inc/import_export.php:430 inc/import_export.php:470
460
  msgid "Import"
461
  msgstr ""
462
 
463
+ #: inc/import_export.php:435
464
  #, fuzzy
465
  msgid "Export Post Types"
466
  msgstr "已附属文章类型"
467
 
468
+ #: inc/import_export.php:442
469
  msgid "No post types registered yet."
470
  msgstr ""
471
 
472
+ #: inc/import_export.php:445 inc/import_export.php:485
473
  msgid ""
474
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
475
  "(Mac)."
476
  msgstr ""
477
 
478
+ #: inc/import_export.php:448
479
  msgid ""
480
  "Use the content above to import current post types into a different "
481
  "WordPress site. You can also use this to simply back up your post type "
482
  "settings."
483
  msgstr ""
484
 
485
+ #: inc/import_export.php:455
486
  #, fuzzy
487
  msgid "Import Taxonomies"
488
  msgstr "内置类别"
489
 
490
+ #: inc/import_export.php:466
491
  msgid ""
492
  "To import taxonomies from a different WordPress site, paste the exported "
493
  "content from that site and click the \"Import\" button."
494
  msgstr ""
495
 
496
+ #: inc/import_export.php:475
497
  #, fuzzy
498
  msgid "Export Taxonomies"
499
  msgstr "内置类别"
500
 
501
+ #: inc/import_export.php:482
502
  msgid "No taxonomies registered yet."
503
  msgstr ""
504
 
505
+ #: inc/import_export.php:488
506
  msgid ""
507
  "Use the content above to import current taxonomies into a different "
508
  "WordPress site. You can also use this to simply back up your taxonomy "
509
  "settings."
510
  msgstr ""
511
 
512
+ #: inc/import_export.php:499
513
  msgid "Get Post Type and Taxonomy Code"
514
  msgstr ""
515
 
516
+ #: inc/import_export.php:501
517
  #, fuzzy
518
  msgid "All CPT UI Post Types"
519
  msgstr "其它自定义文章类型"
520
 
521
+ #: inc/import_export.php:504 inc/import_export.php:513
522
+ #: inc/import_export.php:521 inc/import_export.php:530
523
  msgid "Copy/paste the code below into your functions.php file."
524
  msgstr ""
525
 
526
+ #: inc/import_export.php:512
527
+ #, fuzzy, php-format
528
+ msgid "%s Post Type"
529
+ msgstr "附属到文章类型"
530
+
531
+ #: inc/import_export.php:518
532
  #, fuzzy
533
  msgid "All CPT UI Taxonomies"
534
  msgstr "内置类别"
535
 
536
+ #: inc/import_export.php:529
537
+ #, fuzzy, php-format
538
+ msgid "%s Taxonomy"
539
+ msgstr "类别名称"
540
 
541
+ #: inc/import_export.php:549
542
+ msgid "Please provide an email address to send debug information to: "
543
  msgstr ""
544
 
545
+ #: inc/import_export.php:551
546
+ msgid "Send debug info"
547
+ msgstr ""
 
548
 
549
  #: inc/listings.php:10
550
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
551
  msgstr ""
552
 
553
+ #: inc/listings.php:16 inc/listings.php:164
554
  #, php-format
555
  msgid "Total count: %d"
556
  msgstr ""
557
 
558
+ #: inc/listings.php:21
559
  #, fuzzy
560
  msgid "Post Type"
561
  msgstr "附属到文章类型"
562
 
563
+ #: inc/listings.php:23 inc/post-types.php:754
564
  msgid "Supports"
565
  msgstr "支持"
566
 
567
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
568
+ #: inc/taxonomies.php:260
569
  #, fuzzy
570
  msgid "Labels"
571
  msgstr "标签"
572
 
573
+ #: inc/listings.php:26 inc/listings.php:173
574
+ #, fuzzy
575
+ msgid "Template Hierarchy"
576
+ msgstr "层级"
577
 
578
+ #: inc/listings.php:81
579
  msgid "View frontend archive"
580
  msgstr ""
581
 
582
+ #: inc/listings.php:114 inc/listings.php:249
583
  msgid "No custom labels to display"
584
  msgstr ""
585
 
586
+ #: inc/listings.php:119
587
+ msgid "Archives file name examples."
588
+ msgstr ""
589
+
590
+ #: inc/listings.php:125
591
+ msgid "Single Posts file name examples."
592
+ msgstr ""
593
+
594
+ #: inc/listings.php:134 inc/listings.php:267
595
+ msgid "Template hierarchy Theme Handbook"
596
+ msgstr ""
597
+
598
+ #: inc/listings.php:152
599
+ #, php-format
600
+ msgid "No post types registered for display. Visit %s to get started."
601
+ msgstr ""
602
+
603
+ #: inc/listings.php:169
604
  #, fuzzy
605
  msgid "Taxonomy"
606
  msgstr "类别名称"
607
 
608
+ #: inc/listings.php:254
609
+ msgid "Archives"
610
+ msgstr ""
611
+
612
+ #: inc/listings.php:263
613
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
614
+ msgstr ""
615
+
616
+ #: inc/listings.php:284
617
+ #, php-format
618
+ msgid "No taxonomies registered for display. Visit %s to get started."
619
+ msgstr ""
620
+
621
+ #: inc/post-types.php:34 inc/taxonomies.php:29
622
  msgid "Are you sure you want to delete this?"
623
  msgstr ""
624
 
625
+ #: inc/post-types.php:93
626
  msgid ""
627
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
628
  "registers a new post type entry for your install."
629
  msgstr ""
630
 
631
+ #: inc/post-types.php:94
632
  msgid ""
633
  "Use appropriate checkbox above save/delete buttons if you wish to change "
634
  "slugs and update post types for existing posts."
635
  msgstr ""
636
 
637
+ #: inc/post-types.php:95 inc/taxonomies.php:90
638
  msgid "Select: "
639
  msgstr ""
640
 
641
+ #: inc/post-types.php:107 inc/taxonomies.php:102
642
  msgid "Select"
643
  msgstr ""
644
 
645
+ #: inc/post-types.php:137
646
  #, fuzzy
647
  msgid "Post Type Slug"
648
  msgstr "文章类型名称"
649
 
650
+ #: inc/post-types.php:138
651
  msgid "(e.g. movie)"
652
  msgstr ""
653
 
654
+ #: inc/post-types.php:139
655
  msgid ""
656
  "The post type name. Used to retrieve custom post type content. Should be "
657
  "short and unique"
658
  msgstr ""
659
 
660
+ #: inc/post-types.php:150 inc/taxonomies.php:140
661
  #, fuzzy
662
  msgid "Plural Label"
663
  msgstr "单数标签"
664
 
665
+ #: inc/post-types.php:151
666
  msgid "(e.g. Movies)"
667
  msgstr ""
668
 
669
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
670
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
671
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
672
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
673
+ #: inc/post-types.php:411
674
  msgid "Post type label. Used in the admin menu for displaying post types."
675
  msgstr ""
676
 
677
+ #: inc/post-types.php:162 inc/taxonomies.php:149
678
  msgid "Singular Label"
679
  msgstr "单数标签"
680
 
681
+ #: inc/post-types.php:163
682
  msgid "(e.g. Movie)"
683
  msgstr ""
684
 
685
+ #: inc/post-types.php:164
686
  msgid ""
687
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
688
  "needed."
689
  msgstr ""
690
 
691
+ #: inc/post-types.php:180 inc/taxonomies.php:166
692
  msgid "Description"
693
  msgstr "描述"
694
 
695
+ #: inc/post-types.php:181
696
  msgid ""
697
  "Custom Post Type Description. Describe what your custom post type is used "
698
  "for."
699
  msgstr ""
700
 
701
+ #: inc/post-types.php:193
702
  msgid "Migrate posts to newly renamed post type?"
703
  msgstr ""
704
 
705
+ #: inc/post-types.php:194
706
  msgid "Check this to migrate posts if and when renaming your post type."
707
  msgstr ""
708
 
709
+ #: inc/post-types.php:213
710
  #, fuzzy
711
  msgid "Save Post Type"
712
  msgstr "附属到文章类型"
713
 
714
+ #: inc/post-types.php:224
715
  #, fuzzy
716
  msgid "Delete Post Type"
717
  msgstr "已附属文章类型"
718
 
719
+ #: inc/post-types.php:236
720
  #, fuzzy
721
  msgid "Add Post Type"
722
  msgstr "已附属文章类型"
723
 
724
+ #: inc/post-types.php:247 inc/taxonomies.php:249
725
  msgid "Starter Notes"
726
  msgstr ""
727
 
728
+ #: inc/post-types.php:250
729
  #, php-format
730
  msgid ""
731
  "Post Type names should have %smax 20 characters%s, and only contain "
734
  "revision, nav_menu_item."
735
  msgstr ""
736
 
737
+ #: inc/post-types.php:251
738
  #, php-format
739
  msgid ""
740
  "If you are unfamiliar with the advanced post type settings, just fill in the "
743
  "post type name. Hover over the question mark for more details."
744
  msgstr ""
745
 
746
+ #: inc/post-types.php:252
747
  #, fuzzy, php-format
748
  msgid ""
749
  "Deleting custom post types will %sNOT%s delete any content into the database "
753
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
754
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
755
 
756
+ #: inc/post-types.php:266 inc/taxonomies.php:270
757
  #, fuzzy
758
  msgid "Menu Name"
759
  msgstr "名称"
760
 
761
+ #: inc/post-types.php:267
762
  msgid "Custom menu name for your custom post type."
763
  msgstr ""
764
 
765
+ #: inc/post-types.php:271
766
  msgid "(e.g. My Movies)"
767
  msgstr ""
768
 
769
+ #: inc/post-types.php:278 inc/taxonomies.php:279
770
  msgid "All Items"
771
  msgstr "所有条目"
772
 
773
+ #: inc/post-types.php:283
774
  msgid "(e.g. All Movies)"
775
  msgstr ""
776
 
777
+ #: inc/post-types.php:290
778
  msgid "Add New"
779
  msgstr "添加"
780
 
781
+ #: inc/post-types.php:295
782
  #, fuzzy
783
  msgid "(e.g. Add New)"
784
  msgstr "添加"
785
 
786
+ #: inc/post-types.php:302 inc/taxonomies.php:315
787
  msgid "Add New Item"
788
  msgstr "添加新条目"
789
 
790
+ #: inc/post-types.php:307
791
  msgid "(e.g. Add New Movie)"
792
  msgstr ""
793
 
794
+ #: inc/post-types.php:314
795
+ msgid "Edit"
796
+ msgstr "编辑"
797
+
798
+ #: inc/post-types.php:319
799
  msgid "(e.g. Edit)"
800
  msgstr ""
801
 
802
+ #: inc/post-types.php:326 inc/taxonomies.php:288
803
  msgid "Edit Item"
804
  msgstr "编辑条目"
805
 
806
+ #: inc/post-types.php:331
807
  msgid "(e.g. Edit Movie)"
808
  msgstr ""
809
 
810
+ #: inc/post-types.php:338
811
  msgid "New Item"
812
  msgstr "新条目"
813
 
814
+ #: inc/post-types.php:343
815
  #, fuzzy
816
  msgid "(e.g. New Movie)"
817
  msgstr "添加新条目"
818
 
819
+ #: inc/post-types.php:350
820
  msgid "View"
821
  msgstr "查看"
822
 
823
+ #: inc/post-types.php:355
824
  msgid "(e.g. View)"
825
  msgstr ""
826
 
827
+ #: inc/post-types.php:362 inc/taxonomies.php:297
828
  msgid "View Item"
829
  msgstr "查看条目"
830
 
831
+ #: inc/post-types.php:367
832
  msgid "(e.g. View Movie)"
833
  msgstr ""
834
 
835
+ #: inc/post-types.php:374
836
  #, fuzzy
837
  msgid "Search Item"
838
  msgstr "搜索条目"
839
 
840
+ #: inc/post-types.php:379
841
  msgid "(e.g. Search Movie)"
842
  msgstr ""
843
 
844
+ #: inc/post-types.php:386
845
  msgid "Not Found"
846
  msgstr "未找到"
847
 
848
+ #: inc/post-types.php:391
849
  msgid "(e.g. No Movies found)"
850
  msgstr ""
851
 
852
+ #: inc/post-types.php:398
853
  msgid "Not Found in Trash"
854
  msgstr "在回收站中没有找到"
855
 
856
+ #: inc/post-types.php:403
857
  #, fuzzy
858
  msgid "(e.g. No Movies found in Trash)"
859
  msgstr "在回收站中没有找到"
860
 
861
+ #: inc/post-types.php:410
862
  msgid "Parent"
863
  msgstr "上级"
864
 
865
+ #: inc/post-types.php:415
866
  msgid "(e.g. Parent Movie)"
867
  msgstr ""
868
 
869
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
870
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
871
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
872
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
873
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
874
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
875
+ #: inc/taxonomies.php:548
876
  msgid "False"
877
  msgstr ""
878
 
879
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
880
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
881
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
882
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
883
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
884
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
885
+ #: inc/taxonomies.php:549
886
  msgid "True"
887
  msgstr ""
888
 
889
+ #: inc/post-types.php:438
890
  msgid "Public"
891
  msgstr "公开"
892
 
893
+ #: inc/post-types.php:439
894
+ msgid "(CPTUI default: True.)"
 
 
895
  msgstr ""
896
 
897
+ #: inc/post-types.php:440
898
  msgid ""
899
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
900
  "Whether posts of this type should be shown in the admin UI and is publicly "
901
  "queryable."
902
  msgstr ""
903
 
904
+ #: inc/post-types.php:458 inc/taxonomies.php:434
905
  msgid "Show UI"
906
  msgstr "显示用户界面"
907
 
908
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
909
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
910
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
911
+ msgid "(default: True)"
912
+ msgstr ""
913
+
914
+ #: inc/post-types.php:460
915
  msgid "Whether to generate a default UI for managing this post type."
916
  msgstr ""
917
 
918
+ #: inc/post-types.php:478
919
+ #, fuzzy
920
+ msgid "Show in Nav Menus"
921
+ msgstr "显示用户界面"
922
+
923
+ #: inc/post-types.php:479
924
+ msgid "(CPTUI default: true)"
925
  msgstr ""
926
 
927
+ #: inc/post-types.php:480
928
+ msgid "Whether post type is available for selection in navigation menus."
929
  msgstr ""
930
 
931
+ #: inc/post-types.php:498 inc/taxonomies.php:557
932
+ msgid "Show in REST API"
933
  msgstr ""
934
 
935
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
936
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
937
+ #: inc/taxonomies.php:558
938
  msgid "(default: False)"
939
  msgstr ""
940
 
941
+ #: inc/post-types.php:500
942
+ msgid "Whether to show this post type data in the WP REST API."
943
+ msgstr ""
944
+
945
+ #: inc/post-types.php:508 inc/taxonomies.php:567
946
+ msgid "REST API base slug"
947
+ msgstr ""
948
+
949
+ #: inc/post-types.php:509 inc/taxonomies.php:568
950
+ msgid "Slug to use in REST API URLs."
951
+ msgstr ""
952
+
953
+ #: inc/post-types.php:519
954
+ msgid "Has Archive"
955
+ msgstr ""
956
+
957
+ #: inc/post-types.php:520
958
+ msgid "Whether the post type will have a post type archive URL."
959
+ msgstr ""
960
+
961
+ #: inc/post-types.php:521
962
+ msgid "If left blank, the archive slug will default to the post type slug."
963
+ msgstr ""
964
+
965
+ #: inc/post-types.php:547
966
  msgid "Slug to be used for archive URL."
967
  msgstr ""
968
 
969
+ #: inc/post-types.php:567
970
  msgid "Exclude From Search"
971
  msgstr ""
972
 
973
+ #: inc/post-types.php:569
974
  msgid ""
975
  "Whether to exclude posts with this post type from front end search results."
976
  msgstr ""
977
 
978
+ #: inc/post-types.php:580
979
  msgid "Capability Type"
980
  msgstr "权限类型"
981
 
982
+ #: inc/post-types.php:581
983
  msgid "The post type to use for checking read, edit, and delete capabilities"
984
  msgstr ""
985
 
986
+ #: inc/post-types.php:598 inc/taxonomies.php:417
987
  msgid "Hierarchical"
988
  msgstr "层级"
989
 
990
+ #: inc/post-types.php:600
991
  msgid "Whether the post type can have parent-child relationships"
992
  msgstr ""
993
 
994
+ #: inc/post-types.php:618 inc/taxonomies.php:477
995
  msgid "Rewrite"
996
  msgstr "重写"
997
 
998
+ #: inc/post-types.php:620
999
  msgid "Whether or not WordPress should use rewrites for this post type"
1000
  msgstr ""
1001
 
1002
+ #: inc/post-types.php:631 inc/taxonomies.php:488
1003
  msgid "Custom Rewrite Slug"
1004
  msgstr "自定义重写缩略名"
1005
 
1006
+ #: inc/post-types.php:632
1007
  msgid "(default: post type slug)"
1008
  msgstr ""
1009
 
1010
+ #: inc/post-types.php:633
1011
  #, fuzzy
1012
  msgid "Custom post type slug to use instead of the default."
1013
  msgstr "自定义文章类型被成功删除"
1014
 
1015
+ #: inc/post-types.php:650
1016
  msgid "With Front"
1017
  msgstr ""
1018
 
1019
+ #: inc/post-types.php:652 inc/taxonomies.php:505
1020
  msgid "Should the permastruct be prepended with the front base."
1021
  msgstr ""
1022
 
1023
+ #: inc/post-types.php:670 inc/taxonomies.php:451
1024
  msgid "Query Var"
1025
  msgstr "查询变量"
1026
 
1027
+ #: inc/post-types.php:672
1028
  msgid "Sets the query_var key for this post type."
1029
  msgstr ""
1030
 
1031
+ #: inc/post-types.php:683
1032
+ #, fuzzy
1033
+ msgid "Custom Query Var Slug"
1034
+ msgstr "自定义重写缩略名"
1035
+
1036
+ #: inc/post-types.php:684
1037
+ msgid "(default: post type slug) Query var needs to be true to use."
1038
+ msgstr ""
1039
+
1040
+ #: inc/post-types.php:685
1041
+ #, fuzzy
1042
+ msgid "Custom query var slug to use instead of the default."
1043
+ msgstr "自定义文章类型被成功删除"
1044
+
1045
+ #: inc/post-types.php:692
1046
  msgid "Menu Position"
1047
  msgstr "菜单位置"
1048
 
1049
+ #: inc/post-types.php:693
1050
  msgid ""
1051
  "The position in the menu order the post type should appear. show_in_menu "
1052
  "must be true."
1053
  msgstr ""
1054
 
1055
+ #: inc/post-types.php:694
1056
  msgid ""
1057
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1058
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
1059
  "the \"menu_position\" section. Range of 5-100"
1060
  msgstr ""
1061
 
1062
+ #: inc/post-types.php:709
1063
  msgid "Show in Menu"
1064
  msgstr ""
1065
 
1066
+ #: inc/post-types.php:710
1067
  msgid ""
1068
  "Whether to show the post type in the admin menu and where to show that menu."
1069
  msgstr ""
1070
 
1071
+ #: inc/post-types.php:711
1072
  msgid ""
1073
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1074
  "php\" is indicated for second input, post type will be sub menu of that."
1075
  msgstr ""
1076
 
1077
+ #: inc/post-types.php:737
1078
  msgid "Top-level page file name to make post type a sub-menu of."
1079
  msgstr ""
1080
 
1081
+ #: inc/post-types.php:749
1082
  #, fuzzy
1083
  msgid "Menu Icon"
1084
  msgstr "菜单位置"
1085
 
1086
+ #: inc/post-types.php:750
1087
  msgid "(Full URL for icon or Dashicon class)"
1088
  msgstr ""
1089
 
1090
+ #: inc/post-types.php:751
1091
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1092
  msgstr ""
1093
 
1094
+ #: inc/post-types.php:764
1095
  msgid "Title"
1096
  msgstr ""
1097
 
1098
+ #: inc/post-types.php:765
1099
  msgid "Adds the title meta box when creating content for this custom post type"
1100
  msgstr ""
1101
 
1102
+ #: inc/post-types.php:779
1103
  #, fuzzy
1104
  msgid "Editor"
1105
  msgstr "编辑"
1106
 
1107
+ #: inc/post-types.php:780
1108
  msgid ""
1109
  "Adds the content editor meta box when creating content for this custom post "
1110
  "type"
1111
  msgstr ""
1112
 
1113
+ #: inc/post-types.php:794
1114
  msgid "Excerpt"
1115
  msgstr ""
1116
 
1117
+ #: inc/post-types.php:795
1118
  msgid ""
1119
  "Adds the excerpt meta box when creating content for this custom post type"
1120
  msgstr ""
1121
 
1122
+ #: inc/post-types.php:809
1123
  msgid "Trackbacks"
1124
  msgstr ""
1125
 
1126
+ #: inc/post-types.php:810
1127
  msgid ""
1128
  "Adds the trackbacks meta box when creating content for this custom post type"
1129
  msgstr ""
1130
 
1131
+ #: inc/post-types.php:824
1132
  #, fuzzy
1133
  msgid "Custom Fields"
1134
  msgstr "自定义重写缩略名"
1135
 
1136
+ #: inc/post-types.php:825
1137
  msgid ""
1138
  "Adds the custom fields meta box when creating content for this custom post "
1139
  "type"
1140
  msgstr ""
1141
 
1142
+ #: inc/post-types.php:839
1143
  msgid "Comments"
1144
  msgstr ""
1145
 
1146
+ #: inc/post-types.php:840
1147
  msgid ""
1148
  "Adds the comments meta box when creating content for this custom post type"
1149
  msgstr ""
1150
 
1151
+ #: inc/post-types.php:854
1152
  msgid "Revisions"
1153
  msgstr ""
1154
 
1155
+ #: inc/post-types.php:855
1156
  msgid ""
1157
  "Adds the revisions meta box when creating content for this custom post type"
1158
  msgstr ""
1159
 
1160
+ #: inc/post-types.php:869
1161
  msgid "Featured Image"
1162
  msgstr ""
1163
 
1164
+ #: inc/post-types.php:870
1165
  msgid ""
1166
  "Adds the featured image meta box when creating content for this custom post "
1167
  "type"
1168
  msgstr ""
1169
 
1170
+ #: inc/post-types.php:884
1171
  msgid "Author"
1172
  msgstr ""
1173
 
1174
+ #: inc/post-types.php:885
1175
  msgid ""
1176
  "Adds the author meta box when creating content for this custom post type"
1177
  msgstr ""
1178
 
1179
+ #: inc/post-types.php:899
1180
  msgid "Page Attributes"
1181
  msgstr ""
1182
 
1183
+ #: inc/post-types.php:900
1184
  msgid ""
1185
  "Adds the page attribute meta box when creating content for this custom post "
1186
  "type"
1187
  msgstr ""
1188
 
1189
+ #: inc/post-types.php:914
1190
  msgid "Post Formats"
1191
  msgstr ""
1192
 
1193
+ #: inc/post-types.php:915
1194
  msgid "Adds post format support"
1195
  msgstr ""
1196
 
1197
+ #: inc/post-types.php:920
1198
  msgid "Use the option below to explicitly set \"supports\" to false."
1199
  msgstr ""
1200
 
1201
+ #: inc/post-types.php:928
1202
  msgid "None"
1203
  msgstr ""
1204
 
1205
+ #: inc/post-types.php:929
1206
  msgid "Remove all support features"
1207
  msgstr ""
1208
 
1209
+ #: inc/post-types.php:936
1210
  #, fuzzy
1211
  msgid "Custom \"Supports\""
1212
  msgstr "支持"
1213
 
1214
+ #: inc/post-types.php:937
1215
  msgid ""
1216
  "Use this input to register custom \"supports\" values, separated by commas."
1217
  msgstr ""
1218
 
1219
+ #: inc/post-types.php:943
1220
  msgid "Provide custom support slugs here."
1221
  msgstr ""
1222
 
1223
+ #: inc/post-types.php:949
1224
  msgid "Built-in Taxonomies"
1225
  msgstr "内置类别"
1226
 
1227
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1228
  #, php-format
1229
  msgid "Adds %s support"
1230
  msgstr ""
1231
 
1232
+ #: inc/post-types.php:1085
1233
  msgid "Please provide a post type to delete"
1234
  msgstr ""
1235
 
1236
+ #: inc/post-types.php:1145
1237
  msgid "Please provide a post type name"
1238
  msgstr ""
1239
 
1240
+ #: inc/post-types.php:1169
1241
  msgid "Please do not use quotes in post type names or rewrite slugs"
1242
  msgstr ""
1243
 
1244
+ #: inc/post-types.php:1176
1245
  #, php-format
1246
  msgid "Please choose a different post type name. %s is already registered."
1247
  msgstr ""
1248
 
1249
+ #: inc/support.php:45
1250
  #, fuzzy
1251
  msgid "Custom Post Type UI Support"
1252
  msgstr "Custom Post Types UI"
1253
 
1254
+ #: inc/support.php:47
1255
  #, php-format
1256
  msgid ""
1257
  "Please note that this plugin will NOT handle display of registered post "
1259
  "you. If all else fails, visit us on the %s"
1260
  msgstr ""
1261
 
1262
+ #: inc/support.php:48
1263
  #, fuzzy
1264
  msgid "Support Forums"
1265
  msgstr "支持"
1266
 
1267
+ #: inc/support.php:54
1268
  msgid "General"
1269
  msgstr ""
1270
 
1271
+ #: inc/support.php:57
1272
+ msgid ""
1273
+ "I have post types with spaces in their slug and can not successfully delete "
1274
+ "them. How can I fix that?"
1275
+ msgstr ""
1276
+
1277
+ #: inc/support.php:58
1278
+ msgid ""
1279
+ "Visit the Import/Export page and copy the export code into the import side "
1280
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1281
+ "You should be able to delete the individual post types afterwards."
1282
+ msgstr ""
1283
+
1284
+ #: inc/support.php:62
1285
  msgid ""
1286
  "I changed my custom post type name and now I can not get to my posts. How do "
1287
  "I get them back?"
1288
  msgstr ""
1289
 
1290
+ #: inc/support.php:63
1291
  msgid ""
1292
  "You can either change the custom post type name back to the original name or "
1293
  "try the Post Type Switcher plugin"
1294
  msgstr ""
1295
 
1296
+ #: inc/support.php:68
1297
  msgid ""
1298
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1299
  "shown. How do I remove the duplicate?"
1300
  msgstr ""
1301
 
1302
+ #: inc/support.php:69
1303
  msgid ""
1304
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1305
  "saved option which gets registered as its own post type or taxonomy. Since "
1307
  "delete the previous version's entry."
1308
  msgstr ""
1309
 
1310
+ #: inc/support.php:72
1311
  msgid ""
1312
  "I have added post thumbnail and/or post format support to my post type, but "
1313
  "those do not appear when adding a post type post."
1314
  msgstr ""
1315
 
1316
+ #: inc/support.php:73
1317
  msgid ""
1318
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1319
  msgstr ""
1320
 
1321
+ #: inc/support.php:76
1322
+ msgid "Do you have any recommendations for an alternative to Visual Composer."
1323
+ msgstr ""
1324
+
1325
+ #: inc/support.php:77
1326
+ msgid "We recommend using VelocityPage."
1327
+ msgstr ""
1328
+
1329
+ #: inc/support.php:82
1330
+ msgid ""
1331
+ "Is there any way to get CPTUI-registered post types working with Visual "
1332
+ "Composer Media Grid?"
1333
+ msgstr ""
1334
+
1335
+ #: inc/support.php:84
1336
+ msgid "Please see the solution from the following forum support thread."
1337
+ msgstr ""
1338
+
1339
+ #: inc/support.php:91
1340
  msgid "Front-end Display"
1341
  msgstr ""
1342
 
1343
+ #: inc/support.php:94
1344
  msgid "What template files should I edit to alter my post type display?"
1345
  msgstr ""
1346
 
1347
+ #: inc/support.php:95
1348
  #, php-format
1349
  msgid ""
1350
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1351
  "details about available templates."
1352
  msgstr ""
1353
 
1354
+ #: inc/support.php:102
1355
  msgid "How do I display my custom post type on my site?"
1356
  msgstr ""
1357
 
1358
+ #: inc/support.php:103
1359
  #, php-format
1360
  msgid ""
1361
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1363
  "should be something like \"http://www.mysite.com/post-type-slug\""
1364
  msgstr ""
1365
 
1366
+ #: inc/support.php:109
1367
  msgid ""
1368
  "I have added categories and tags to my custom post type, but they do not "
1369
  "appear in the archives."
1370
  msgstr ""
1371
 
1372
+ #: inc/support.php:110
1373
  #, php-format
1374
  msgid ""
1375
  "You will need to add your newly created post type to the types that the "
1377
  "that at %s"
1378
  msgstr ""
1379
 
1380
+ #: inc/support.php:119
1381
  msgid "Advanced"
1382
  msgstr ""
1383
 
1384
+ #: inc/support.php:122
1385
  msgid "How do I add custom metaboxes to my post type?"
1386
  msgstr ""
1387
 
1388
+ #: inc/support.php:124
1389
  #, php-format
1390
  msgid ""
1391
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1392
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1393
  msgstr ""
1394
 
1395
+ #: inc/support.php:130
1396
  msgid ""
1397
  "How do I add a newly registered taxonomy to a post type that already exists?"
1398
  msgstr ""
1399
 
1400
+ #: inc/support.php:132
1401
  #, php-format
1402
  msgid "Check out the %s function for documentation and usage examples."
1403
  msgstr ""
1404
 
1405
+ #: inc/support.php:138
1406
  #, fuzzy
1407
  msgid "Post relationships?"
1408
  msgstr "附属到文章类型"
1409
 
1410
+ #: inc/support.php:139
1411
  #, php-format
1412
  msgid ""
1413
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1414
  "plugin that should be a good start."
1415
  msgstr ""
1416
 
1417
+ #: inc/support.php:148
1418
  msgid "Is there any function reference list?"
1419
  msgstr ""
1420
 
1421
+ #: inc/support.php:149
1422
  #, php-format
1423
  msgid ""
1424
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1425
  "will be useful as they are attached to hooks."
1426
  msgstr ""
1427
 
1428
+ #: inc/support.php:153
1429
  msgid ""
1430
  "How do I filter the \"enter title here\" text in the post editor screen?"
1431
  msgstr ""
1432
 
1433
+ #: inc/support.php:154
1434
  msgid ""
1435
  "Change text inside the post/page editor title field. Should be able to adapt "
1436
  "as necessary."
1437
  msgstr ""
1438
 
1439
+ #: inc/taxonomies.php:89
1440
  msgid ""
1441
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1442
  "registers a new taxonomy entry for your install."
1443
  msgstr ""
1444
 
1445
+ #: inc/taxonomies.php:129
1446
  #, fuzzy
1447
  msgid "Taxonomy Slug"
1448
  msgstr "类别名称"
1449
 
1450
+ #: inc/taxonomies.php:130
1451
  #, fuzzy
1452
  msgid "(e.g. actor)"
1453
  msgstr "添加或删除条目"
1454
 
1455
+ #: inc/taxonomies.php:131
1456
  msgid ""
1457
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1458
  "and unique"
1459
  msgstr ""
1460
 
1461
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1462
  msgid "(e.g. Actors)"
1463
  msgstr ""
1464
 
1465
+ #: inc/taxonomies.php:141
1466
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1467
  msgstr ""
1468
 
1469
+ #: inc/taxonomies.php:148
1470
  msgid "(e.g. Actor)"
1471
  msgstr ""
1472
 
1473
+ #: inc/taxonomies.php:150
1474
  msgid ""
1475
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1476
  msgstr ""
1477
 
1478
+ #: inc/taxonomies.php:167
1479
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1480
+ msgstr ""
1481
+
1482
+ #: inc/taxonomies.php:170
1483
  msgid "Attach to Post Type"
1484
  msgstr "附属到文章类型"
1485
 
1486
+ #: inc/taxonomies.php:220
1487
  #, fuzzy
1488
  msgid "Save Taxonomy"
1489
  msgstr "类别名称"
1490
 
1491
+ #: inc/taxonomies.php:231
1492
  #, fuzzy
1493
  msgid "Delete Taxonomy"
1494
  msgstr "创建自定义类别"
1495
 
1496
+ #: inc/taxonomies.php:243
1497
  #, fuzzy
1498
  msgid "Add Taxonomy"
1499
  msgstr "类别名称"
1500
 
1501
+ #: inc/taxonomies.php:252
1502
  #, php-format
1503
  msgid ""
1504
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1506
  "letters that do not have accents."
1507
  msgstr ""
1508
 
1509
+ #: inc/taxonomies.php:253
1510
  #, php-format
1511
  msgid ""
1512
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1516
  "marks for more details."
1517
  msgstr ""
1518
 
1519
+ #: inc/taxonomies.php:254
1520
  #, fuzzy, php-format
1521
  msgid ""
1522
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1527
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1528
  "的重新创建您的类别,并且这些内容依旧存在。"
1529
 
1530
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1531
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1532
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1533
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1534
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1535
  msgid ""
1536
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1537
  msgstr ""
1538
 
1539
+ #: inc/taxonomies.php:278
1540
  msgid "(e.g. All Actors)"
1541
  msgstr ""
1542
 
1543
+ #: inc/taxonomies.php:287
1544
  msgid "(e.g. Edit Actor)"
1545
  msgstr ""
1546
 
1547
+ #: inc/taxonomies.php:296
1548
  msgid "(e.g. View Actor)"
1549
  msgstr ""
1550
 
1551
+ #: inc/taxonomies.php:305
1552
  msgid "(e.g. Update Actor Name)"
1553
  msgstr ""
1554
 
1555
+ #: inc/taxonomies.php:306
1556
  #, fuzzy
1557
  msgid "Update Item Name"
1558
  msgstr "更新条目"
1559
 
1560
+ #: inc/taxonomies.php:314
1561
  msgid "(e.g. Add New Actor)"
1562
  msgstr ""
1563
 
1564
+ #: inc/taxonomies.php:323
1565
  msgid "(e.g. New Actor Name)"
1566
  msgstr ""
1567
 
1568
+ #: inc/taxonomies.php:324
1569
  msgid "New Item Name"
1570
  msgstr "新条目名称"
1571
 
1572
+ #: inc/taxonomies.php:332
1573
  msgid "(e.g. Parent Actor)"
1574
  msgstr ""
1575
 
1576
+ #: inc/taxonomies.php:333
1577
  msgid "Parent Item"
1578
  msgstr "上级条目"
1579
 
1580
+ #: inc/taxonomies.php:341
1581
  msgid "(e.g. Parent Actor:)"
1582
  msgstr ""
1583
 
1584
+ #: inc/taxonomies.php:342
1585
  msgid "Parent Item Colon"
1586
  msgstr "上级条目:"
1587
 
1588
+ #: inc/taxonomies.php:350
1589
  msgid "(e.g. Search Actors)"
1590
  msgstr ""
1591
 
1592
+ #: inc/taxonomies.php:351
1593
  msgid "Search Items"
1594
  msgstr "搜索条目"
1595
 
1596
+ #: inc/taxonomies.php:359
1597
  msgid "(e.g. Popular Actors)"
1598
  msgstr ""
1599
 
1600
+ #: inc/taxonomies.php:360
1601
  msgid "Popular Items"
1602
  msgstr "热门条目"
1603
 
1604
+ #: inc/taxonomies.php:368
1605
  #, fuzzy
1606
+ msgid "(e.g. Separate Actors with commas)"
1607
  msgstr "使用英文逗号隔开多个标签条目"
1608
 
1609
+ #: inc/taxonomies.php:369
1610
  msgid "Separate Items with Commas"
1611
  msgstr "使用英文逗号隔开多个标签条目"
1612
 
1613
+ #: inc/taxonomies.php:377
1614
  #, fuzzy
1615
+ msgid "(e.g. Add or remove Actors)"
1616
  msgstr "添加或删除条目"
1617
 
1618
+ #: inc/taxonomies.php:378
1619
  msgid "Add or Remove Items"
1620
  msgstr "添加或删除条目"
1621
 
1622
+ #: inc/taxonomies.php:386
1623
  #, fuzzy
1624
+ msgid "(e.g. Choose from the most used Actors)"
1625
  msgstr "使用次数最多"
1626
 
1627
+ #: inc/taxonomies.php:387
1628
  msgid "Choose From Most Used"
1629
  msgstr "使用次数最多"
1630
 
1631
+ #: inc/taxonomies.php:395
1632
+ #, fuzzy
1633
+ msgid "(e.g. No Actors found)"
1634
+ msgstr "在回收站中没有找到"
1635
 
1636
+ #: inc/taxonomies.php:396
1637
  #, fuzzy
1638
  msgid "Not found"
1639
  msgstr "未找到"
1640
 
1641
+ #: inc/taxonomies.php:419
1642
  msgid "Whether the taxonomy can have parent-child relationships"
1643
  msgstr ""
1644
 
1645
+ #: inc/taxonomies.php:436
1646
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1647
  msgstr ""
1648
 
1649
+ #: inc/taxonomies.php:453
1650
  msgid "Sets the query_var key for this taxonomy."
1651
  msgstr ""
1652
 
1653
+ #: inc/taxonomies.php:461
1654
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1655
  msgstr ""
1656
 
1657
+ #: inc/taxonomies.php:462
1658
  msgid "Custom Query Var String"
1659
  msgstr ""
1660
 
1661
+ #: inc/taxonomies.php:463
1662
  msgid "Sets a custom query_var slug for this taxonomy."
1663
  msgstr ""
1664
 
1665
+ #: inc/taxonomies.php:479
1666
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1667
  msgstr ""
1668
 
1669
+ #: inc/taxonomies.php:487
1670
  #, fuzzy
1671
  msgid "(default: taxonomy name)"
1672
  msgstr "新条目名称"
1673
 
1674
+ #: inc/taxonomies.php:489
1675
  #, fuzzy
1676
  msgid "Custom taxonomy rewrite slug."
1677
  msgstr "自定义重写缩略名"
1678
 
1679
+ #: inc/taxonomies.php:503
1680
  msgid "Rewrite With Front"
1681
  msgstr ""
1682
 
1683
+ #: inc/taxonomies.php:504
1684
  msgid "(default: true)"
1685
  msgstr ""
1686
 
1687
+ #: inc/taxonomies.php:520
1688
  #, fuzzy
1689
  msgid "Rewrite Hierarchical"
1690
  msgstr "层级"
1691
 
1692
+ #: inc/taxonomies.php:521
1693
  msgid "(default: false)"
1694
  msgstr ""
1695
 
1696
+ #: inc/taxonomies.php:522
1697
  msgid "Should the permastruct allow hierarchical urls."
1698
  msgstr ""
1699
 
1700
+ #: inc/taxonomies.php:537
1701
  msgid "Show Admin Column"
1702
  msgstr ""
1703
 
1704
+ #: inc/taxonomies.php:539
1705
  msgid ""
1706
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1707
  "types."
1708
  msgstr ""
1709
 
1710
+ #: inc/taxonomies.php:559
1711
+ msgid "Whether to show this taxonomy data in the WP REST API."
1712
+ msgstr ""
1713
+
1714
+ #: inc/taxonomies.php:676
1715
  msgid "Please provide a taxonomy to delete"
1716
  msgstr ""
1717
 
1718
+ #: inc/taxonomies.php:727
1719
  msgid "Please provide a taxonomy name"
1720
  msgstr ""
1721
 
1722
+ #: inc/taxonomies.php:743
1723
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1724
  msgstr ""
1725
 
1726
+ #: inc/taxonomies.php:749
1727
  #, php-format
1728
  msgid "Please choose a different taxonomy name. %s is already used."
1729
  msgstr ""
1745
  msgid "http://webdevstudios.com/"
1746
  msgstr ""
1747
 
1748
+ #, fuzzy
1749
+ #~ msgid "Post type migration"
1750
+ #~ msgstr "文章类型名称"
1751
+
1752
  #, fuzzy
1753
  #~ msgid "Edit Post Type"
1754
  #~ msgstr "附属到文章类型"
1757
  #~ msgid "Edit Taxonomy"
1758
  #~ msgstr "编辑自定义类别"
1759
 
 
 
 
 
 
 
 
 
1760
  #~ msgid "Plugin version"
1761
  #~ msgstr "插件版本"
1762
 
languages/custom-post-type-ui.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Custom Post Type UI\n"
5
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
6
- "POT-Creation-Date: 2015-08-11 11:35-0500\n"
7
  "PO-Revision-Date: 2015-05-19 18:37-0600\n"
8
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
  "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.2\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -21,304 +21,386 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
 
24
 
25
- #: custom-post-type-ui.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Custom Post Types"
27
  msgstr ""
28
 
29
- #: custom-post-type-ui.php:60
30
  msgid "CPT UI"
31
  msgstr ""
32
 
33
- #: custom-post-type-ui.php:61
34
  msgid "Add/Edit Post Types"
35
  msgstr ""
36
 
37
- #: custom-post-type-ui.php:62
38
  msgid "Add/Edit Taxonomies"
39
  msgstr ""
40
 
41
- #: custom-post-type-ui.php:63
42
  msgid "Registered Types and Taxes"
43
  msgstr ""
44
 
45
- #: custom-post-type-ui.php:63
46
  msgid "Registered Types/Taxes"
47
  msgstr ""
48
 
49
- #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
50
  msgid "Import/Export"
51
  msgstr ""
52
 
53
- #: custom-post-type-ui.php:65
54
  msgid "Help/Support"
55
  msgstr ""
56
 
57
- #: custom-post-type-ui.php:69
58
  msgid "About CPT UI"
59
  msgstr ""
60
 
61
  #. Plugin Name of the plugin/theme
62
- #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
63
  msgid "Custom Post Type UI"
64
  msgstr ""
65
 
66
- #: custom-post-type-ui.php:342
67
  msgid ""
68
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
69
  "with our plugin provides efficiency and speed in creating post types and "
70
  "taxonomies, to better organize your content, without having to touch code."
71
  msgstr ""
72
 
73
- #: custom-post-type-ui.php:348
74
- msgid "Post type migration"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  msgstr ""
76
 
77
- #: custom-post-type-ui.php:349
 
 
 
 
78
  msgid ""
79
- "In the past, if you changed your post type slug, you would lose immediate "
80
- "access to the posts in the post type and need to recover another way. We "
81
- "have now added support for migrating all posts within the old post type to "
82
- "the new post type you renamed it to."
83
  msgstr ""
84
 
85
- #: custom-post-type-ui.php:352
86
- msgid "UI Refinement"
87
  msgstr ""
88
 
89
- #: custom-post-type-ui.php:353
90
  msgid ""
91
- "After receiving feedback regarding the 1.0.x changes, we have further "
92
- "simplified the UI to reduce the amount of clicking necessary to manage your "
93
- "post types and taxonomies."
94
  msgstr ""
95
 
96
- #: custom-post-type-ui.php:356
97
- msgid "Registered Post Type and Taxonomy Listings"
98
  msgstr ""
99
 
100
- #: custom-post-type-ui.php:357
101
  msgid ""
102
- "We are bringing back the listing of all CPTUI-registered post types and "
103
- "taxonomies for easier quick view of what you have going."
 
104
  msgstr ""
105
 
106
- #: custom-post-type-ui.php:362
107
  msgid "Help Support This Plugin!"
108
  msgstr ""
109
 
110
- #: custom-post-type-ui.php:366
111
  msgid "Professional WordPress<br />Third Edition"
112
  msgstr ""
113
 
114
- #: custom-post-type-ui.php:371
 
 
 
 
115
  msgid ""
116
  "The leading book on WordPress design and development! Brand new third "
117
  "edition!"
118
  msgstr ""
119
 
120
- #: custom-post-type-ui.php:374
121
  msgid "Professional WordPress<br />Plugin Development"
122
  msgstr ""
123
 
124
- #: custom-post-type-ui.php:379
 
 
 
 
125
  msgid "Highest rated WordPress development book on Amazon!"
126
  msgstr ""
127
 
128
- #: custom-post-type-ui.php:382
129
  msgid "PayPal Donation"
130
  msgstr ""
131
 
132
- #: custom-post-type-ui.php:386
133
  msgid "PayPal - The safer, easier way to pay online!"
134
  msgstr ""
135
 
136
- #: custom-post-type-ui.php:389
137
  msgid "Please donate to the development of Custom Post Type UI:"
138
  msgstr ""
139
 
140
- #: custom-post-type-ui.php:415
141
  #, php-format
142
  msgid "%s version %s by %s"
143
  msgstr ""
144
 
145
- #: custom-post-type-ui.php:426
146
  msgid "Please Report Bugs"
147
  msgstr ""
148
 
149
- #: custom-post-type-ui.php:429
150
  msgid "Follow on Twitter:"
151
  msgstr ""
152
 
153
- #: custom-post-type-ui.php:493
154
  msgid "Manage Taxonomies"
155
  msgstr ""
156
 
157
- #: custom-post-type-ui.php:497
158
  msgid "Manage Post Types"
159
  msgstr ""
160
 
161
- #: custom-post-type-ui.php:523
162
  msgid "Add New Post Type"
163
  msgstr ""
164
 
165
- #: custom-post-type-ui.php:526
166
  msgid "Edit Post Types"
167
  msgstr ""
168
 
169
- #: custom-post-type-ui.php:530
170
  msgid "Add New Taxonomy"
171
  msgstr ""
172
 
173
- #: custom-post-type-ui.php:533
174
  msgid "Edit Taxonomies"
175
  msgstr ""
176
 
177
- #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
178
- #: inc/listings.php:224
179
  msgid "Post Types"
180
  msgstr ""
181
 
182
- #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
183
- #: inc/listings.php:122 inc/listings.php:132
184
  msgid "Taxonomies"
185
  msgstr ""
186
 
187
- #: custom-post-type-ui.php:539
188
  msgid "Get Code"
189
  msgstr ""
190
 
191
- #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
192
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
193
- #: inc/taxonomies.php:343
 
 
 
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: custom-post-type-ui.php:622
198
  msgid "Help"
199
  msgstr ""
200
 
201
- #: custom-post-type-ui.php:651
202
  #, php-format
203
  msgid "%s has been successfully added"
204
  msgstr ""
205
 
206
- #: custom-post-type-ui.php:653
207
  #, php-format
208
  msgid "%s has failed to be added"
209
  msgstr ""
210
 
211
- #: custom-post-type-ui.php:657
212
  #, php-format
213
  msgid "%s has been successfully updated"
214
  msgstr ""
215
 
216
- #: custom-post-type-ui.php:659
217
  #, php-format
218
  msgid "%s has failed to be updated"
219
  msgstr ""
220
 
221
- #: custom-post-type-ui.php:663
222
  #, php-format
223
  msgid "%s has been successfully deleted"
224
  msgstr ""
225
 
226
- #: custom-post-type-ui.php:665
227
  #, php-format
228
  msgid "%s has failed to be deleted"
229
  msgstr ""
230
 
231
- #: custom-post-type-ui.php:669
232
  #, php-format
233
  msgid "%s has been successfully imported"
234
  msgstr ""
235
 
236
- #: custom-post-type-ui.php:671
237
  #, php-format
238
  msgid "%s has failed to be imported"
239
  msgstr ""
240
 
241
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
242
  #, php-format
243
  msgid "Add new %s"
244
  msgstr ""
245
 
246
- #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
 
247
  #, php-format
248
  msgid "Edit %s"
249
  msgstr ""
250
 
251
- #: custom-post-type-ui.php:756
252
  #, php-format
253
  msgid "New %s"
254
  msgstr ""
255
 
256
- #: custom-post-type-ui.php:757
257
  #, php-format
258
  msgid "View %s"
259
  msgstr ""
260
 
261
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
262
  #, php-format
263
  msgid "All %s"
264
  msgstr ""
265
 
266
- #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
267
  #, php-format
268
  msgid "Search %s"
269
  msgstr ""
270
 
271
- #: custom-post-type-ui.php:760
272
  #, php-format
273
  msgid "No %s found."
274
  msgstr ""
275
 
276
- #: custom-post-type-ui.php:761
277
  #, php-format
278
  msgid "No %s found in trash."
279
  msgstr ""
280
 
281
- #: custom-post-type-ui.php:765
282
  #, php-format
283
  msgid "Popular %s"
284
  msgstr ""
285
 
286
- #: custom-post-type-ui.php:767
287
  #, php-format
288
  msgid "Parent %s"
289
  msgstr ""
290
 
291
- #: custom-post-type-ui.php:768
292
  #, php-format
293
  msgid "Parent %s:"
294
  msgstr ""
295
 
296
- #: custom-post-type-ui.php:770
297
  #, php-format
298
  msgid "Update %s"
299
  msgstr ""
300
 
301
- #: custom-post-type-ui.php:772
302
  #, php-format
303
  msgid "New %s name"
304
  msgstr ""
305
 
306
- #: custom-post-type-ui.php:773
307
  #, php-format
308
  msgid "Separate %s with commas"
309
  msgstr ""
310
 
311
- #: custom-post-type-ui.php:774
312
  #, php-format
313
  msgid "Add or remove %s"
314
  msgstr ""
315
 
316
- #: custom-post-type-ui.php:775
317
  #, php-format
318
  msgid "Choose from the most used %s"
319
  msgstr ""
320
 
321
- #: inc/import_export.php:42
 
 
 
 
 
 
 
 
 
 
 
 
322
  msgid ""
323
  "If you are wanting to migrate registered post types or taxonomies from this "
324
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -326,255 +408,294 @@ msgid ""
326
  "the information in the \"Get Code\" tab."
327
  msgstr ""
328
 
329
- #: inc/import_export.php:45
330
  msgid "NOTE"
331
  msgstr ""
332
 
333
- #: inc/import_export.php:46
334
- msgid "This will not export the associated posts, just the settings."
 
 
335
  msgstr ""
336
 
337
- #: inc/import_export.php:53
338
  msgid "Import Post Types"
339
  msgstr ""
340
 
341
- #: inc/import_export.php:55 inc/import_export.php:80
342
  msgid "Paste content here."
343
  msgstr ""
344
 
345
- #: inc/import_export.php:56 inc/import_export.php:81
346
  msgid "Note:"
347
  msgstr ""
348
 
349
- #: inc/import_export.php:56 inc/import_export.php:81
350
  msgid "Importing will overwrite previous registered settings."
351
  msgstr ""
352
 
353
- #: inc/import_export.php:57
354
  msgid ""
355
  "To import post types from a different WordPress site, paste the exported "
356
  "content from that site and click the \"Import\" button."
357
  msgstr ""
358
 
359
- #: inc/import_export.php:58 inc/import_export.php:83
360
  msgid "Import"
361
  msgstr ""
362
 
363
- #: inc/import_export.php:62
364
  msgid "Export Post Types"
365
  msgstr ""
366
 
367
- #: inc/import_export.php:68
368
  msgid "No post types registered yet."
369
  msgstr ""
370
 
371
- #: inc/import_export.php:71 inc/import_export.php:96
372
  msgid ""
373
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
374
  "(Mac)."
375
  msgstr ""
376
 
377
- #: inc/import_export.php:72
378
  msgid ""
379
  "Use the content above to import current post types into a different "
380
  "WordPress site. You can also use this to simply back up your post type "
381
  "settings."
382
  msgstr ""
383
 
384
- #: inc/import_export.php:78
385
  msgid "Import Taxonomies"
386
  msgstr ""
387
 
388
- #: inc/import_export.php:82
389
  msgid ""
390
  "To import taxonomies from a different WordPress site, paste the exported "
391
  "content from that site and click the \"Import\" button."
392
  msgstr ""
393
 
394
- #: inc/import_export.php:87
395
  msgid "Export Taxonomies"
396
  msgstr ""
397
 
398
- #: inc/import_export.php:93
399
  msgid "No taxonomies registered yet."
400
  msgstr ""
401
 
402
- #: inc/import_export.php:97
403
  msgid ""
404
  "Use the content above to import current taxonomies into a different "
405
  "WordPress site. You can also use this to simply back up your taxonomy "
406
  "settings."
407
  msgstr ""
408
 
409
- #: inc/import_export.php:105
410
  msgid "Get Post Type and Taxonomy Code"
411
  msgstr ""
412
 
413
- #: inc/import_export.php:107
414
  msgid "All CPT UI Post Types"
415
  msgstr ""
416
 
417
- #: inc/import_export.php:108 inc/import_export.php:112
 
418
  msgid "Copy/paste the code below into your functions.php file."
419
  msgstr ""
420
 
421
- #: inc/import_export.php:111
 
 
 
 
 
422
  msgid "All CPT UI Taxonomies"
423
  msgstr ""
424
 
425
- #: inc/import_export.php:142
426
- msgid "No taxonomies to display at this time"
 
427
  msgstr ""
428
 
429
- #: inc/import_export.php:241
430
- msgid "No post types to display at this time"
431
  msgstr ""
432
 
433
- #: inc/import_export.php:367
434
- msgid "Post types"
435
  msgstr ""
436
 
437
  #: inc/listings.php:10
438
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
439
  msgstr ""
440
 
441
- #: inc/listings.php:18 inc/listings.php:134
442
  #, php-format
443
  msgid "Total count: %d"
444
  msgstr ""
445
 
446
- #: inc/listings.php:31 inc/listings.php:119
447
  msgid "Post Type"
448
  msgstr ""
449
 
450
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
451
  msgid "Supports"
452
  msgstr ""
453
 
454
- #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
455
- #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
456
  msgid "Labels"
457
  msgstr ""
458
 
459
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
460
- msgid "Edit"
461
  msgstr ""
462
 
463
- #: inc/listings.php:75
464
  msgid "View frontend archive"
465
  msgstr ""
466
 
467
- #: inc/listings.php:108 inc/listings.php:211
468
  msgid "No custom labels to display"
469
  msgstr ""
470
 
471
- #: inc/listings.php:147 inc/listings.php:222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  msgid "Taxonomy"
473
  msgstr ""
474
 
475
- #: inc/post-types.php:30 inc/taxonomies.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
476
  msgid "Are you sure you want to delete this?"
477
  msgstr ""
478
 
479
- #: inc/post-types.php:89
480
  msgid ""
481
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
482
  "registers a new post type entry for your install."
483
  msgstr ""
484
 
485
- #: inc/post-types.php:90
486
  msgid ""
487
  "Use appropriate checkbox above save/delete buttons if you wish to change "
488
  "slugs and update post types for existing posts."
489
  msgstr ""
490
 
491
- #: inc/post-types.php:91 inc/taxonomies.php:87
492
  msgid "Select: "
493
  msgstr ""
494
 
495
- #: inc/post-types.php:94 inc/taxonomies.php:91
496
  msgid "Select"
497
  msgstr ""
498
 
499
- #: inc/post-types.php:124
500
  msgid "Post Type Slug"
501
  msgstr ""
502
 
503
- #: inc/post-types.php:125
504
  msgid "(e.g. movie)"
505
  msgstr ""
506
 
507
- #: inc/post-types.php:126
508
  msgid ""
509
  "The post type name. Used to retrieve custom post type content. Should be "
510
  "short and unique"
511
  msgstr ""
512
 
513
- #: inc/post-types.php:137 inc/taxonomies.php:129
514
  msgid "Plural Label"
515
  msgstr ""
516
 
517
- #: inc/post-types.php:138
518
  msgid "(e.g. Movies)"
519
  msgstr ""
520
 
521
- #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
522
- #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
523
- #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
524
- #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
525
- #: inc/post-types.php:368
526
  msgid "Post type label. Used in the admin menu for displaying post types."
527
  msgstr ""
528
 
529
- #: inc/post-types.php:149 inc/taxonomies.php:138
530
  msgid "Singular Label"
531
  msgstr ""
532
 
533
- #: inc/post-types.php:150
534
  msgid "(e.g. Movie)"
535
  msgstr ""
536
 
537
- #: inc/post-types.php:151
538
  msgid ""
539
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
540
  "needed."
541
  msgstr ""
542
 
543
- #: inc/post-types.php:167
544
  msgid "Description"
545
  msgstr ""
546
 
547
- #: inc/post-types.php:168
548
  msgid ""
549
  "Custom Post Type Description. Describe what your custom post type is used "
550
  "for."
551
  msgstr ""
552
 
553
- #: inc/post-types.php:180
554
  msgid "Migrate posts to newly renamed post type?"
555
  msgstr ""
556
 
557
- #: inc/post-types.php:181
558
  msgid "Check this to migrate posts if and when renaming your post type."
559
  msgstr ""
560
 
561
- #: inc/post-types.php:190
562
  msgid "Save Post Type"
563
  msgstr ""
564
 
565
- #: inc/post-types.php:191
566
  msgid "Delete Post Type"
567
  msgstr ""
568
 
569
- #: inc/post-types.php:193
570
  msgid "Add Post Type"
571
  msgstr ""
572
 
573
- #: inc/post-types.php:204 inc/taxonomies.php:190
574
  msgid "Starter Notes"
575
  msgstr ""
576
 
577
- #: inc/post-types.php:207
578
  #, php-format
579
  msgid ""
580
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -583,7 +704,7 @@ msgid ""
583
  "revision, nav_menu_item."
584
  msgstr ""
585
 
586
- #: inc/post-types.php:208
587
  #, php-format
588
  msgid ""
589
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -592,7 +713,7 @@ msgid ""
592
  "post type name. Hover over the question mark for more details."
593
  msgstr ""
594
 
595
- #: inc/post-types.php:209
596
  #, php-format
597
  msgid ""
598
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -600,439 +721,491 @@ msgid ""
600
  "the content will still exist."
601
  msgstr ""
602
 
603
- #: inc/post-types.php:223 inc/taxonomies.php:211
604
  msgid "Menu Name"
605
  msgstr ""
606
 
607
- #: inc/post-types.php:224
608
  msgid "Custom menu name for your custom post type."
609
  msgstr ""
610
 
611
- #: inc/post-types.php:228
612
  msgid "(e.g. My Movies)"
613
  msgstr ""
614
 
615
- #: inc/post-types.php:235 inc/taxonomies.php:220
616
  msgid "All Items"
617
  msgstr ""
618
 
619
- #: inc/post-types.php:240
620
  msgid "(e.g. All Movies)"
621
  msgstr ""
622
 
623
- #: inc/post-types.php:247
624
  msgid "Add New"
625
  msgstr ""
626
 
627
- #: inc/post-types.php:252
628
  msgid "(e.g. Add New)"
629
  msgstr ""
630
 
631
- #: inc/post-types.php:259 inc/taxonomies.php:256
632
  msgid "Add New Item"
633
  msgstr ""
634
 
635
- #: inc/post-types.php:264
636
  msgid "(e.g. Add New Movie)"
637
  msgstr ""
638
 
639
- #: inc/post-types.php:276
 
 
 
 
640
  msgid "(e.g. Edit)"
641
  msgstr ""
642
 
643
- #: inc/post-types.php:283 inc/taxonomies.php:229
644
  msgid "Edit Item"
645
  msgstr ""
646
 
647
- #: inc/post-types.php:288
648
  msgid "(e.g. Edit Movie)"
649
  msgstr ""
650
 
651
- #: inc/post-types.php:295
652
  msgid "New Item"
653
  msgstr ""
654
 
655
- #: inc/post-types.php:300
656
  msgid "(e.g. New Movie)"
657
  msgstr ""
658
 
659
- #: inc/post-types.php:307
660
  msgid "View"
661
  msgstr ""
662
 
663
- #: inc/post-types.php:312
664
  msgid "(e.g. View)"
665
  msgstr ""
666
 
667
- #: inc/post-types.php:319 inc/taxonomies.php:238
668
  msgid "View Item"
669
  msgstr ""
670
 
671
- #: inc/post-types.php:324
672
  msgid "(e.g. View Movie)"
673
  msgstr ""
674
 
675
- #: inc/post-types.php:331
676
  msgid "Search Item"
677
  msgstr ""
678
 
679
- #: inc/post-types.php:336
680
  msgid "(e.g. Search Movie)"
681
  msgstr ""
682
 
683
- #: inc/post-types.php:343
684
  msgid "Not Found"
685
  msgstr ""
686
 
687
- #: inc/post-types.php:348
688
  msgid "(e.g. No Movies found)"
689
  msgstr ""
690
 
691
- #: inc/post-types.php:355
692
  msgid "Not Found in Trash"
693
  msgstr ""
694
 
695
- #: inc/post-types.php:360
696
  msgid "(e.g. No Movies found in Trash)"
697
  msgstr ""
698
 
699
- #: inc/post-types.php:367
700
  msgid "Parent"
701
  msgstr ""
702
 
703
- #: inc/post-types.php:372
704
  msgid "(e.g. Parent Movie)"
705
  msgstr ""
706
 
707
- #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
708
- #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
709
- #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
710
- #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
711
- #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
712
- #: inc/taxonomies.php:469
 
713
  msgid "False"
714
  msgstr ""
715
 
716
- #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
717
- #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
718
- #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
719
- #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
720
- #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
721
- #: inc/taxonomies.php:470
 
722
  msgid "True"
723
  msgstr ""
724
 
725
- #: inc/post-types.php:395
726
  msgid "Public"
727
  msgstr ""
728
 
729
- #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
730
- #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
731
- #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
732
- msgid "(default: True)"
733
  msgstr ""
734
 
735
- #: inc/post-types.php:397
736
  msgid ""
 
737
  "Whether posts of this type should be shown in the admin UI and is publicly "
738
  "queryable."
739
  msgstr ""
740
 
741
- #: inc/post-types.php:415 inc/taxonomies.php:375
742
  msgid "Show UI"
743
  msgstr ""
744
 
745
- #: inc/post-types.php:417
 
 
 
 
 
 
746
  msgid "Whether to generate a default UI for managing this post type."
747
  msgstr ""
748
 
749
- #: inc/post-types.php:425
750
- msgid "Has Archive"
751
  msgstr ""
752
 
753
- #: inc/post-types.php:426
754
- msgid "Whether the post type will have a post type archive URL."
755
  msgstr ""
756
 
757
- #: inc/post-types.php:427
758
- msgid "If left blank, the archive slug will default to the post type slug."
 
 
 
 
759
  msgstr ""
760
 
761
- #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
762
- #: inc/taxonomies.php:359 inc/taxonomies.php:479
 
763
  msgid "(default: False)"
764
  msgstr ""
765
 
766
- #: inc/post-types.php:453
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  msgid "Slug to be used for archive URL."
768
  msgstr ""
769
 
770
- #: inc/post-types.php:473
771
  msgid "Exclude From Search"
772
  msgstr ""
773
 
774
- #: inc/post-types.php:475
775
  msgid ""
776
  "Whether to exclude posts with this post type from front end search results."
777
  msgstr ""
778
 
779
- #: inc/post-types.php:486
780
  msgid "Capability Type"
781
  msgstr ""
782
 
783
- #: inc/post-types.php:487
784
  msgid "The post type to use for checking read, edit, and delete capabilities"
785
  msgstr ""
786
 
787
- #: inc/post-types.php:504 inc/taxonomies.php:358
788
  msgid "Hierarchical"
789
  msgstr ""
790
 
791
- #: inc/post-types.php:506
792
  msgid "Whether the post type can have parent-child relationships"
793
  msgstr ""
794
 
795
- #: inc/post-types.php:524 inc/taxonomies.php:418
796
  msgid "Rewrite"
797
  msgstr ""
798
 
799
- #: inc/post-types.php:526
800
  msgid "Whether or not WordPress should use rewrites for this post type"
801
  msgstr ""
802
 
803
- #: inc/post-types.php:537 inc/taxonomies.php:429
804
  msgid "Custom Rewrite Slug"
805
  msgstr ""
806
 
807
- #: inc/post-types.php:538
808
  msgid "(default: post type slug)"
809
  msgstr ""
810
 
811
- #: inc/post-types.php:539
812
  msgid "Custom post type slug to use instead of the default."
813
  msgstr ""
814
 
815
- #: inc/post-types.php:556
816
  msgid "With Front"
817
  msgstr ""
818
 
819
- #: inc/post-types.php:558 inc/taxonomies.php:446
820
  msgid "Should the permastruct be prepended with the front base."
821
  msgstr ""
822
 
823
- #: inc/post-types.php:576 inc/taxonomies.php:392
824
  msgid "Query Var"
825
  msgstr ""
826
 
827
- #: inc/post-types.php:578
828
  msgid "Sets the query_var key for this post type."
829
  msgstr ""
830
 
831
- #: inc/post-types.php:586
 
 
 
 
 
 
 
 
 
 
 
 
832
  msgid "Menu Position"
833
  msgstr ""
834
 
835
- #: inc/post-types.php:587
836
  msgid ""
837
  "The position in the menu order the post type should appear. show_in_menu "
838
  "must be true."
839
  msgstr ""
840
 
841
- #: inc/post-types.php:588
842
  msgid ""
843
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
844
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
845
  "the \"menu_position\" section. Range of 5-100"
846
  msgstr ""
847
 
848
- #: inc/post-types.php:603
849
  msgid "Show in Menu"
850
  msgstr ""
851
 
852
- #: inc/post-types.php:604
853
  msgid ""
854
  "Whether to show the post type in the admin menu and where to show that menu."
855
  msgstr ""
856
 
857
- #: inc/post-types.php:605
858
  msgid ""
859
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
860
  "php\" is indicated for second input, post type will be sub menu of that."
861
  msgstr ""
862
 
863
- #: inc/post-types.php:631
864
  msgid "Top-level page file name to make post type a sub-menu of."
865
  msgstr ""
866
 
867
- #: inc/post-types.php:643
868
  msgid "Menu Icon"
869
  msgstr ""
870
 
871
- #: inc/post-types.php:644
872
  msgid "(Full URL for icon or Dashicon class)"
873
  msgstr ""
874
 
875
- #: inc/post-types.php:645
876
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
877
  msgstr ""
878
 
879
- #: inc/post-types.php:658
880
  msgid "Title"
881
  msgstr ""
882
 
883
- #: inc/post-types.php:659
884
  msgid "Adds the title meta box when creating content for this custom post type"
885
  msgstr ""
886
 
887
- #: inc/post-types.php:673
888
  msgid "Editor"
889
  msgstr ""
890
 
891
- #: inc/post-types.php:674
892
  msgid ""
893
  "Adds the content editor meta box when creating content for this custom post "
894
  "type"
895
  msgstr ""
896
 
897
- #: inc/post-types.php:688
898
  msgid "Excerpt"
899
  msgstr ""
900
 
901
- #: inc/post-types.php:689
902
  msgid ""
903
  "Adds the excerpt meta box when creating content for this custom post type"
904
  msgstr ""
905
 
906
- #: inc/post-types.php:703
907
  msgid "Trackbacks"
908
  msgstr ""
909
 
910
- #: inc/post-types.php:704
911
  msgid ""
912
  "Adds the trackbacks meta box when creating content for this custom post type"
913
  msgstr ""
914
 
915
- #: inc/post-types.php:718
916
  msgid "Custom Fields"
917
  msgstr ""
918
 
919
- #: inc/post-types.php:719
920
  msgid ""
921
  "Adds the custom fields meta box when creating content for this custom post "
922
  "type"
923
  msgstr ""
924
 
925
- #: inc/post-types.php:733
926
  msgid "Comments"
927
  msgstr ""
928
 
929
- #: inc/post-types.php:734
930
  msgid ""
931
  "Adds the comments meta box when creating content for this custom post type"
932
  msgstr ""
933
 
934
- #: inc/post-types.php:748
935
  msgid "Revisions"
936
  msgstr ""
937
 
938
- #: inc/post-types.php:749
939
  msgid ""
940
  "Adds the revisions meta box when creating content for this custom post type"
941
  msgstr ""
942
 
943
- #: inc/post-types.php:763
944
  msgid "Featured Image"
945
  msgstr ""
946
 
947
- #: inc/post-types.php:764
948
  msgid ""
949
  "Adds the featured image meta box when creating content for this custom post "
950
  "type"
951
  msgstr ""
952
 
953
- #: inc/post-types.php:778
954
  msgid "Author"
955
  msgstr ""
956
 
957
- #: inc/post-types.php:779
958
  msgid ""
959
  "Adds the author meta box when creating content for this custom post type"
960
  msgstr ""
961
 
962
- #: inc/post-types.php:793
963
  msgid "Page Attributes"
964
  msgstr ""
965
 
966
- #: inc/post-types.php:794
967
  msgid ""
968
  "Adds the page attribute meta box when creating content for this custom post "
969
  "type"
970
  msgstr ""
971
 
972
- #: inc/post-types.php:808
973
  msgid "Post Formats"
974
  msgstr ""
975
 
976
- #: inc/post-types.php:809
977
  msgid "Adds post format support"
978
  msgstr ""
979
 
980
- #: inc/post-types.php:814
981
  msgid "Use the option below to explicitly set \"supports\" to false."
982
  msgstr ""
983
 
984
- #: inc/post-types.php:822
985
  msgid "None"
986
  msgstr ""
987
 
988
- #: inc/post-types.php:823
989
  msgid "Remove all support features"
990
  msgstr ""
991
 
992
- #: inc/post-types.php:829
993
  msgid "Custom \"Supports\""
994
  msgstr ""
995
 
996
- #: inc/post-types.php:830
997
  msgid ""
998
  "Use this input to register custom \"supports\" values, separated by commas."
999
  msgstr ""
1000
 
1001
- #: inc/post-types.php:836
1002
  msgid "Provide custom support slugs here."
1003
  msgstr ""
1004
 
1005
- #: inc/post-types.php:842
1006
  msgid "Built-in Taxonomies"
1007
  msgstr ""
1008
 
1009
- #: inc/post-types.php:871 inc/taxonomies.php:172
1010
  #, php-format
1011
  msgid "Adds %s support"
1012
  msgstr ""
1013
 
1014
- #: inc/post-types.php:977
1015
  msgid "Please provide a post type to delete"
1016
  msgstr ""
1017
 
1018
- #: inc/post-types.php:1037
1019
  msgid "Please provide a post type name"
1020
  msgstr ""
1021
 
1022
- #: inc/post-types.php:1061
1023
  msgid "Please do not use quotes in post type names or rewrite slugs"
1024
  msgstr ""
1025
 
1026
- #: inc/post-types.php:1068
1027
  #, php-format
1028
  msgid "Please choose a different post type name. %s is already registered."
1029
  msgstr ""
1030
 
1031
- #: inc/support.php:41
1032
  msgid "Custom Post Type UI Support"
1033
  msgstr ""
1034
 
1035
- #: inc/support.php:43
1036
  #, php-format
1037
  msgid ""
1038
  "Please note that this plugin will NOT handle display of registered post "
@@ -1040,33 +1213,46 @@ msgid ""
1040
  "you. If all else fails, visit us on the %s"
1041
  msgstr ""
1042
 
1043
- #: inc/support.php:44
1044
  msgid "Support Forums"
1045
  msgstr ""
1046
 
1047
- #: inc/support.php:50
1048
  msgid "General"
1049
  msgstr ""
1050
 
1051
- #: inc/support.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
1052
  msgid ""
1053
  "I changed my custom post type name and now I can not get to my posts. How do "
1054
  "I get them back?"
1055
  msgstr ""
1056
 
1057
- #: inc/support.php:54
1058
  msgid ""
1059
  "You can either change the custom post type name back to the original name or "
1060
  "try the Post Type Switcher plugin"
1061
  msgstr ""
1062
 
1063
- #: inc/support.php:59
1064
  msgid ""
1065
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1066
  "shown. How do I remove the duplicate?"
1067
  msgstr ""
1068
 
1069
- #: inc/support.php:60
1070
  msgid ""
1071
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1072
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1074,37 +1260,55 @@ msgid ""
1074
  "delete the previous version's entry."
1075
  msgstr ""
1076
 
1077
- #: inc/support.php:63
1078
  msgid ""
1079
  "I have added post thumbnail and/or post format support to my post type, but "
1080
  "those do not appear when adding a post type post."
1081
  msgstr ""
1082
 
1083
- #: inc/support.php:64
1084
  msgid ""
1085
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1086
  msgstr ""
1087
 
1088
- #: inc/support.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1089
  msgid "Front-end Display"
1090
  msgstr ""
1091
 
1092
- #: inc/support.php:72
1093
  msgid "What template files should I edit to alter my post type display?"
1094
  msgstr ""
1095
 
1096
- #: inc/support.php:73
1097
  #, php-format
1098
  msgid ""
1099
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1100
  "details about available templates."
1101
  msgstr ""
1102
 
1103
- #: inc/support.php:80
1104
  msgid "How do I display my custom post type on my site?"
1105
  msgstr ""
1106
 
1107
- #: inc/support.php:81
1108
  #, php-format
1109
  msgid ""
1110
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1112,13 +1316,13 @@ msgid ""
1112
  "should be something like \"http://www.mysite.com/post-type-slug\""
1113
  msgstr ""
1114
 
1115
- #: inc/support.php:87
1116
  msgid ""
1117
  "I have added categories and tags to my custom post type, but they do not "
1118
  "appear in the archives."
1119
  msgstr ""
1120
 
1121
- #: inc/support.php:88
1122
  #, php-format
1123
  msgid ""
1124
  "You will need to add your newly created post type to the types that the "
@@ -1126,118 +1330,122 @@ msgid ""
1126
  "that at %s"
1127
  msgstr ""
1128
 
1129
- #: inc/support.php:97
1130
  msgid "Advanced"
1131
  msgstr ""
1132
 
1133
- #: inc/support.php:100
1134
  msgid "How do I add custom metaboxes to my post type?"
1135
  msgstr ""
1136
 
1137
- #: inc/support.php:102
1138
  #, php-format
1139
  msgid ""
1140
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1141
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1142
  msgstr ""
1143
 
1144
- #: inc/support.php:108
1145
  msgid ""
1146
  "How do I add a newly registered taxonomy to a post type that already exists?"
1147
  msgstr ""
1148
 
1149
- #: inc/support.php:110
1150
  #, php-format
1151
  msgid "Check out the %s function for documentation and usage examples."
1152
  msgstr ""
1153
 
1154
- #: inc/support.php:116
1155
  msgid "Post relationships?"
1156
  msgstr ""
1157
 
1158
- #: inc/support.php:117
1159
  #, php-format
1160
  msgid ""
1161
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1162
  "plugin that should be a good start."
1163
  msgstr ""
1164
 
1165
- #: inc/support.php:126
1166
  msgid "Is there any function reference list?"
1167
  msgstr ""
1168
 
1169
- #: inc/support.php:127
1170
  #, php-format
1171
  msgid ""
1172
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1173
  "will be useful as they are attached to hooks."
1174
  msgstr ""
1175
 
1176
- #: inc/support.php:131
1177
  msgid ""
1178
  "How do I filter the \"enter title here\" text in the post editor screen?"
1179
  msgstr ""
1180
 
1181
- #: inc/support.php:132
1182
  msgid ""
1183
  "Change text inside the post/page editor title field. Should be able to adapt "
1184
  "as necessary."
1185
  msgstr ""
1186
 
1187
- #: inc/taxonomies.php:85
1188
  msgid ""
1189
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1190
  "registers a new taxonomy entry for your install."
1191
  msgstr ""
1192
 
1193
- #: inc/taxonomies.php:118
1194
  msgid "Taxonomy Slug"
1195
  msgstr ""
1196
 
1197
- #: inc/taxonomies.php:119
1198
  msgid "(e.g. actor)"
1199
  msgstr ""
1200
 
1201
- #: inc/taxonomies.php:120
1202
  msgid ""
1203
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1204
  "and unique"
1205
  msgstr ""
1206
 
1207
- #: inc/taxonomies.php:128 inc/taxonomies.php:210
1208
  msgid "(e.g. Actors)"
1209
  msgstr ""
1210
 
1211
- #: inc/taxonomies.php:130
1212
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1213
  msgstr ""
1214
 
1215
- #: inc/taxonomies.php:137
1216
  msgid "(e.g. Actor)"
1217
  msgstr ""
1218
 
1219
- #: inc/taxonomies.php:139
1220
  msgid ""
1221
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1222
  msgstr ""
1223
 
1224
- #: inc/taxonomies.php:142
 
 
 
 
1225
  msgid "Attach to Post Type"
1226
  msgstr ""
1227
 
1228
- #: inc/taxonomies.php:181
1229
  msgid "Save Taxonomy"
1230
  msgstr ""
1231
 
1232
- #: inc/taxonomies.php:182
1233
  msgid "Delete Taxonomy"
1234
  msgstr ""
1235
 
1236
- #: inc/taxonomies.php:184
1237
  msgid "Add Taxonomy"
1238
  msgstr ""
1239
 
1240
- #: inc/taxonomies.php:193
1241
  #, php-format
1242
  msgid ""
1243
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1245,7 +1453,7 @@ msgid ""
1245
  "letters that do not have accents."
1246
  msgstr ""
1247
 
1248
- #: inc/taxonomies.php:194
1249
  #, php-format
1250
  msgid ""
1251
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1255,7 +1463,7 @@ msgid ""
1255
  "marks for more details."
1256
  msgstr ""
1257
 
1258
- #: inc/taxonomies.php:195
1259
  #, php-format
1260
  msgid ""
1261
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1264,190 +1472,194 @@ msgid ""
1264
  "terms in the database."
1265
  msgstr ""
1266
 
1267
- #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1268
- #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1269
- #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1270
- #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1271
- #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1272
  msgid ""
1273
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1274
  msgstr ""
1275
 
1276
- #: inc/taxonomies.php:219
1277
  msgid "(e.g. All Actors)"
1278
  msgstr ""
1279
 
1280
- #: inc/taxonomies.php:228
1281
  msgid "(e.g. Edit Actor)"
1282
  msgstr ""
1283
 
1284
- #: inc/taxonomies.php:237
1285
  msgid "(e.g. View Actor)"
1286
  msgstr ""
1287
 
1288
- #: inc/taxonomies.php:246
1289
  msgid "(e.g. Update Actor Name)"
1290
  msgstr ""
1291
 
1292
- #: inc/taxonomies.php:247
1293
  msgid "Update Item Name"
1294
  msgstr ""
1295
 
1296
- #: inc/taxonomies.php:255
1297
  msgid "(e.g. Add New Actor)"
1298
  msgstr ""
1299
 
1300
- #: inc/taxonomies.php:264
1301
  msgid "(e.g. New Actor Name)"
1302
  msgstr ""
1303
 
1304
- #: inc/taxonomies.php:265
1305
  msgid "New Item Name"
1306
  msgstr ""
1307
 
1308
- #: inc/taxonomies.php:273
1309
  msgid "(e.g. Parent Actor)"
1310
  msgstr ""
1311
 
1312
- #: inc/taxonomies.php:274
1313
  msgid "Parent Item"
1314
  msgstr ""
1315
 
1316
- #: inc/taxonomies.php:282
1317
  msgid "(e.g. Parent Actor:)"
1318
  msgstr ""
1319
 
1320
- #: inc/taxonomies.php:283
1321
  msgid "Parent Item Colon"
1322
  msgstr ""
1323
 
1324
- #: inc/taxonomies.php:291
1325
  msgid "(e.g. Search Actors)"
1326
  msgstr ""
1327
 
1328
- #: inc/taxonomies.php:292
1329
  msgid "Search Items"
1330
  msgstr ""
1331
 
1332
- #: inc/taxonomies.php:300
1333
  msgid "(e.g. Popular Actors)"
1334
  msgstr ""
1335
 
1336
- #: inc/taxonomies.php:301
1337
  msgid "Popular Items"
1338
  msgstr ""
1339
 
1340
- #: inc/taxonomies.php:309
1341
- msgid "(e.g. Separate actors with commas)"
1342
  msgstr ""
1343
 
1344
- #: inc/taxonomies.php:310
1345
  msgid "Separate Items with Commas"
1346
  msgstr ""
1347
 
1348
- #: inc/taxonomies.php:318
1349
- msgid "(e.g. Add or remove actors)"
1350
  msgstr ""
1351
 
1352
- #: inc/taxonomies.php:319
1353
  msgid "Add or Remove Items"
1354
  msgstr ""
1355
 
1356
- #: inc/taxonomies.php:327
1357
- msgid "(e.g. Choose from the most used actors)"
1358
  msgstr ""
1359
 
1360
- #: inc/taxonomies.php:328
1361
  msgid "Choose From Most Used"
1362
  msgstr ""
1363
 
1364
- #: inc/taxonomies.php:336
1365
- msgid "(e.g. No actors found)"
1366
  msgstr ""
1367
 
1368
- #: inc/taxonomies.php:337
1369
  msgid "Not found"
1370
  msgstr ""
1371
 
1372
- #: inc/taxonomies.php:360
1373
  msgid "Whether the taxonomy can have parent-child relationships"
1374
  msgstr ""
1375
 
1376
- #: inc/taxonomies.php:377
1377
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1378
  msgstr ""
1379
 
1380
- #: inc/taxonomies.php:394
1381
  msgid "Sets the query_var key for this taxonomy."
1382
  msgstr ""
1383
 
1384
- #: inc/taxonomies.php:402
1385
- msgid "(default: none). Query Var needs to be true to use."
1386
  msgstr ""
1387
 
1388
- #: inc/taxonomies.php:403
1389
  msgid "Custom Query Var String"
1390
  msgstr ""
1391
 
1392
- #: inc/taxonomies.php:404
1393
  msgid "Sets a custom query_var slug for this taxonomy."
1394
  msgstr ""
1395
 
1396
- #: inc/taxonomies.php:420
1397
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1398
  msgstr ""
1399
 
1400
- #: inc/taxonomies.php:428
1401
  msgid "(default: taxonomy name)"
1402
  msgstr ""
1403
 
1404
- #: inc/taxonomies.php:430
1405
  msgid "Custom taxonomy rewrite slug."
1406
  msgstr ""
1407
 
1408
- #: inc/taxonomies.php:444
1409
  msgid "Rewrite With Front"
1410
  msgstr ""
1411
 
1412
- #: inc/taxonomies.php:445
1413
  msgid "(default: true)"
1414
  msgstr ""
1415
 
1416
- #: inc/taxonomies.php:461
1417
  msgid "Rewrite Hierarchical"
1418
  msgstr ""
1419
 
1420
- #: inc/taxonomies.php:462
1421
  msgid "(default: false)"
1422
  msgstr ""
1423
 
1424
- #: inc/taxonomies.php:463
1425
  msgid "Should the permastruct allow hierarchical urls."
1426
  msgstr ""
1427
 
1428
- #: inc/taxonomies.php:478
1429
  msgid "Show Admin Column"
1430
  msgstr ""
1431
 
1432
- #: inc/taxonomies.php:480
1433
  msgid ""
1434
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1435
  "types."
1436
  msgstr ""
1437
 
1438
- #: inc/taxonomies.php:585
 
 
 
 
1439
  msgid "Please provide a taxonomy to delete"
1440
  msgstr ""
1441
 
1442
- #: inc/taxonomies.php:636
1443
  msgid "Please provide a taxonomy name"
1444
  msgstr ""
1445
 
1446
- #: inc/taxonomies.php:652
1447
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1448
  msgstr ""
1449
 
1450
- #: inc/taxonomies.php:658
1451
  #, php-format
1452
  msgid "Please choose a different taxonomy name. %s is already used."
1453
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: Custom Post Type UI\n"
5
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
6
+ "POT-Creation-Date: 2015-12-13 00:08-0600\n"
7
  "PO-Revision-Date: 2015-05-19 18:37-0600\n"
8
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
  "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: tests\n"
23
  "X-Poedit-SearchPathExcluded-1: *.js\n"
24
+ "X-Poedit-SearchPathExcluded-2: tests/*\n"
25
 
26
+ #: classes/class.cptui_debug_info.php:7
27
+ msgid ""
28
+ "If you have sought support for Custom Post Type UI on the forums, you may be "
29
+ "requested to send the information below to the plugin developer. Simply "
30
+ "insert the email they provided in the input field at the bottom and click "
31
+ "the \"Send debug info\" button. Only the data below will be sent to them."
32
+ msgstr ""
33
+
34
+ #: classes/class.cptui_debug_info.php:186
35
+ #, php-format
36
+ msgid "CPTUI debug information for %s"
37
+ msgstr ""
38
+
39
+ #: custom-post-type-ui.php:61
40
  msgid "Custom Post Types"
41
  msgstr ""
42
 
43
+ #: custom-post-type-ui.php:61
44
  msgid "CPT UI"
45
  msgstr ""
46
 
47
+ #: custom-post-type-ui.php:62 inc/listings.php:155
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
+ #: custom-post-type-ui.php:63 inc/listings.php:287
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
+ #: custom-post-type-ui.php:64
56
  msgid "Registered Types and Taxes"
57
  msgstr ""
58
 
59
+ #: custom-post-type-ui.php:64
60
  msgid "Registered Types/Taxes"
61
  msgstr ""
62
 
63
+ #: custom-post-type-ui.php:65 custom-post-type-ui.php:551
64
  msgid "Import/Export"
65
  msgstr ""
66
 
67
+ #: custom-post-type-ui.php:66
68
  msgid "Help/Support"
69
  msgstr ""
70
 
71
+ #: custom-post-type-ui.php:70
72
  msgid "About CPT UI"
73
  msgstr ""
74
 
75
  #. Plugin Name of the plugin/theme
76
+ #: custom-post-type-ui.php:382 custom-post-type-ui.php:478
77
  msgid "Custom Post Type UI"
78
  msgstr ""
79
 
80
+ #: custom-post-type-ui.php:385
81
  msgid ""
82
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
83
  "with our plugin provides efficiency and speed in creating post types and "
84
  "taxonomies, to better organize your content, without having to touch code."
85
  msgstr ""
86
 
87
+ #: custom-post-type-ui.php:387
88
+ #, php-format
89
+ msgid "What's new in version %s"
90
+ msgstr ""
91
+
92
+ #: custom-post-type-ui.php:392
93
+ msgid "Updated internationalization"
94
+ msgstr ""
95
+
96
+ #: custom-post-type-ui.php:393
97
+ msgid ""
98
+ "Our textdomain now matches the plugin slug from our WordPress.org repository "
99
+ "to help aid in translating Custom Post Type UI"
100
+ msgstr ""
101
+
102
+ #: custom-post-type-ui.php:396
103
+ msgid "Debugging information"
104
+ msgstr ""
105
+
106
+ #: custom-post-type-ui.php:397
107
+ msgid ""
108
+ "We have added a new \"Debug Info\" tab to the Import/Export area to aid in "
109
+ "debugging issues with Custom Post Type UI."
110
+ msgstr ""
111
+
112
+ #: custom-post-type-ui.php:400
113
+ msgid "Improved accessibility"
114
+ msgstr ""
115
+
116
+ #: custom-post-type-ui.php:401
117
+ msgid ""
118
+ "A lot of work was done in the areas of accessibility to help aid users who "
119
+ "need it. If you have feedback on where it could be further improved, let us "
120
+ "know."
121
+ msgstr ""
122
+
123
+ #: custom-post-type-ui.php:404
124
+ msgid "WP REST API support"
125
+ msgstr ""
126
+
127
+ #: custom-post-type-ui.php:405
128
+ msgid ""
129
+ "We now have support for the required fields for the WP REST API. Now you can "
130
+ "add your Custom Post Type UI post types and taxonomies to the available REST "
131
+ "API lists."
132
  msgstr ""
133
 
134
+ #: custom-post-type-ui.php:408
135
+ msgid "More parameter support"
136
+ msgstr ""
137
+
138
+ #: custom-post-type-ui.php:409
139
  msgid ""
140
+ "We have added more parameters for greater customization of your post type "
141
+ "and taxonomy settings."
 
 
142
  msgstr ""
143
 
144
+ #: custom-post-type-ui.php:412
145
+ msgid "New individual \"Get Code\" sections"
146
  msgstr ""
147
 
148
+ #: custom-post-type-ui.php:413
149
  msgid ""
150
+ "The \"Get Code\" area now has support for copy/paste of individual post "
151
+ "types and taxonomies."
 
152
  msgstr ""
153
 
154
+ #: custom-post-type-ui.php:416
155
+ msgid "Template hierarchy reference"
156
  msgstr ""
157
 
158
+ #: custom-post-type-ui.php:417
159
  msgid ""
160
+ "To help aid your development with post types and taxonomies, we have added a "
161
+ "quick reference list of common template files you can use in your theme. "
162
+ "They will be listed on the \"Registered Types/Taxes\" screen."
163
  msgstr ""
164
 
165
+ #: custom-post-type-ui.php:422
166
  msgid "Help Support This Plugin!"
167
  msgstr ""
168
 
169
+ #: custom-post-type-ui.php:426
170
  msgid "Professional WordPress<br />Third Edition"
171
  msgstr ""
172
 
173
+ #: custom-post-type-ui.php:428
174
+ msgid "Professional WordPress Design and Development book cover."
175
+ msgstr ""
176
+
177
+ #: custom-post-type-ui.php:431
178
  msgid ""
179
  "The leading book on WordPress design and development! Brand new third "
180
  "edition!"
181
  msgstr ""
182
 
183
+ #: custom-post-type-ui.php:434
184
  msgid "Professional WordPress<br />Plugin Development"
185
  msgstr ""
186
 
187
+ #: custom-post-type-ui.php:436
188
+ msgid "Professional WordPress Pluing Development book cover."
189
+ msgstr ""
190
+
191
+ #: custom-post-type-ui.php:439
192
  msgid "Highest rated WordPress development book on Amazon!"
193
  msgstr ""
194
 
195
+ #: custom-post-type-ui.php:442
196
  msgid "PayPal Donation"
197
  msgstr ""
198
 
199
+ #: custom-post-type-ui.php:446
200
  msgid "PayPal - The safer, easier way to pay online!"
201
  msgstr ""
202
 
203
+ #: custom-post-type-ui.php:449
204
  msgid "Please donate to the development of Custom Post Type UI:"
205
  msgstr ""
206
 
207
+ #: custom-post-type-ui.php:475
208
  #, php-format
209
  msgid "%s version %s by %s"
210
  msgstr ""
211
 
212
+ #: custom-post-type-ui.php:486
213
  msgid "Please Report Bugs"
214
  msgstr ""
215
 
216
+ #: custom-post-type-ui.php:489
217
  msgid "Follow on Twitter:"
218
  msgstr ""
219
 
220
+ #: custom-post-type-ui.php:553
221
  msgid "Manage Taxonomies"
222
  msgstr ""
223
 
224
+ #: custom-post-type-ui.php:557
225
  msgid "Manage Post Types"
226
  msgstr ""
227
 
228
+ #: custom-post-type-ui.php:585
229
  msgid "Add New Post Type"
230
  msgstr ""
231
 
232
+ #: custom-post-type-ui.php:588
233
  msgid "Edit Post Types"
234
  msgstr ""
235
 
236
+ #: custom-post-type-ui.php:592
237
  msgid "Add New Taxonomy"
238
  msgstr ""
239
 
240
+ #: custom-post-type-ui.php:595
241
  msgid "Edit Taxonomies"
242
  msgstr ""
243
 
244
+ #: custom-post-type-ui.php:599 inc/listings.php:13 inc/listings.php:171
 
245
  msgid "Post Types"
246
  msgstr ""
247
 
248
+ #: custom-post-type-ui.php:600 inc/import_export.php:393 inc/listings.php:24
249
+ #: inc/listings.php:161
250
  msgid "Taxonomies"
251
  msgstr ""
252
 
253
+ #: custom-post-type-ui.php:601
254
  msgid "Get Code"
255
  msgstr ""
256
 
257
+ #: custom-post-type-ui.php:602
258
+ msgid "Debug Info"
259
+ msgstr ""
260
+
261
+ #: custom-post-type-ui.php:685 inc/listings.php:22 inc/listings.php:170
262
+ #: inc/post-types.php:420 inc/taxonomies.php:402
263
  msgid "Settings"
264
  msgstr ""
265
 
266
+ #: custom-post-type-ui.php:685
267
  msgid "Help"
268
  msgstr ""
269
 
270
+ #: custom-post-type-ui.php:714
271
  #, php-format
272
  msgid "%s has been successfully added"
273
  msgstr ""
274
 
275
+ #: custom-post-type-ui.php:716
276
  #, php-format
277
  msgid "%s has failed to be added"
278
  msgstr ""
279
 
280
+ #: custom-post-type-ui.php:720
281
  #, php-format
282
  msgid "%s has been successfully updated"
283
  msgstr ""
284
 
285
+ #: custom-post-type-ui.php:722
286
  #, php-format
287
  msgid "%s has failed to be updated"
288
  msgstr ""
289
 
290
+ #: custom-post-type-ui.php:726
291
  #, php-format
292
  msgid "%s has been successfully deleted"
293
  msgstr ""
294
 
295
+ #: custom-post-type-ui.php:728
296
  #, php-format
297
  msgid "%s has failed to be deleted"
298
  msgstr ""
299
 
300
+ #: custom-post-type-ui.php:732
301
  #, php-format
302
  msgid "%s has been successfully imported"
303
  msgstr ""
304
 
305
+ #: custom-post-type-ui.php:734
306
  #, php-format
307
  msgid "%s has failed to be imported"
308
  msgstr ""
309
 
310
+ #: custom-post-type-ui.php:817 custom-post-type-ui.php:834
311
  #, php-format
312
  msgid "Add new %s"
313
  msgstr ""
314
 
315
+ #: custom-post-type-ui.php:818 custom-post-type-ui.php:832 inc/listings.php:78
316
+ #: inc/listings.php:220
317
  #, php-format
318
  msgid "Edit %s"
319
  msgstr ""
320
 
321
+ #: custom-post-type-ui.php:819
322
  #, php-format
323
  msgid "New %s"
324
  msgstr ""
325
 
326
+ #: custom-post-type-ui.php:820
327
  #, php-format
328
  msgid "View %s"
329
  msgstr ""
330
 
331
+ #: custom-post-type-ui.php:821 custom-post-type-ui.php:829
332
  #, php-format
333
  msgid "All %s"
334
  msgstr ""
335
 
336
+ #: custom-post-type-ui.php:822 custom-post-type-ui.php:827
337
  #, php-format
338
  msgid "Search %s"
339
  msgstr ""
340
 
341
+ #: custom-post-type-ui.php:823
342
  #, php-format
343
  msgid "No %s found."
344
  msgstr ""
345
 
346
+ #: custom-post-type-ui.php:824
347
  #, php-format
348
  msgid "No %s found in trash."
349
  msgstr ""
350
 
351
+ #: custom-post-type-ui.php:828
352
  #, php-format
353
  msgid "Popular %s"
354
  msgstr ""
355
 
356
+ #: custom-post-type-ui.php:830
357
  #, php-format
358
  msgid "Parent %s"
359
  msgstr ""
360
 
361
+ #: custom-post-type-ui.php:831
362
  #, php-format
363
  msgid "Parent %s:"
364
  msgstr ""
365
 
366
+ #: custom-post-type-ui.php:833
367
  #, php-format
368
  msgid "Update %s"
369
  msgstr ""
370
 
371
+ #: custom-post-type-ui.php:835
372
  #, php-format
373
  msgid "New %s name"
374
  msgstr ""
375
 
376
+ #: custom-post-type-ui.php:836
377
  #, php-format
378
  msgid "Separate %s with commas"
379
  msgstr ""
380
 
381
+ #: custom-post-type-ui.php:837
382
  #, php-format
383
  msgid "Add or remove %s"
384
  msgstr ""
385
 
386
+ #: custom-post-type-ui.php:838
387
  #, php-format
388
  msgid "Choose from the most used %s"
389
  msgstr ""
390
 
391
+ #: inc/import_export.php:77
392
+ msgid "No taxonomies to display at this time"
393
+ msgstr ""
394
+
395
+ #: inc/import_export.php:184
396
+ msgid "No post types to display at this time"
397
+ msgstr ""
398
+
399
+ #: inc/import_export.php:372
400
+ msgid "Post types"
401
+ msgstr ""
402
+
403
+ #: inc/import_export.php:404
404
  msgid ""
405
  "If you are wanting to migrate registered post types or taxonomies from this "
406
  "site to another, that will also use Custom Post Type UI, use the import and "
408
  "the information in the \"Get Code\" tab."
409
  msgstr ""
410
 
411
+ #: inc/import_export.php:407
412
  msgid "NOTE"
413
  msgstr ""
414
 
415
+ #: inc/import_export.php:408
416
+ msgid ""
417
+ "This will not export the associated posts or taxonomy terms, just the "
418
+ "settings."
419
  msgstr ""
420
 
421
+ #: inc/import_export.php:415
422
  msgid "Import Post Types"
423
  msgstr ""
424
 
425
+ #: inc/import_export.php:419 inc/import_export.php:459
426
  msgid "Paste content here."
427
  msgstr ""
428
 
429
+ #: inc/import_export.php:422 inc/import_export.php:462
430
  msgid "Note:"
431
  msgstr ""
432
 
433
+ #: inc/import_export.php:422 inc/import_export.php:462
434
  msgid "Importing will overwrite previous registered settings."
435
  msgstr ""
436
 
437
+ #: inc/import_export.php:426
438
  msgid ""
439
  "To import post types from a different WordPress site, paste the exported "
440
  "content from that site and click the \"Import\" button."
441
  msgstr ""
442
 
443
+ #: inc/import_export.php:430 inc/import_export.php:470
444
  msgid "Import"
445
  msgstr ""
446
 
447
+ #: inc/import_export.php:435
448
  msgid "Export Post Types"
449
  msgstr ""
450
 
451
+ #: inc/import_export.php:442
452
  msgid "No post types registered yet."
453
  msgstr ""
454
 
455
+ #: inc/import_export.php:445 inc/import_export.php:485
456
  msgid ""
457
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
458
  "(Mac)."
459
  msgstr ""
460
 
461
+ #: inc/import_export.php:448
462
  msgid ""
463
  "Use the content above to import current post types into a different "
464
  "WordPress site. You can also use this to simply back up your post type "
465
  "settings."
466
  msgstr ""
467
 
468
+ #: inc/import_export.php:455
469
  msgid "Import Taxonomies"
470
  msgstr ""
471
 
472
+ #: inc/import_export.php:466
473
  msgid ""
474
  "To import taxonomies from a different WordPress site, paste the exported "
475
  "content from that site and click the \"Import\" button."
476
  msgstr ""
477
 
478
+ #: inc/import_export.php:475
479
  msgid "Export Taxonomies"
480
  msgstr ""
481
 
482
+ #: inc/import_export.php:482
483
  msgid "No taxonomies registered yet."
484
  msgstr ""
485
 
486
+ #: inc/import_export.php:488
487
  msgid ""
488
  "Use the content above to import current taxonomies into a different "
489
  "WordPress site. You can also use this to simply back up your taxonomy "
490
  "settings."
491
  msgstr ""
492
 
493
+ #: inc/import_export.php:499
494
  msgid "Get Post Type and Taxonomy Code"
495
  msgstr ""
496
 
497
+ #: inc/import_export.php:501
498
  msgid "All CPT UI Post Types"
499
  msgstr ""
500
 
501
+ #: inc/import_export.php:504 inc/import_export.php:513
502
+ #: inc/import_export.php:521 inc/import_export.php:530
503
  msgid "Copy/paste the code below into your functions.php file."
504
  msgstr ""
505
 
506
+ #: inc/import_export.php:512
507
+ #, php-format
508
+ msgid "%s Post Type"
509
+ msgstr ""
510
+
511
+ #: inc/import_export.php:518
512
  msgid "All CPT UI Taxonomies"
513
  msgstr ""
514
 
515
+ #: inc/import_export.php:529
516
+ #, php-format
517
+ msgid "%s Taxonomy"
518
  msgstr ""
519
 
520
+ #: inc/import_export.php:549
521
+ msgid "Please provide an email address to send debug information to: "
522
  msgstr ""
523
 
524
+ #: inc/import_export.php:551
525
+ msgid "Send debug info"
526
  msgstr ""
527
 
528
  #: inc/listings.php:10
529
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
530
  msgstr ""
531
 
532
+ #: inc/listings.php:16 inc/listings.php:164
533
  #, php-format
534
  msgid "Total count: %d"
535
  msgstr ""
536
 
537
+ #: inc/listings.php:21
538
  msgid "Post Type"
539
  msgstr ""
540
 
541
+ #: inc/listings.php:23 inc/post-types.php:754
542
  msgid "Supports"
543
  msgstr ""
544
 
545
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
546
+ #: inc/taxonomies.php:260
547
  msgid "Labels"
548
  msgstr ""
549
 
550
+ #: inc/listings.php:26 inc/listings.php:173
551
+ msgid "Template Hierarchy"
552
  msgstr ""
553
 
554
+ #: inc/listings.php:81
555
  msgid "View frontend archive"
556
  msgstr ""
557
 
558
+ #: inc/listings.php:114 inc/listings.php:249
559
  msgid "No custom labels to display"
560
  msgstr ""
561
 
562
+ #: inc/listings.php:119
563
+ msgid "Archives file name examples."
564
+ msgstr ""
565
+
566
+ #: inc/listings.php:125
567
+ msgid "Single Posts file name examples."
568
+ msgstr ""
569
+
570
+ #: inc/listings.php:134 inc/listings.php:267
571
+ msgid "Template hierarchy Theme Handbook"
572
+ msgstr ""
573
+
574
+ #: inc/listings.php:152
575
+ #, php-format
576
+ msgid "No post types registered for display. Visit %s to get started."
577
+ msgstr ""
578
+
579
+ #: inc/listings.php:169
580
  msgid "Taxonomy"
581
  msgstr ""
582
 
583
+ #: inc/listings.php:254
584
+ msgid "Archives"
585
+ msgstr ""
586
+
587
+ #: inc/listings.php:263
588
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
589
+ msgstr ""
590
+
591
+ #: inc/listings.php:284
592
+ #, php-format
593
+ msgid "No taxonomies registered for display. Visit %s to get started."
594
+ msgstr ""
595
+
596
+ #: inc/post-types.php:34 inc/taxonomies.php:29
597
  msgid "Are you sure you want to delete this?"
598
  msgstr ""
599
 
600
+ #: inc/post-types.php:93
601
  msgid ""
602
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
603
  "registers a new post type entry for your install."
604
  msgstr ""
605
 
606
+ #: inc/post-types.php:94
607
  msgid ""
608
  "Use appropriate checkbox above save/delete buttons if you wish to change "
609
  "slugs and update post types for existing posts."
610
  msgstr ""
611
 
612
+ #: inc/post-types.php:95 inc/taxonomies.php:90
613
  msgid "Select: "
614
  msgstr ""
615
 
616
+ #: inc/post-types.php:107 inc/taxonomies.php:102
617
  msgid "Select"
618
  msgstr ""
619
 
620
+ #: inc/post-types.php:137
621
  msgid "Post Type Slug"
622
  msgstr ""
623
 
624
+ #: inc/post-types.php:138
625
  msgid "(e.g. movie)"
626
  msgstr ""
627
 
628
+ #: inc/post-types.php:139
629
  msgid ""
630
  "The post type name. Used to retrieve custom post type content. Should be "
631
  "short and unique"
632
  msgstr ""
633
 
634
+ #: inc/post-types.php:150 inc/taxonomies.php:140
635
  msgid "Plural Label"
636
  msgstr ""
637
 
638
+ #: inc/post-types.php:151
639
  msgid "(e.g. Movies)"
640
  msgstr ""
641
 
642
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
643
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
644
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
645
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
646
+ #: inc/post-types.php:411
647
  msgid "Post type label. Used in the admin menu for displaying post types."
648
  msgstr ""
649
 
650
+ #: inc/post-types.php:162 inc/taxonomies.php:149
651
  msgid "Singular Label"
652
  msgstr ""
653
 
654
+ #: inc/post-types.php:163
655
  msgid "(e.g. Movie)"
656
  msgstr ""
657
 
658
+ #: inc/post-types.php:164
659
  msgid ""
660
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
661
  "needed."
662
  msgstr ""
663
 
664
+ #: inc/post-types.php:180 inc/taxonomies.php:166
665
  msgid "Description"
666
  msgstr ""
667
 
668
+ #: inc/post-types.php:181
669
  msgid ""
670
  "Custom Post Type Description. Describe what your custom post type is used "
671
  "for."
672
  msgstr ""
673
 
674
+ #: inc/post-types.php:193
675
  msgid "Migrate posts to newly renamed post type?"
676
  msgstr ""
677
 
678
+ #: inc/post-types.php:194
679
  msgid "Check this to migrate posts if and when renaming your post type."
680
  msgstr ""
681
 
682
+ #: inc/post-types.php:213
683
  msgid "Save Post Type"
684
  msgstr ""
685
 
686
+ #: inc/post-types.php:224
687
  msgid "Delete Post Type"
688
  msgstr ""
689
 
690
+ #: inc/post-types.php:236
691
  msgid "Add Post Type"
692
  msgstr ""
693
 
694
+ #: inc/post-types.php:247 inc/taxonomies.php:249
695
  msgid "Starter Notes"
696
  msgstr ""
697
 
698
+ #: inc/post-types.php:250
699
  #, php-format
700
  msgid ""
701
  "Post Type names should have %smax 20 characters%s, and only contain "
704
  "revision, nav_menu_item."
705
  msgstr ""
706
 
707
+ #: inc/post-types.php:251
708
  #, php-format
709
  msgid ""
710
  "If you are unfamiliar with the advanced post type settings, just fill in the "
713
  "post type name. Hover over the question mark for more details."
714
  msgstr ""
715
 
716
+ #: inc/post-types.php:252
717
  #, php-format
718
  msgid ""
719
  "Deleting custom post types will %sNOT%s delete any content into the database "
721
  "the content will still exist."
722
  msgstr ""
723
 
724
+ #: inc/post-types.php:266 inc/taxonomies.php:270
725
  msgid "Menu Name"
726
  msgstr ""
727
 
728
+ #: inc/post-types.php:267
729
  msgid "Custom menu name for your custom post type."
730
  msgstr ""
731
 
732
+ #: inc/post-types.php:271
733
  msgid "(e.g. My Movies)"
734
  msgstr ""
735
 
736
+ #: inc/post-types.php:278 inc/taxonomies.php:279
737
  msgid "All Items"
738
  msgstr ""
739
 
740
+ #: inc/post-types.php:283
741
  msgid "(e.g. All Movies)"
742
  msgstr ""
743
 
744
+ #: inc/post-types.php:290
745
  msgid "Add New"
746
  msgstr ""
747
 
748
+ #: inc/post-types.php:295
749
  msgid "(e.g. Add New)"
750
  msgstr ""
751
 
752
+ #: inc/post-types.php:302 inc/taxonomies.php:315
753
  msgid "Add New Item"
754
  msgstr ""
755
 
756
+ #: inc/post-types.php:307
757
  msgid "(e.g. Add New Movie)"
758
  msgstr ""
759
 
760
+ #: inc/post-types.php:314
761
+ msgid "Edit"
762
+ msgstr ""
763
+
764
+ #: inc/post-types.php:319
765
  msgid "(e.g. Edit)"
766
  msgstr ""
767
 
768
+ #: inc/post-types.php:326 inc/taxonomies.php:288
769
  msgid "Edit Item"
770
  msgstr ""
771
 
772
+ #: inc/post-types.php:331
773
  msgid "(e.g. Edit Movie)"
774
  msgstr ""
775
 
776
+ #: inc/post-types.php:338
777
  msgid "New Item"
778
  msgstr ""
779
 
780
+ #: inc/post-types.php:343
781
  msgid "(e.g. New Movie)"
782
  msgstr ""
783
 
784
+ #: inc/post-types.php:350
785
  msgid "View"
786
  msgstr ""
787
 
788
+ #: inc/post-types.php:355
789
  msgid "(e.g. View)"
790
  msgstr ""
791
 
792
+ #: inc/post-types.php:362 inc/taxonomies.php:297
793
  msgid "View Item"
794
  msgstr ""
795
 
796
+ #: inc/post-types.php:367
797
  msgid "(e.g. View Movie)"
798
  msgstr ""
799
 
800
+ #: inc/post-types.php:374
801
  msgid "Search Item"
802
  msgstr ""
803
 
804
+ #: inc/post-types.php:379
805
  msgid "(e.g. Search Movie)"
806
  msgstr ""
807
 
808
+ #: inc/post-types.php:386
809
  msgid "Not Found"
810
  msgstr ""
811
 
812
+ #: inc/post-types.php:391
813
  msgid "(e.g. No Movies found)"
814
  msgstr ""
815
 
816
+ #: inc/post-types.php:398
817
  msgid "Not Found in Trash"
818
  msgstr ""
819
 
820
+ #: inc/post-types.php:403
821
  msgid "(e.g. No Movies found in Trash)"
822
  msgstr ""
823
 
824
+ #: inc/post-types.php:410
825
  msgid "Parent"
826
  msgstr ""
827
 
828
+ #: inc/post-types.php:415
829
  msgid "(e.g. Parent Movie)"
830
  msgstr ""
831
 
832
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
833
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
834
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
835
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
836
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
837
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
838
+ #: inc/taxonomies.php:548
839
  msgid "False"
840
  msgstr ""
841
 
842
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
843
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
844
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
845
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
846
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
847
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
848
+ #: inc/taxonomies.php:549
849
  msgid "True"
850
  msgstr ""
851
 
852
+ #: inc/post-types.php:438
853
  msgid "Public"
854
  msgstr ""
855
 
856
+ #: inc/post-types.php:439
857
+ msgid "(CPTUI default: True.)"
 
 
858
  msgstr ""
859
 
860
+ #: inc/post-types.php:440
861
  msgid ""
862
+ "WordPress core defaults to false. CPTUI defaults to true for user sake. "
863
  "Whether posts of this type should be shown in the admin UI and is publicly "
864
  "queryable."
865
  msgstr ""
866
 
867
+ #: inc/post-types.php:458 inc/taxonomies.php:434
868
  msgid "Show UI"
869
  msgstr ""
870
 
871
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
872
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
873
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
874
+ msgid "(default: True)"
875
+ msgstr ""
876
+
877
+ #: inc/post-types.php:460
878
  msgid "Whether to generate a default UI for managing this post type."
879
  msgstr ""
880
 
881
+ #: inc/post-types.php:478
882
+ msgid "Show in Nav Menus"
883
  msgstr ""
884
 
885
+ #: inc/post-types.php:479
886
+ msgid "(CPTUI default: true)"
887
  msgstr ""
888
 
889
+ #: inc/post-types.php:480
890
+ msgid "Whether post type is available for selection in navigation menus."
891
+ msgstr ""
892
+
893
+ #: inc/post-types.php:498 inc/taxonomies.php:557
894
+ msgid "Show in REST API"
895
  msgstr ""
896
 
897
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
898
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
899
+ #: inc/taxonomies.php:558
900
  msgid "(default: False)"
901
  msgstr ""
902
 
903
+ #: inc/post-types.php:500
904
+ msgid "Whether to show this post type data in the WP REST API."
905
+ msgstr ""
906
+
907
+ #: inc/post-types.php:508 inc/taxonomies.php:567
908
+ msgid "REST API base slug"
909
+ msgstr ""
910
+
911
+ #: inc/post-types.php:509 inc/taxonomies.php:568
912
+ msgid "Slug to use in REST API URLs."
913
+ msgstr ""
914
+
915
+ #: inc/post-types.php:519
916
+ msgid "Has Archive"
917
+ msgstr ""
918
+
919
+ #: inc/post-types.php:520
920
+ msgid "Whether the post type will have a post type archive URL."
921
+ msgstr ""
922
+
923
+ #: inc/post-types.php:521
924
+ msgid "If left blank, the archive slug will default to the post type slug."
925
+ msgstr ""
926
+
927
+ #: inc/post-types.php:547
928
  msgid "Slug to be used for archive URL."
929
  msgstr ""
930
 
931
+ #: inc/post-types.php:567
932
  msgid "Exclude From Search"
933
  msgstr ""
934
 
935
+ #: inc/post-types.php:569
936
  msgid ""
937
  "Whether to exclude posts with this post type from front end search results."
938
  msgstr ""
939
 
940
+ #: inc/post-types.php:580
941
  msgid "Capability Type"
942
  msgstr ""
943
 
944
+ #: inc/post-types.php:581
945
  msgid "The post type to use for checking read, edit, and delete capabilities"
946
  msgstr ""
947
 
948
+ #: inc/post-types.php:598 inc/taxonomies.php:417
949
  msgid "Hierarchical"
950
  msgstr ""
951
 
952
+ #: inc/post-types.php:600
953
  msgid "Whether the post type can have parent-child relationships"
954
  msgstr ""
955
 
956
+ #: inc/post-types.php:618 inc/taxonomies.php:477
957
  msgid "Rewrite"
958
  msgstr ""
959
 
960
+ #: inc/post-types.php:620
961
  msgid "Whether or not WordPress should use rewrites for this post type"
962
  msgstr ""
963
 
964
+ #: inc/post-types.php:631 inc/taxonomies.php:488
965
  msgid "Custom Rewrite Slug"
966
  msgstr ""
967
 
968
+ #: inc/post-types.php:632
969
  msgid "(default: post type slug)"
970
  msgstr ""
971
 
972
+ #: inc/post-types.php:633
973
  msgid "Custom post type slug to use instead of the default."
974
  msgstr ""
975
 
976
+ #: inc/post-types.php:650
977
  msgid "With Front"
978
  msgstr ""
979
 
980
+ #: inc/post-types.php:652 inc/taxonomies.php:505
981
  msgid "Should the permastruct be prepended with the front base."
982
  msgstr ""
983
 
984
+ #: inc/post-types.php:670 inc/taxonomies.php:451
985
  msgid "Query Var"
986
  msgstr ""
987
 
988
+ #: inc/post-types.php:672
989
  msgid "Sets the query_var key for this post type."
990
  msgstr ""
991
 
992
+ #: inc/post-types.php:683
993
+ msgid "Custom Query Var Slug"
994
+ msgstr ""
995
+
996
+ #: inc/post-types.php:684
997
+ msgid "(default: post type slug) Query var needs to be true to use."
998
+ msgstr ""
999
+
1000
+ #: inc/post-types.php:685
1001
+ msgid "Custom query var slug to use instead of the default."
1002
+ msgstr ""
1003
+
1004
+ #: inc/post-types.php:692
1005
  msgid "Menu Position"
1006
  msgstr ""
1007
 
1008
+ #: inc/post-types.php:693
1009
  msgid ""
1010
  "The position in the menu order the post type should appear. show_in_menu "
1011
  "must be true."
1012
  msgstr ""
1013
 
1014
+ #: inc/post-types.php:694
1015
  msgid ""
1016
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
1017
  "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
1018
  "the \"menu_position\" section. Range of 5-100"
1019
  msgstr ""
1020
 
1021
+ #: inc/post-types.php:709
1022
  msgid "Show in Menu"
1023
  msgstr ""
1024
 
1025
+ #: inc/post-types.php:710
1026
  msgid ""
1027
  "Whether to show the post type in the admin menu and where to show that menu."
1028
  msgstr ""
1029
 
1030
+ #: inc/post-types.php:711
1031
  msgid ""
1032
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
1033
  "php\" is indicated for second input, post type will be sub menu of that."
1034
  msgstr ""
1035
 
1036
+ #: inc/post-types.php:737
1037
  msgid "Top-level page file name to make post type a sub-menu of."
1038
  msgstr ""
1039
 
1040
+ #: inc/post-types.php:749
1041
  msgid "Menu Icon"
1042
  msgstr ""
1043
 
1044
+ #: inc/post-types.php:750
1045
  msgid "(Full URL for icon or Dashicon class)"
1046
  msgstr ""
1047
 
1048
+ #: inc/post-types.php:751
1049
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
1050
  msgstr ""
1051
 
1052
+ #: inc/post-types.php:764
1053
  msgid "Title"
1054
  msgstr ""
1055
 
1056
+ #: inc/post-types.php:765
1057
  msgid "Adds the title meta box when creating content for this custom post type"
1058
  msgstr ""
1059
 
1060
+ #: inc/post-types.php:779
1061
  msgid "Editor"
1062
  msgstr ""
1063
 
1064
+ #: inc/post-types.php:780
1065
  msgid ""
1066
  "Adds the content editor meta box when creating content for this custom post "
1067
  "type"
1068
  msgstr ""
1069
 
1070
+ #: inc/post-types.php:794
1071
  msgid "Excerpt"
1072
  msgstr ""
1073
 
1074
+ #: inc/post-types.php:795
1075
  msgid ""
1076
  "Adds the excerpt meta box when creating content for this custom post type"
1077
  msgstr ""
1078
 
1079
+ #: inc/post-types.php:809
1080
  msgid "Trackbacks"
1081
  msgstr ""
1082
 
1083
+ #: inc/post-types.php:810
1084
  msgid ""
1085
  "Adds the trackbacks meta box when creating content for this custom post type"
1086
  msgstr ""
1087
 
1088
+ #: inc/post-types.php:824
1089
  msgid "Custom Fields"
1090
  msgstr ""
1091
 
1092
+ #: inc/post-types.php:825
1093
  msgid ""
1094
  "Adds the custom fields meta box when creating content for this custom post "
1095
  "type"
1096
  msgstr ""
1097
 
1098
+ #: inc/post-types.php:839
1099
  msgid "Comments"
1100
  msgstr ""
1101
 
1102
+ #: inc/post-types.php:840
1103
  msgid ""
1104
  "Adds the comments meta box when creating content for this custom post type"
1105
  msgstr ""
1106
 
1107
+ #: inc/post-types.php:854
1108
  msgid "Revisions"
1109
  msgstr ""
1110
 
1111
+ #: inc/post-types.php:855
1112
  msgid ""
1113
  "Adds the revisions meta box when creating content for this custom post type"
1114
  msgstr ""
1115
 
1116
+ #: inc/post-types.php:869
1117
  msgid "Featured Image"
1118
  msgstr ""
1119
 
1120
+ #: inc/post-types.php:870
1121
  msgid ""
1122
  "Adds the featured image meta box when creating content for this custom post "
1123
  "type"
1124
  msgstr ""
1125
 
1126
+ #: inc/post-types.php:884
1127
  msgid "Author"
1128
  msgstr ""
1129
 
1130
+ #: inc/post-types.php:885
1131
  msgid ""
1132
  "Adds the author meta box when creating content for this custom post type"
1133
  msgstr ""
1134
 
1135
+ #: inc/post-types.php:899
1136
  msgid "Page Attributes"
1137
  msgstr ""
1138
 
1139
+ #: inc/post-types.php:900
1140
  msgid ""
1141
  "Adds the page attribute meta box when creating content for this custom post "
1142
  "type"
1143
  msgstr ""
1144
 
1145
+ #: inc/post-types.php:914
1146
  msgid "Post Formats"
1147
  msgstr ""
1148
 
1149
+ #: inc/post-types.php:915
1150
  msgid "Adds post format support"
1151
  msgstr ""
1152
 
1153
+ #: inc/post-types.php:920
1154
  msgid "Use the option below to explicitly set \"supports\" to false."
1155
  msgstr ""
1156
 
1157
+ #: inc/post-types.php:928
1158
  msgid "None"
1159
  msgstr ""
1160
 
1161
+ #: inc/post-types.php:929
1162
  msgid "Remove all support features"
1163
  msgstr ""
1164
 
1165
+ #: inc/post-types.php:936
1166
  msgid "Custom \"Supports\""
1167
  msgstr ""
1168
 
1169
+ #: inc/post-types.php:937
1170
  msgid ""
1171
  "Use this input to register custom \"supports\" values, separated by commas."
1172
  msgstr ""
1173
 
1174
+ #: inc/post-types.php:943
1175
  msgid "Provide custom support slugs here."
1176
  msgstr ""
1177
 
1178
+ #: inc/post-types.php:949
1179
  msgid "Built-in Taxonomies"
1180
  msgstr ""
1181
 
1182
+ #: inc/post-types.php:978 inc/taxonomies.php:200
1183
  #, php-format
1184
  msgid "Adds %s support"
1185
  msgstr ""
1186
 
1187
+ #: inc/post-types.php:1085
1188
  msgid "Please provide a post type to delete"
1189
  msgstr ""
1190
 
1191
+ #: inc/post-types.php:1145
1192
  msgid "Please provide a post type name"
1193
  msgstr ""
1194
 
1195
+ #: inc/post-types.php:1169
1196
  msgid "Please do not use quotes in post type names or rewrite slugs"
1197
  msgstr ""
1198
 
1199
+ #: inc/post-types.php:1176
1200
  #, php-format
1201
  msgid "Please choose a different post type name. %s is already registered."
1202
  msgstr ""
1203
 
1204
+ #: inc/support.php:45
1205
  msgid "Custom Post Type UI Support"
1206
  msgstr ""
1207
 
1208
+ #: inc/support.php:47
1209
  #, php-format
1210
  msgid ""
1211
  "Please note that this plugin will NOT handle display of registered post "
1213
  "you. If all else fails, visit us on the %s"
1214
  msgstr ""
1215
 
1216
+ #: inc/support.php:48
1217
  msgid "Support Forums"
1218
  msgstr ""
1219
 
1220
+ #: inc/support.php:54
1221
  msgid "General"
1222
  msgstr ""
1223
 
1224
+ #: inc/support.php:57
1225
+ msgid ""
1226
+ "I have post types with spaces in their slug and can not successfully delete "
1227
+ "them. How can I fix that?"
1228
+ msgstr ""
1229
+
1230
+ #: inc/support.php:58
1231
+ msgid ""
1232
+ "Visit the Import/Export page and copy the export code into the import side "
1233
+ "on the left. Replace the space with an underscore and then click \"Import\". "
1234
+ "You should be able to delete the individual post types afterwards."
1235
+ msgstr ""
1236
+
1237
+ #: inc/support.php:62
1238
  msgid ""
1239
  "I changed my custom post type name and now I can not get to my posts. How do "
1240
  "I get them back?"
1241
  msgstr ""
1242
 
1243
+ #: inc/support.php:63
1244
  msgid ""
1245
  "You can either change the custom post type name back to the original name or "
1246
  "try the Post Type Switcher plugin"
1247
  msgstr ""
1248
 
1249
+ #: inc/support.php:68
1250
  msgid ""
1251
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1252
  "shown. How do I remove the duplicate?"
1253
  msgstr ""
1254
 
1255
+ #: inc/support.php:69
1256
  msgid ""
1257
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1258
  "saved option which gets registered as its own post type or taxonomy. Since "
1260
  "delete the previous version's entry."
1261
  msgstr ""
1262
 
1263
+ #: inc/support.php:72
1264
  msgid ""
1265
  "I have added post thumbnail and/or post format support to my post type, but "
1266
  "those do not appear when adding a post type post."
1267
  msgstr ""
1268
 
1269
+ #: inc/support.php:73
1270
  msgid ""
1271
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1272
  msgstr ""
1273
 
1274
+ #: inc/support.php:76
1275
+ msgid "Do you have any recommendations for an alternative to Visual Composer?"
1276
+ msgstr ""
1277
+
1278
+ #: inc/support.php:77
1279
+ msgid "We recommend using VelocityPage."
1280
+ msgstr ""
1281
+
1282
+ #: inc/support.php:82
1283
+ msgid ""
1284
+ "Is there any way to get CPTUI-registered post types working with Visual "
1285
+ "Composer Media Grid?"
1286
+ msgstr ""
1287
+
1288
+ #: inc/support.php:84
1289
+ msgid "Please see the solution from the following forum support thread."
1290
+ msgstr ""
1291
+
1292
+ #: inc/support.php:91
1293
  msgid "Front-end Display"
1294
  msgstr ""
1295
 
1296
+ #: inc/support.php:94
1297
  msgid "What template files should I edit to alter my post type display?"
1298
  msgstr ""
1299
 
1300
+ #: inc/support.php:95
1301
  #, php-format
1302
  msgid ""
1303
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1304
  "details about available templates."
1305
  msgstr ""
1306
 
1307
+ #: inc/support.php:102
1308
  msgid "How do I display my custom post type on my site?"
1309
  msgstr ""
1310
 
1311
+ #: inc/support.php:103
1312
  #, php-format
1313
  msgid ""
1314
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1316
  "should be something like \"http://www.mysite.com/post-type-slug\""
1317
  msgstr ""
1318
 
1319
+ #: inc/support.php:109
1320
  msgid ""
1321
  "I have added categories and tags to my custom post type, but they do not "
1322
  "appear in the archives."
1323
  msgstr ""
1324
 
1325
+ #: inc/support.php:110
1326
  #, php-format
1327
  msgid ""
1328
  "You will need to add your newly created post type to the types that the "
1330
  "that at %s"
1331
  msgstr ""
1332
 
1333
+ #: inc/support.php:119
1334
  msgid "Advanced"
1335
  msgstr ""
1336
 
1337
+ #: inc/support.php:122
1338
  msgid "How do I add custom metaboxes to my post type?"
1339
  msgstr ""
1340
 
1341
+ #: inc/support.php:124
1342
  #, php-format
1343
  msgid ""
1344
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1345
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1346
  msgstr ""
1347
 
1348
+ #: inc/support.php:130
1349
  msgid ""
1350
  "How do I add a newly registered taxonomy to a post type that already exists?"
1351
  msgstr ""
1352
 
1353
+ #: inc/support.php:132
1354
  #, php-format
1355
  msgid "Check out the %s function for documentation and usage examples."
1356
  msgstr ""
1357
 
1358
+ #: inc/support.php:138
1359
  msgid "Post relationships?"
1360
  msgstr ""
1361
 
1362
+ #: inc/support.php:139
1363
  #, php-format
1364
  msgid ""
1365
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1366
  "plugin that should be a good start."
1367
  msgstr ""
1368
 
1369
+ #: inc/support.php:148
1370
  msgid "Is there any function reference list?"
1371
  msgstr ""
1372
 
1373
+ #: inc/support.php:149
1374
  #, php-format
1375
  msgid ""
1376
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1377
  "will be useful as they are attached to hooks."
1378
  msgstr ""
1379
 
1380
+ #: inc/support.php:153
1381
  msgid ""
1382
  "How do I filter the \"enter title here\" text in the post editor screen?"
1383
  msgstr ""
1384
 
1385
+ #: inc/support.php:154
1386
  msgid ""
1387
  "Change text inside the post/page editor title field. Should be able to adapt "
1388
  "as necessary."
1389
  msgstr ""
1390
 
1391
+ #: inc/taxonomies.php:89
1392
  msgid ""
1393
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1394
  "registers a new taxonomy entry for your install."
1395
  msgstr ""
1396
 
1397
+ #: inc/taxonomies.php:129
1398
  msgid "Taxonomy Slug"
1399
  msgstr ""
1400
 
1401
+ #: inc/taxonomies.php:130
1402
  msgid "(e.g. actor)"
1403
  msgstr ""
1404
 
1405
+ #: inc/taxonomies.php:131
1406
  msgid ""
1407
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1408
  "and unique"
1409
  msgstr ""
1410
 
1411
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
1412
  msgid "(e.g. Actors)"
1413
  msgstr ""
1414
 
1415
+ #: inc/taxonomies.php:141
1416
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1417
  msgstr ""
1418
 
1419
+ #: inc/taxonomies.php:148
1420
  msgid "(e.g. Actor)"
1421
  msgstr ""
1422
 
1423
+ #: inc/taxonomies.php:150
1424
  msgid ""
1425
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1426
  msgstr ""
1427
 
1428
+ #: inc/taxonomies.php:167
1429
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
1430
+ msgstr ""
1431
+
1432
+ #: inc/taxonomies.php:170
1433
  msgid "Attach to Post Type"
1434
  msgstr ""
1435
 
1436
+ #: inc/taxonomies.php:220
1437
  msgid "Save Taxonomy"
1438
  msgstr ""
1439
 
1440
+ #: inc/taxonomies.php:231
1441
  msgid "Delete Taxonomy"
1442
  msgstr ""
1443
 
1444
+ #: inc/taxonomies.php:243
1445
  msgid "Add Taxonomy"
1446
  msgstr ""
1447
 
1448
+ #: inc/taxonomies.php:252
1449
  #, php-format
1450
  msgid ""
1451
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1453
  "letters that do not have accents."
1454
  msgstr ""
1455
 
1456
+ #: inc/taxonomies.php:253
1457
  #, php-format
1458
  msgid ""
1459
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1463
  "marks for more details."
1464
  msgstr ""
1465
 
1466
+ #: inc/taxonomies.php:254
1467
  #, php-format
1468
  msgid ""
1469
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1472
  "terms in the database."
1473
  msgstr ""
1474
 
1475
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
1476
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
1477
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
1478
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
1479
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
1480
  msgid ""
1481
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1482
  msgstr ""
1483
 
1484
+ #: inc/taxonomies.php:278
1485
  msgid "(e.g. All Actors)"
1486
  msgstr ""
1487
 
1488
+ #: inc/taxonomies.php:287
1489
  msgid "(e.g. Edit Actor)"
1490
  msgstr ""
1491
 
1492
+ #: inc/taxonomies.php:296
1493
  msgid "(e.g. View Actor)"
1494
  msgstr ""
1495
 
1496
+ #: inc/taxonomies.php:305
1497
  msgid "(e.g. Update Actor Name)"
1498
  msgstr ""
1499
 
1500
+ #: inc/taxonomies.php:306
1501
  msgid "Update Item Name"
1502
  msgstr ""
1503
 
1504
+ #: inc/taxonomies.php:314
1505
  msgid "(e.g. Add New Actor)"
1506
  msgstr ""
1507
 
1508
+ #: inc/taxonomies.php:323
1509
  msgid "(e.g. New Actor Name)"
1510
  msgstr ""
1511
 
1512
+ #: inc/taxonomies.php:324
1513
  msgid "New Item Name"
1514
  msgstr ""
1515
 
1516
+ #: inc/taxonomies.php:332
1517
  msgid "(e.g. Parent Actor)"
1518
  msgstr ""
1519
 
1520
+ #: inc/taxonomies.php:333
1521
  msgid "Parent Item"
1522
  msgstr ""
1523
 
1524
+ #: inc/taxonomies.php:341
1525
  msgid "(e.g. Parent Actor:)"
1526
  msgstr ""
1527
 
1528
+ #: inc/taxonomies.php:342
1529
  msgid "Parent Item Colon"
1530
  msgstr ""
1531
 
1532
+ #: inc/taxonomies.php:350
1533
  msgid "(e.g. Search Actors)"
1534
  msgstr ""
1535
 
1536
+ #: inc/taxonomies.php:351
1537
  msgid "Search Items"
1538
  msgstr ""
1539
 
1540
+ #: inc/taxonomies.php:359
1541
  msgid "(e.g. Popular Actors)"
1542
  msgstr ""
1543
 
1544
+ #: inc/taxonomies.php:360
1545
  msgid "Popular Items"
1546
  msgstr ""
1547
 
1548
+ #: inc/taxonomies.php:368
1549
+ msgid "(e.g. Separate Actors with commas)"
1550
  msgstr ""
1551
 
1552
+ #: inc/taxonomies.php:369
1553
  msgid "Separate Items with Commas"
1554
  msgstr ""
1555
 
1556
+ #: inc/taxonomies.php:377
1557
+ msgid "(e.g. Add or remove Actors)"
1558
  msgstr ""
1559
 
1560
+ #: inc/taxonomies.php:378
1561
  msgid "Add or Remove Items"
1562
  msgstr ""
1563
 
1564
+ #: inc/taxonomies.php:386
1565
+ msgid "(e.g. Choose from the most used Actors)"
1566
  msgstr ""
1567
 
1568
+ #: inc/taxonomies.php:387
1569
  msgid "Choose From Most Used"
1570
  msgstr ""
1571
 
1572
+ #: inc/taxonomies.php:395
1573
+ msgid "(e.g. No Actors found)"
1574
  msgstr ""
1575
 
1576
+ #: inc/taxonomies.php:396
1577
  msgid "Not found"
1578
  msgstr ""
1579
 
1580
+ #: inc/taxonomies.php:419
1581
  msgid "Whether the taxonomy can have parent-child relationships"
1582
  msgstr ""
1583
 
1584
+ #: inc/taxonomies.php:436
1585
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1586
  msgstr ""
1587
 
1588
+ #: inc/taxonomies.php:453
1589
  msgid "Sets the query_var key for this taxonomy."
1590
  msgstr ""
1591
 
1592
+ #: inc/taxonomies.php:461
1593
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
1594
  msgstr ""
1595
 
1596
+ #: inc/taxonomies.php:462
1597
  msgid "Custom Query Var String"
1598
  msgstr ""
1599
 
1600
+ #: inc/taxonomies.php:463
1601
  msgid "Sets a custom query_var slug for this taxonomy."
1602
  msgstr ""
1603
 
1604
+ #: inc/taxonomies.php:479
1605
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1606
  msgstr ""
1607
 
1608
+ #: inc/taxonomies.php:487
1609
  msgid "(default: taxonomy name)"
1610
  msgstr ""
1611
 
1612
+ #: inc/taxonomies.php:489
1613
  msgid "Custom taxonomy rewrite slug."
1614
  msgstr ""
1615
 
1616
+ #: inc/taxonomies.php:503
1617
  msgid "Rewrite With Front"
1618
  msgstr ""
1619
 
1620
+ #: inc/taxonomies.php:504
1621
  msgid "(default: true)"
1622
  msgstr ""
1623
 
1624
+ #: inc/taxonomies.php:520
1625
  msgid "Rewrite Hierarchical"
1626
  msgstr ""
1627
 
1628
+ #: inc/taxonomies.php:521
1629
  msgid "(default: false)"
1630
  msgstr ""
1631
 
1632
+ #: inc/taxonomies.php:522
1633
  msgid "Should the permastruct allow hierarchical urls."
1634
  msgstr ""
1635
 
1636
+ #: inc/taxonomies.php:537
1637
  msgid "Show Admin Column"
1638
  msgstr ""
1639
 
1640
+ #: inc/taxonomies.php:539
1641
  msgid ""
1642
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1643
  "types."
1644
  msgstr ""
1645
 
1646
+ #: inc/taxonomies.php:559
1647
+ msgid "Whether to show this taxonomy data in the WP REST API."
1648
+ msgstr ""
1649
+
1650
+ #: inc/taxonomies.php:676
1651
  msgid "Please provide a taxonomy to delete"
1652
  msgstr ""
1653
 
1654
+ #: inc/taxonomies.php:727
1655
  msgid "Please provide a taxonomy name"
1656
  msgstr ""
1657
 
1658
+ #: inc/taxonomies.php:743
1659
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1660
  msgstr ""
1661
 
1662
+ #: inc/taxonomies.php:749
1663
  #, php-format
1664
  msgid "Please choose a different taxonomy name. %s is already used."
1665
  msgstr ""
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Custom Post Type UI ===
2
- Contributors: williamsba1, tw2113, webdevstudios
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056
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.4
7
- Stable tag: 1.1.3
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -17,12 +17,6 @@ Please note that this plugin will NOT handle display of registered post types or
17
 
18
  All official development on this plugin is on GitHub. Version bumps will still be published here on WordPress.org. You can find the repo at [https://github.com/WebDevStudios/custom-post-type-ui](https://github.com/WebDevStudios/custom-post-type-ui). Please file confirmed issues, bugs, and enhancement ideas there, when possible.
19
 
20
- Import/Export functionality amended from original contribution by [Ben Allfree](http://wordpress.org/support/profile/benallfree).
21
-
22
- Implied credit to:
23
-
24
- * [exeQutor](https://github.com/exeQutor) For proper supports fix.
25
-
26
  == Screenshots ==
27
 
28
  1. Add new post type screen and tab.
@@ -36,6 +30,29 @@ Implied credit to:
36
 
37
  == Changelog ==
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  = 1.1.3 =
40
  * Bumping WordPress compatibility version only. No other changes involved.
41
 
@@ -192,78 +209,31 @@ Implied credit to:
192
  * Updated plugin UI to be consistent with WordPress styles
193
  * Added "Get Code" feature to easily copy code used for post types and taxonomies (BETA)
194
 
195
- = 0.6.2 =
196
- * Added support for assigning custom taxonomies to post types when creating/editing
197
- * Fixed bug when setting hierarchy on a post type (props @JohnPBloch)
198
- * Fixed an error when registering a post type with no supported meta boxes
199
- * Fixed "Undefined index" error when determining return URLs
200
- * Added Chinese translation
201
-
202
- = 0.6.1 =
203
- * Added translation functionality and .pot file
204
- * Added Japanese translation
205
- * Reworked entire path structure fixing "page not found" errors
206
- * Fixed "First argument is expected to be a valid callback" error
207
- * Random bug fixes
208
-
209
- = 0.6 =
210
- * Added support for custom labels with custom post types and taxonomies
211
- * Added ability to assign built-in taxonomies to custom post types
212
- * Added ability to assign custom taxonomies to multiple post types
213
- * Fixed jQuery conflict with other plugins (props shadyvb)
214
- * Managing post types now displays total published/draft per type
215
- * Code optimization and cleanup
216
-
217
- = 0.5.2 =
218
- * Updated excerpts to excerpt in CPT Support field (props vlad27aug)
219
-
220
- = 0.5.1 =
221
- * Added flush_rewrite_rules() to reset rules when using custom rewrite slugs
222
-
223
- = 0.5 =
224
- * Updated post-thumbnails to thumbnail in CPT Support field
225
- * Added singular_label option for custom post types
226
- * Added support for custom Rewrite slugs for post types and taxonomies
227
- * Reworked entire array structure for easier additions down the road
228
- * Fixed Get Code bug in Custom Post Types and Custom Taxonomies
229
- * View additional custom post types registered in WordPress
230
-
231
- = 0.4.1 =
232
- * Fixed bug with REWRITE and QUERY_VAR values not executing correctly
233
- * Set REWRITE and QUERY_VAR values to True by default
234
-
235
- = 0.4 =
236
- * Default view now hides advanced options
237
- * Get Code link to easily copy/paste code used to create custom post types and taxonomies
238
- * Added support for 'author' and 'page-attributes' in CPT Supports field
239
-
240
- = 0.3.1 =
241
- * Fixed multiple warnings and errors
242
-
243
- = 0.3 =
244
- * added new menu/submenus for individual sections
245
- * added support for 'title' and 'editor' in CPT Supports field
246
- * added Singular Label for custom taxonomies (props sleary)
247
-
248
- = 0.2.1 =
249
- * Set default Query Var setting to False
250
-
251
- = 0.2 =
252
- * Added support for creating custom taxonomies
253
- * Increased internationalization support
254
- * Fixed siteurl bug
255
-
256
- = 0.1.2 =
257
- * Fixed a bug where default values were incorrect
258
-
259
- = 0.1.1 =
260
- * Fixed a bunch of warnings
261
-
262
- = 0.1 =
263
- * First beta release
264
-
265
  == Upgrade Notice ==
266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  = 1.1.3 =
268
  * Bumping WordPress compatibility version only. No other changes involved.
269
 
@@ -402,75 +372,18 @@ Full list:
402
  * Updated plugin UI to be consistent with WordPress styles
403
  * Added "Get Code" feature to easily copy code used for post types and taxonomies (BETA)
404
 
405
- = 0.6.2 =
406
- * Added support for assigning custom taxonomies to post types when creating/editing
407
- * Fixed bug when setting hierarchy on a post type (props @JohnPBloch)
408
- * Fixed an error when registering a post type with no supported meta boxes
409
- * Fixed "Undefined index" error when determining return URLs
410
- * Added Chinese translation
411
-
412
- = 0.6.1 =
413
- * Added translation functionality and .pot file
414
- * Added Japanese translation
415
- * Reworked entire path structure fixing "page not found" errors
416
- * Fixed "First argument is expected to be a valid callback" error
417
- * Random bug fixes
418
-
419
- = 0.6 =
420
- * Added support for custom labels with custom post types and taxonomies
421
- * Added ability to assign built-in taxonomies to custom post types
422
- * Added ability to assign custom taxonomies to multiple post types
423
- * Fixed jQuery conflict with other plugins (props shadyvb)
424
- * Managing post types now displays total published/draft per type
425
- * Code optimization and cleanup
426
-
427
- = 0.5.2 =
428
- * Updated excerpts to excerpt in CPT Support field (props vlad27aug)
429
-
430
- = 0.5.1 =
431
- * Added flush_rewrite_rules() to reset rules when using custom rewrite slugs
432
-
433
- = 0.5 =
434
- * Fixed multiple bugs
435
- * If upgrading from pre 0.5 version you will need to recreate your custom post types
436
-
437
- = 0.4.1 =
438
- * Fixed bug with REWRITE and QUERY_VAR values not executing correctly
439
-
440
- = 0.4 =
441
- * Default view now hides advanced options
442
- * Get Code link to easily copy/paste code used to create custom post types and taxonomies
443
- * Added support for 'author' and 'page-attributes' in CPT Supports field
444
-
445
- = 0.3.1 =
446
- * Fixed multiple warnings and errors
447
-
448
- = 0.3 =
449
- * added new menu/submenus for individual sections
450
- * added support for 'title' and 'editor' in CPT Supports field
451
- * added Singular Label for custom taxonomies (props sleary)
452
-
453
- = 0.2.1 =
454
- * Set default Query Var setting to False
455
-
456
- = 0.2 =
457
- * Fixed the siteurl bug
458
- * Added support for creating custom taxonomies
459
-
460
- = 0.1.2 =
461
- * Fixed a bug where default values were incorrect
462
-
463
- = 0.1.1 =
464
- * Fixed a bunch of warnings
465
-
466
- = 0.1 =
467
- * First beta release
468
-
469
  == Installation ==
470
 
 
471
  1. Upload the Custom Post Type UI folder to the plugins directory in your WordPress installation
472
- 2. Activate the plugin
473
- 3. Navigate to the Custom Post Type UI Menu
 
 
 
 
 
 
474
 
475
  That's it! Now you can easily start creating custom post types and taxonomies in WordPress
476
 
@@ -480,5 +393,7 @@ Please see the Help/Support section for FAQs and start a new thread on the suppo
480
 
481
  == Other Notes ==
482
 
 
 
483
  = Outside contributors that we wish to thank =
484
  [brandondove](https://github.com/brandondove)
1
  === Custom Post Type UI ===
2
+ Contributors: tw2113, williamsba1, webdevstudios
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
+ Requires at least: 4.2
6
+ Tested up to: 4.4.1
7
+ Stable tag: 1.2.0
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
17
 
18
  All official development on this plugin is on GitHub. Version bumps will still be published here on WordPress.org. You can find the repo at [https://github.com/WebDevStudios/custom-post-type-ui](https://github.com/WebDevStudios/custom-post-type-ui). Please file confirmed issues, bugs, and enhancement ideas there, when possible.
19
 
 
 
 
 
 
 
20
  == Screenshots ==
21
 
22
  1. Add new post type screen and tab.
30
 
31
  == Changelog ==
32
 
33
+ = 1.2.0 =
34
+ * Added: Support for show_in_nav_menus parameter for post types.
35
+ * Added: Support for taxonomy descriptions.
36
+ * Added: Message on listings page if no post types or taxonomies are available.
37
+ * Added: Note regarding 'public' parameter not being true by default for WordPress but is for CPTUI.
38
+ * Added: Individual post type and taxonomy output for "Get Code" area.
39
+ * Added: Fallback values for post type/taxonomy select input and get code area if no plural label provided.
40
+ * Added: Support for custom query_var strings for post types.
41
+ * Added: Support for show_in_rest and rest_base for post types and taxonomies for the upcoming WordPress REST API.
42
+ * Added: Template hierarchy files to listings tables for user reference.
43
+ * Added: Form labels in more areas to help with accessibility and usability.
44
+ * Added: Fieldset method to Admin UI class for easily adding fieldset output.
45
+ * Added: Debugging tab for use with CPTUI support.
46
+ * Updated: Minimum version required. Now WordPress 4.2.
47
+ * Updated: Heading tags match accessibility changes in WordPress 4.3.
48
+ * Updated: Moved page title for some pages above tabs.
49
+ * Updated: Textdomain now matches WordPress.org repo slug.
50
+ * Updated: Added Visual Composer questions/answers to support section.
51
+ * Updated: Added question/answer regarding spaces in post type slugs
52
+ * Updated: Changed help icons to a Dashicon help icon.
53
+ * Fixed: Support for YARPP plugin.
54
+ * Fixed: Prevent potential issues with AJAX requests and our scripts/styles
55
+
56
  = 1.1.3 =
57
  * Bumping WordPress compatibility version only. No other changes involved.
58
 
209
  * Updated plugin UI to be consistent with WordPress styles
210
  * Added "Get Code" feature to easily copy code used for post types and taxonomies (BETA)
211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  == Upgrade Notice ==
213
 
214
+ = 1.2.0 =
215
+ * Added: Support for show_in_nav_menus parameter for post types.
216
+ * Added: Support for taxonomy descriptions.
217
+ * Added: Message on listings page if no post types or taxonomies are available.
218
+ * Added: Note regarding 'public' parameter not being true by default for WordPress but is for CPTUI.
219
+ * Added: Individual post type and taxonomy output for "Get Code" area.
220
+ * Added: Fallback values for post type/taxonomy select input and get code area if no plural label provided.
221
+ * Added: Support for custom query_var strings for post types.
222
+ * Added: Support for show_in_rest and rest_base for post types and taxonomies for the upcoming WordPress REST API.
223
+ * Added: Template hierarchy files to listings tables for user reference.
224
+ * Added: Form labels in more areas to help with accessibility and usability.
225
+ * Added: Fieldset method to Admin UI class for easily adding fieldset output.
226
+ * Added: Debugging tab for use with CPTUI support.
227
+ * Updated: Minimum version required. Now WordPress 4.2.
228
+ * Updated: Heading tags match accessibility changes in WordPress 4.3.
229
+ * Updated: Moved page title for some pages above tabs.
230
+ * Updated: Textdomain now matches WordPress.org repo slug.
231
+ * Updated: Added Visual Composer questions/answers to support section.
232
+ * Updated: Added question/answer regarding spaces in post type slugs
233
+ * Updated: Changed help icons to a Dashicon help icon.
234
+ * Fixed: Support for YARPP plugin.
235
+ * Fixed: Prevent potential issues with AJAX requests and our scripts/styles
236
+
237
  = 1.1.3 =
238
  * Bumping WordPress compatibility version only. No other changes involved.
239
 
372
  * Updated plugin UI to be consistent with WordPress styles
373
  * Added "Get Code" feature to easily copy code used for post types and taxonomies (BETA)
374
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  == Installation ==
376
 
377
+ === Manual ===
378
  1. Upload the Custom Post Type UI folder to the plugins directory in your WordPress installation
379
+ 2. Activate the plugin.
380
+ 3. Navigate to the "CPTUI" Menu.
381
+
382
+ === Admin Installer ===
383
+ 1. Visit the Add New plugin screen and search for "custom post type ui"
384
+ 2. Click the "Install Now" button.
385
+ 3. Activate the plugin.
386
+ 4. Navigate to the "CPTUI" Menu.
387
 
388
  That's it! Now you can easily start creating custom post types and taxonomies in WordPress
389
 
393
 
394
  == Other Notes ==
395
 
396
+ Import/Export functionality amended from original contribution by [Ben Allfree](http://wordpress.org/support/profile/benallfree).
397
+
398
  = Outside contributors that we wish to thank =
399
  [brandondove](https://github.com/brandondove)