Custom Post Type UI - Version 1.1.0

Version Description

  • Simplified UI with regards to clicking amount.
  • Auto selecting of first available post type or taxonomy in Edit tab.
  • Switch to post type or taxonomy upon selection within Edit tab.
  • Return of a list of CPTUI-registered post types and taxonomies.
  • Post type slug update capability.
  • Added function reference 3rd party link to support area.
  • New hooks in edit screen for custom content display on screen.
  • String updates.
  • UI field option for custom "Supports" parameters from other plugins. Example: Yet Another Related Posts Plugin.
  • Updated help/support section with another reference tool.
  • Trim extra spaces potentially left behind in text inputs.
  • Rearranged menu listing slightly to remove duplicate naming.
  • GitHub repo has GitHub Updater (https://github.com/afragen/github-updater) compatible copy of CPTUI version that is available on WordPress.org
Download this release

Release Info

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

Code changes from version 1.0.8 to 1.1.0

README.md DELETED
@@ -1,4 +0,0 @@
1
- custom-post-type-ui
2
- ===================
3
-
4
- Admin UI for creating custom post types and custom taxonomies in WordPress
 
 
 
 
composer.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "name": "WebDevStudios/wp-custom-post-type-ui",
3
- "description": "The Custom Post Type UI Plugin for Wordpress found at https://wordpress.org/plugins/custom-post-type-ui/ ",
4
- "homepage": "https://github.com/WebDevStudios/custom-post-type-ui",
5
- "license": "MIT",
6
- "authors": [
7
- {
8
- "name": "WebDevStudios",
9
- "email": "hello@WebDevStudios",
10
- "homepage": "https://github.com/WebDevStudios/custom-post-type-ui"
11
- }
12
- ],
13
- "minimum-stability": "dev",
14
- "require": {
15
- "php": ">=5.3.0"
16
- },
17
- "autoload": {
18
- "psr-0": { "CPT": "src/" }
19
- }
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/cptui.css CHANGED
@@ -9,7 +9,7 @@
9
  .cptui-help:hover { font-weight: bold; }
10
  .required { color: rgb(255,0,0); }
11
  .cptui-table #excerpt { height: 16px; margin-right: 4px; width: auto; }
12
- .cptui-table td { vertical-align: top; width: 50%; }
13
  #cptui_select_post_type, #cptui_select_taxonomy { margin-top: 15px; }
14
  .cptui_post_import, .cptui_tax_import {
15
  height: 200px;
@@ -22,60 +22,85 @@
22
  resize: vertical;
23
  width: 100%;
24
  }
25
- #cptui_accordion { height: 500px; }
26
- #cptui_accordion h3:hover, .cptui-table .question:hover { cursor: pointer; }
27
  .question { font-size: 18px; font-weight: bold; }
28
  .answer { margin: 10px 0 0 20px; }
29
- #support li {
30
- position: relative;
31
- }
32
- #cptui_accordion h3:after, #support .question:before {
33
  content: "\f139";
34
  display: inline-block;
35
  font: normal 25px/1 'dashicons';
36
  -webkit-font-smoothing: antialiased;
37
  }
38
- #cptui_accordion h3.ui-state-active:after, #support .question.active:before {
39
- content: "\f140";
40
- }
41
  #support .question:before {
42
  margin-left: -25px;
43
  position: absolute;
44
  }
45
- #cptui_accordion h3:after {
46
- position: absolute;
47
- }
48
  #support ol li { list-style: none; }
49
-
50
- .ui-accordion-content {
51
- overflow: auto;
52
- margin: 0 auto;
53
-
54
- background:
55
- /* Shadow covers */
56
- linear-gradient(#F1F1F1 30%, rgba(255,255,255,0)),
57
- linear-gradient(rgba(255,255,255,0), #F1F1F1 70%) 0 100%,
58
-
59
- /* Shadows */
60
- radial-gradient(50% 0, farthest-side, rgba(0,0,0,.3), rgba(0,0,0,0)),
61
- radial-gradient(50% 100%,farthest-side, rgba(0,0,0,.3), rgba(0,0,0,0)) 0 100%;
62
- background:
63
- /* Shadow covers */
64
- linear-gradient(#F1F1F1 30%, rgba(255,255,255,0)),
65
- linear-gradient(rgba(255,255,255,0), #F1F1F1 70%) 0 100%,
66
-
67
- /* Shadows */
68
- radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.3), rgba(0,0,0,0)),
69
- radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.3), rgba(0,0,0,0)) 0 100%;
70
- background-repeat: no-repeat;
71
- background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
72
-
73
- /* Opera doesn't support this in the shorthand */
74
- background-attachment: local, local, scroll, scroll;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
76
- .one-third {
77
- width: 33%;
 
 
 
78
  }
79
- .valign {
80
- vertical-align: top;
 
 
 
81
  }
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%; }
13
  #cptui_select_post_type, #cptui_select_taxonomy { margin-top: 15px; }
14
  .cptui_post_import, .cptui_tax_import {
15
  height: 200px;
22
  resize: vertical;
23
  width: 100%;
24
  }
25
+ .cptui-table .question:hover { cursor: pointer; }
 
26
  .question { font-size: 18px; font-weight: bold; }
27
  .answer { margin: 10px 0 0 20px; }
28
+ #support li { position: relative; }
29
+ #support .question:before {
 
 
30
  content: "\f139";
31
  display: inline-block;
32
  font: normal 25px/1 'dashicons';
33
  -webkit-font-smoothing: antialiased;
34
  }
35
+ #support .question.active:before { content: "\f140"; }
 
 
36
  #support .question:before {
37
  margin-left: -25px;
38
  position: absolute;
39
  }
 
 
 
40
  #support ol li { list-style: none; }
41
+ .one-third { width: 33%; }
42
+ .valign { vertical-align: top; }
43
+ .typetax-rename {
44
+ color: rgb(255,0,0);
45
+ display: block;
46
+ }
47
+ .typetax-rename.cptui-hidden { display: none; }
48
+ .about-wrap .cptui-feature {
49
+ overflow: visible !important;
50
+ *zoom:1;
51
+ }
52
+ .about-wrap h3 + .cptui-feature { margin-top: 0; }
53
+ .about-wrap .cptui-feature:before,
54
+ .about-wrap .cptui-feature:after {
55
+ content: " ";
56
+ display: table;
57
+ }
58
+ .about-wrap .cptui-feature:after { clear: both; }
59
+ .about-wrap .feature-rest div {
60
+ width: 50% !important;
61
+ padding-right: 100px;
62
+ -moz-box-sizing: border-box;
63
+ box-sizing: border-box;
64
+ margin: 0 !important;
65
+ }
66
+ .rtl .about-wrap .feature-rest div { padding-left: 100px; }
67
+ .about-wrap .feature-rest div.last-feature {
68
+ padding-left: 100px;
69
+ padding-right: 0;
70
+ }
71
+ .rtl .about-wrap .feature-rest div.last-feature {
72
+ padding-right: 100px;
73
+ padding-left: 0;
74
+ }
75
+ .about-wrap div.icon {
76
+ width: 0 !important;
77
+ padding: 0;
78
+ margin: 0;
79
+ }
80
+ .about-wrap .feature-rest div.icon:before {
81
+ font-weight: normal;
82
+ width: 100%;
83
+ font-size: 170px;
84
+ line-height: 125px;
85
+ color: #9c5d90;
86
+ display: inline-block;
87
+ position: relative;
88
+ text-align: center;
89
+ speak: none;
90
+ margin: 0 0 0 -100px;
91
+ content: "\e01d";
92
+ -webkit-font-smoothing: antialiased;
93
+ -moz-osx-font-smoothing: grayscale;
94
  }
95
+ .rtl .about-wrap .feature-rest div.icon:before { margin: 0 -100px 0 0; }
96
+ .about-integrations {
97
+ background: #fff;
98
+ margin: 20px 0;
99
+ padding: 1px 20px 10px;
100
  }
101
+ .changelog h4 { line-height: 1.4; }
102
+ .cptui-about-text { margin-bottom: 1em !important; }
103
+ .cptui-table th p {
104
+ font-weight: 400;
105
+ font-size: 12px;
106
  }
custom-post-type-ui.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
- Version: 1.0.8
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  Domain Path: /languages
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  exit;
17
  }
18
 
19
- define( 'CPT_VERSION', '1.0.8' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
@@ -52,10 +52,21 @@ add_action( 'init', 'cptui_load_textdomain' );
52
  /**
53
  * Load our main menu.
54
  *
 
 
55
  * @since 0.1.0
56
  */
57
  function cptui_plugin_menu() {
58
  add_menu_page( __( 'Custom Post Types', 'cpt-plugin' ), __( 'CPT UI', 'cpt-plugin' ), 'manage_options', 'cptui_main_menu', 'cptui_settings' );
 
 
 
 
 
 
 
 
 
59
  }
60
  add_action( 'admin_menu', 'cptui_plugin_menu' );
61
 
@@ -67,6 +78,7 @@ add_action( 'admin_menu', 'cptui_plugin_menu' );
67
  function cptui_create_submenus() {
68
  require_once( plugin_dir_path( __FILE__ ) . 'inc/post-types.php' );
69
  require_once( plugin_dir_path( __FILE__ ) . 'inc/taxonomies.php' );
 
70
  require_once( plugin_dir_path( __FILE__ ) . 'inc/import_export.php' );
71
  require_once( plugin_dir_path( __FILE__ ) . 'inc/support.php' );
72
  }
@@ -131,6 +143,13 @@ function cptui_register_single_post_type( $post_type = array() ) {
131
  $post_type['supports'] = array_merge( $post_type['supports'], $user_supports_params );
132
  }
133
 
 
 
 
 
 
 
 
134
  if ( in_array( 'none', $post_type['supports'] ) ) {
135
  $post_type['supports'] = false;
136
  }
@@ -308,7 +327,7 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
308
  * @return string $value HTML markup for the page.
309
  */
310
  function cptui_settings() { ?>
311
- <div class="wrap">
312
  <?php
313
 
314
  /**
@@ -317,33 +336,31 @@ function cptui_settings() { ?>
317
  * @since 1.0.0
318
  */
319
  do_action( 'cptui_main_page_start' ); ?>
320
- <h2><?php _e( 'Custom Post Type UI', 'cpt-plugin' ); ?> <?php echo CPT_VERSION; ?></h2>
321
 
322
- <div class="alignleft">
323
- <p><?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' ); ?></p>
324
-
325
- <p><?php echo sprintf( __( 'To get started with creating some post types, please visit %s and for taxonomies, visit %s. If you need some help, check the %s page. If nothing there fits your issue, visit our %s and we will try to get to your question as soon as possible.', 'cpt-plugin' ),
326
- sprintf( '<a href="' . admin_url( 'admin.php?page=cptui_manage_post_types' ) . '">%s</a>', __( 'Add/Edit Post Types', 'cpt-plugin' ) ),
327
- sprintf( '<a href="' . admin_url( 'admin.php?page=cptui_manage_taxonomies' ) . '">%s</a>', __( 'Add/Edit Taxonomies', 'cpt-plugin' ) ),
328
- sprintf( '<a href="' . admin_url( 'admin.php?page=cptui_support' ) . '">%s</a>', __( 'Help/Support', 'cpt-plugin' ) ),
329
- sprintf( '<a href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>', __( 'CPT UI Support Forum', 'cpt-plugin' ) )
330
- );
331
- ?>
332
- </p>
333
  </div>
334
 
335
- <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
 
337
- /**
338
- * Fires right above the table displaying the promoted books.
339
- *
340
- * @since 1.0.0
341
- */
342
- do_action( 'cptui_main_page_before_books' ); ?>
343
  <table border="0">
344
- <tr>
345
- <td colspan="3"><h2><?php _e( 'Help Support This Plugin!', 'cpt-plugin' ); ?></h2></td>
346
- </tr>
347
  <tr>
348
  <td class="one-third valign">
349
  <h3><?php _e( 'Professional WordPress<br />Third Edition', 'cpt-plugin' ); ?></h3>
@@ -351,7 +368,7 @@ function cptui_settings() { ?>
351
  <img src="<?php echo plugins_url( '/images/professional-wordpress-thirdedition.jpg', __FILE__ ); ?>" width="200">
352
  </a>
353
  <br />
354
- <?php _e( 'The leading book on WordPress design and development! Brand new third edition!', 'cpt-plugin' ); ?>
355
  </td>
356
  <td class="one-third valign">
357
  <h3><?php _e( 'Professional WordPress<br />Plugin Development', 'cpt-plugin' ); ?></h3>
@@ -359,29 +376,20 @@ function cptui_settings() { ?>
359
  <img src="<?php echo plugins_url( '/images/professional-wordpress-plugin-development.png', __FILE__ ); ?>" width="200">
360
  </a>
361
  <br />
362
- <?php _e( 'Highest rated WordPress development book on Amazon!', 'cpt-plugin' ); ?>
363
  </td>
364
  <td class="one-third valign">
365
  <h3><?php _e( 'PayPal Donation', 'cpt-plugin' ); ?></h3>
366
- <p><?php _e( 'Please donate to the development of Custom Post Type UI:', 'cpt-plugin' ); ?></p>
367
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
368
  <input type="hidden" name="cmd" value="_s-xclick">
369
  <input type="hidden" name="hosted_button_id" value="YJEDXPHE49Q3U">
370
  <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' ); ?>">
371
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
372
  </form>
 
373
  </td>
374
  </tr>
375
  </table>
376
-
377
- <?php
378
- /**
379
- * Fires right after the table displaying the promoted books.
380
- *
381
- * @since 1.0.0
382
- */
383
- do_action( 'cptui_main_page_after_books' ); ?>
384
-
385
  </div>
386
  <?php
387
  }
@@ -404,18 +412,23 @@ function cptui_footer( $original = '' ) {
404
  }
405
 
406
  return sprintf(
407
- __( '%s version %s by %s - %s %s %s &middot; %s &middot; %s', 'cpt-plugin' ),
408
  sprintf(
409
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
410
  __( 'Custom Post Type UI', 'cpt-plugin' )
411
  ),
412
  CPT_VERSION,
413
- '<a href="http://webdevstudios.com" target="_blank">WebDevStudios</a>',
414
- sprintf(
415
- '<a href="https://github.com/WebDevStudios/custom-post-type-ui/issues" target="_blank">%s</a>',
416
- __( 'Please Report Bugs', 'cpt-plugin' )
417
- ),
418
- __( 'Follow on Twitter:', 'cpt-plugin' ),
 
 
 
 
 
419
  '<a href="http://twitter.com/tw2113" target="_blank">Michael</a>',
420
  '<a href="http://twitter.com/williamsba" target="_blank">Brad</a>',
421
  '<a href="http://twitter.com/webdevstudios" target="_blank">WebDevStudios</a>'
@@ -535,7 +548,6 @@ function cptui_settings_tab_menu( $page = 'post_types' ) {
535
  do_action( 'cptui_settings_tabs_after' );
536
  ?>
537
  </h2>
538
-
539
  <?php
540
  }
541
 
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
+ Version: 1.1.0
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  Domain Path: /languages
16
  exit;
17
  }
18
 
19
+ define( 'CPT_VERSION', '1.1.0' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
52
  /**
53
  * Load our main menu.
54
  *
55
+ * Submenu items added in version 1.1.0
56
+ *
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
 
78
  function cptui_create_submenus() {
79
  require_once( plugin_dir_path( __FILE__ ) . 'inc/post-types.php' );
80
  require_once( plugin_dir_path( __FILE__ ) . 'inc/taxonomies.php' );
81
+ require_once( plugin_dir_path( __FILE__ ) . 'inc/listings.php' );
82
  require_once( plugin_dir_path( __FILE__ ) . 'inc/import_export.php' );
83
  require_once( plugin_dir_path( __FILE__ ) . 'inc/support.php' );
84
  }
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
+ }
152
+
153
  if ( in_array( 'none', $post_type['supports'] ) ) {
154
  $post_type['supports'] = false;
155
  }
327
  * @return string $value HTML markup for the page.
328
  */
329
  function cptui_settings() { ?>
330
+ <div class="wrap about-wrap">
331
  <?php
332
 
333
  /**
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>
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>
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>
 
 
 
 
 
 
 
 
 
393
  </div>
394
  <?php
395
  }
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>'
422
+ ).
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>',
433
  '<a href="http://twitter.com/williamsba" target="_blank">Brad</a>',
434
  '<a href="http://twitter.com/webdevstudios" target="_blank">WebDevStudios</a>'
548
  do_action( 'cptui_settings_tabs_after' );
549
  ?>
550
  </h2>
 
551
  <?php
552
  }
553
 
inc/import_export.php CHANGED
@@ -6,16 +6,6 @@
6
  # Exit if accessed directly
7
  if ( ! defined( 'ABSPATH' ) ) exit;
8
 
9
- /**
10
- * Add our settings page to the menu.
11
- *
12
- * @since 1.0.0
13
- */
14
- function cptui_importexport_admin_menu() {
15
- add_submenu_page( 'cptui_main_menu', __( 'Import/Export', 'cpt-plugin' ), __( 'Import/Export', 'cpt-plugin' ), 'manage_options', 'cptui_importexport', 'cptui_importexport' );
16
- }
17
- add_action( 'admin_menu', 'cptui_importexport_admin_menu' );
18
-
19
  /**
20
  * Create our settings page output.
21
  *
@@ -59,7 +49,7 @@ function cptui_importexport() {
59
  <table class="form-table cptui-table">
60
  <?php if ( !empty( $_GET ) && empty( $_GET['action'] ) ) { ?>
61
  <tr>
62
- <td>
63
  <h3><?php _e( 'Import Post Types', 'cpt-plugin' ); ?></h3>
64
  <form method="post">
65
  <textarea class="cptui_post_import" placeholder="<?php esc_attr_e( 'Paste content here.', 'cpt-plugin' ); ?>" name="cptui_post_import"></textarea>
@@ -68,7 +58,7 @@ function cptui_importexport() {
68
  <p><input class="button button-primary" type="submit" value="<?php esc_attr_e( 'Import', 'cpt-plugin' ); ?>"/></p>
69
  </form>
70
  </td>
71
- <td>
72
  <h3><?php _e( 'Export Post Types', 'cpt-plugin' ); ?></h3>
73
  <?php
74
  $cptui_post_types = get_option( 'cptui_post_types', array() );
@@ -84,7 +74,7 @@ function cptui_importexport() {
84
  </tr>
85
  <?php } elseif ( !empty( $_GET ) && 'taxonomies' == $_GET['action'] ) { ?>
86
  <tr>
87
- <td>
88
  <h3><?php _e( 'Import Taxonomies', 'cpt-plugin' ); ?></h3>
89
  <form method="post">
90
  <textarea class="cptui_tax_import" placeholder="<?php esc_attr_e( 'Paste content here.', 'cpt-plugin' ); ?>" name="cptui_tax_import"></textarea>
@@ -93,7 +83,7 @@ function cptui_importexport() {
93
  <p><input class="button button-primary" type="submit" value="<?php esc_attr_e( 'Import', 'cpt-plugin' ); ?>"/></p>
94
  </form>
95
  </td>
96
- <td>
97
  <h3><?php _e( 'Export Taxonomies', 'cpt-plugin' ); ?></h3>
98
  <?php
99
  $cptui_taxonomies = get_option( 'cptui_taxonomies', array() );
@@ -208,8 +198,7 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
208
  if ( !empty( $label ) ) {
209
  echo '"' . $key . '" => "' . $label . '",' . "\n\t\t";
210
  }
211
- } ?>
212
- );
213
 
214
  $args = array(
215
  "labels" => $labels,
@@ -340,10 +329,9 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
340
  "hierarchical" => <?php echo disp_boolean( $post_type['hierarchical'] ); ?>,
341
  "rewrite" => <?php echo $rewrite; ?>,
342
  "query_var" => <?php echo disp_boolean( $post_type['query_var'] ); ?>,
343
- <?php if ( !empty( $post_type['menu_position'] ) ) { ?>"menu_position" => <?php echo $post_type['menu_position']; ?>,<?php } ?>
344
- <?php if ( !empty( $post_type['menu_icon'] ) ) { ?>"menu_icon" => "<?php echo $post_type['menu_icon']; ?>",<?php } ?>
345
- <?php if ( !empty( $supports ) ) { ?>"supports" => <?php echo $supports; ?>,<?php } ?>
346
- <?php if ( !empty( $taxonomies ) ) { ?>"taxonomies" => <?php echo $taxonomies; ?><?php } ?>
347
  );
348
  register_post_type( "<?php echo $post_type['name']; ?>", $args );
349
  <?php
6
  # Exit if accessed directly
7
  if ( ! defined( 'ABSPATH' ) ) exit;
8
 
 
 
 
 
 
 
 
 
 
 
9
  /**
10
  * Create our settings page output.
11
  *
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>
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() );
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>
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() );
198
  if ( !empty( $label ) ) {
199
  echo '"' . $key . '" => "' . $label . '",' . "\n\t\t";
200
  }
201
+ } ?>);
 
202
 
203
  $args = array(
204
  "labels" => $labels,
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
inc/listings.php ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ # Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) exit;
5
+
6
+ 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
+ *
25
+ * @since 1.1.0
26
+ */
27
+ do_action( 'cptui_before_post_type_listing' );
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;
39
+ foreach ( $post_types as $post_type => $post_type_settings ) {
40
+
41
+ $rowclass = ( $counter % 2 == 0 ) ? '' : 'alternate';
42
+
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;
49
+ }
50
+
51
+ if ( is_string( $settings_value ) ) {
52
+ $strings[ $settings_key ] = $settings_value;
53
+ } else {
54
+ if ( 'supports' === $settings_key ) {
55
+ $supports[ $settings_key ] = $settings_value;
56
+ }
57
+
58
+ if ( 'taxonomies' === $settings_key ) {
59
+ $taxonomies[ $settings_key ] = $settings_value;
60
+
61
+ # In case they are not associated from the post type settings
62
+ if ( empty( $taxonomies['taxonomies'] ) ) {
63
+ $taxonomies['taxonomies'] = get_object_taxonomies( $post_type );
64
+ }
65
+ }
66
+ }
67
+ $archive = get_post_type_archive_link( $post_type );
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>
79
+ <?php foreach ( $strings as $key => $value ) {
80
+ printf( '<strong>%s:</strong> ', $key );
81
+ if ( in_array( $value, array( '1', '0' ) ) ) {
82
+ echo disp_boolean( $value );
83
+ } else {
84
+ echo $value;
85
+ }
86
+ echo '<br/>';
87
+ } ?>
88
+ </td>
89
+ <td>
90
+ <?php foreach ( $supports['supports'] as $support ) {
91
+ echo $support . '<br/>';
92
+ } ?>
93
+ </td>
94
+ <td>
95
+ <?php
96
+ foreach ( $taxonomies['taxonomies'] as $taxonomy ) {
97
+ echo $taxonomy . '<br/>';
98
+ } ?>
99
+ </td>
100
+ <td>
101
+ <?php
102
+ $maybe_empty = array_filter( $post_type_settings['labels'] );
103
+ if ( !empty( $maybe_empty ) ) {
104
+ foreach ( $post_type_settings['labels'] as $key => $value ) {
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
115
+ $counter++;
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
234
+ }
inc/post-types.php CHANGED
@@ -19,21 +19,22 @@ function cptui_post_type_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', 'confirmdata', array( 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ) ) );
 
 
 
 
 
 
24
  }
25
  add_action( 'admin_enqueue_scripts', 'cptui_post_type_enqueue_scripts' );
26
 
27
- /**
28
- * Add our settings page to the menu.
29
- *
30
- * @since 1.0.0
31
- */
32
- function cptui_post_types_admin_menu() {
33
- 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' );
34
- }
35
- add_action( 'admin_menu', 'cptui_post_types_admin_menu' );
36
-
37
  /**
38
  * Create our settings page output.
39
  *
@@ -82,19 +83,28 @@ function cptui_manage_post_types() {
82
  # Will only be set if we're already on the edit screen
83
  if ( !empty( $post_types ) ) { ?>
84
  <form id="cptui_select_post_type" method="post">
85
- <p><?php _e( 'Select a post type to edit. DO NOT EDIT the post type slug unless necessary. Changing that value registers a new post type entry for your install.', 'cpt-plugin' ); ?></p>
86
- <?php
 
87
  cptui_post_types_dropdown( $post_types );
88
  ?>
89
- <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' ) ) ); ?>" />
90
  </form>
91
  <?php
 
 
 
 
 
 
 
 
 
92
  } ?>
93
 
94
  <form method="post">
95
  <table class="form-table cptui-table">
96
  <tr>
97
- <td><!--LEFT SIDE-->
98
  <table>
99
  <?php
100
 
@@ -143,33 +153,62 @@ function cptui_manage_post_types() {
143
  if ( isset( $current['description'] ) ) {
144
  $current['description'] = stripslashes_deep( $current['description'] );
145
  }
 
146
  echo $ui->get_textarea_input( array(
147
  'namearray' => 'cpt_custom_post_type',
148
  'name' => 'description',
149
  'rows' => '4',
150
  'cols' => '40',
151
- 'textvalue' => ( isset( $current['description'] ) ) ? esc_textarea( $current['description'] ) : '',
152
  'labeltext' => __('Description', 'cpt-plugin'),
153
  'helptext' => esc_attr__( 'Custom Post Type Description. Describe what your custom post type is used for.', 'cpt-plugin' )
154
  ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  ?>
156
  </table>
157
  <p class="submit">
158
  <?php wp_nonce_field( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
159
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
160
- <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_edit', __( 'Edit Post Type', 'cpt-plugin' ) ) ); ?>" />
161
  <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' ) ) ); ?>" />
162
  <?php } else { ?>
163
  <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' ) ) ); ?>" />
164
  <?php } ?>
 
 
 
 
 
165
  <input type="hidden" name="cpt_type_status" id="cpt_type_status" value="<?php echo $tab; ?>" />
166
  </p>
167
- </td>
168
- <td>
169
- <p> <?php _e( 'Click headings to reveal available options.', 'cpt-plugin' ); ?></p>
170
 
171
- <div id="cptui_accordion">
172
- <h3 title="<?php esc_attr_e( 'Click to expand', 'cpt-plugin' ); ?>"><?php _e( 'Labels', 'cpt-plugin' ); ?></h3>
 
 
 
 
 
 
 
 
 
 
 
173
  <div>
174
  <table>
175
  <?php
@@ -331,7 +370,7 @@ function cptui_manage_post_types() {
331
  ?>
332
  </table>
333
  </div>
334
- <h3 title="<?php esc_attr_e( 'Click to expand', 'cpt-plugin' ); ?>"><?php _e( 'Settings', 'cpt-plugin' ); ?></h3>
335
  <div>
336
  <table>
337
  <?php
@@ -351,7 +390,7 @@ function cptui_manage_post_types() {
351
  'name' => 'public',
352
  'labeltext' => __( 'Public', 'cpt-plugin' ),
353
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
354
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI.', 'cpt-plugin' ),
355
  'selections' => $select
356
  ) );
357
 
@@ -380,7 +419,7 @@ function cptui_manage_post_types() {
380
  */
381
  echo $ui->get_tr_start() . $ui->get_th_start();
382
  echo $ui->get_label( 'has_archive', __( 'Has Archive', 'cpt-plugin' ) );
383
- echo $ui->get_help( esc_attr__( 'Whether the post type will have a post type archive page.', 'cpt-plugin' ) );
384
  echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'cpt-plugin' ) );
385
  echo $ui->get_th_end() . $ui->get_td_start();
386
 
@@ -407,7 +446,7 @@ function cptui_manage_post_types() {
407
  'namearray' => 'cpt_custom_post_type',
408
  'name' => 'has_archive_string',
409
  'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
410
- 'helptext' => esc_attr__( 'Slug to be used for archive page.', 'cpt-plugin' ),
411
  'helptext_after'=> true,
412
  'wrap' => false
413
  ) );
@@ -429,7 +468,7 @@ function cptui_manage_post_types() {
429
  'name' => 'exclude_from_search',
430
  'labeltext' => __( 'Exclude From Search', 'cpt-plugin' ),
431
  'aftertext' => __( '(default: False)', 'cpt-plugin' ),
432
- 'helptext' => esc_attr__( 'Whether the post type will be searchable', 'cpt-plugin' ),
433
  'selections' => $select
434
  ) );
435
 
@@ -480,7 +519,7 @@ function cptui_manage_post_types() {
480
  'name' => 'rewrite',
481
  'labeltext' => __( 'Rewrite', 'cpt-plugin' ),
482
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
483
- 'helptext' => esc_attr__( 'Triggers the handling of rewrites for this post type', 'cpt-plugin' ),
484
  'selections' => $select
485
  ) );
486
 
@@ -492,8 +531,8 @@ function cptui_manage_post_types() {
492
  'name' => 'rewrite_slug',
493
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
494
  'labeltext' => __( 'Custom Rewrite Slug', 'cpt-plugin' ),
495
- 'aftertext' => __( '(default: post type name)', 'cpt-plugin' ),
496
- 'helptext' => esc_attr__( 'Custom slug to use instead of the default.', 'cpt-plugin' ),
497
  ) );
498
 
499
  /*
@@ -532,7 +571,7 @@ function cptui_manage_post_types() {
532
  'name' => 'query_var',
533
  'labeltext' => __( 'Query Var', 'cpt-plugin' ),
534
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
535
- 'helptext' => esc_attr__( 'Should the permastruct be prepended with the front base.', 'cpt-plugin' ),
536
  'selections' => $select
537
  ) );
538
 
@@ -549,8 +588,6 @@ function cptui_manage_post_types() {
549
  'namearray' => 'cpt_custom_post_type',
550
  'name' => 'menu_position',
551
  'textvalue' => ( isset( $current['menu_position'] ) ) ? esc_attr( $current['menu_position'] ) : '',
552
- 'helptext' => esc_attr__( 'URL or Dashicon value for image to be used as menu icon.', 'cpt-plugin' ),
553
- 'helptext_after'=> true,
554
  'wrap' => false
555
  ) );
556
  echo $ui->get_td_end() . $ui->get_tr_end();
@@ -560,7 +597,7 @@ function cptui_manage_post_types() {
560
  */
561
  echo $ui->get_tr_start() . $ui->get_th_start();
562
  echo $ui->get_label( 'show_in_menu', __( 'Show in Menu', 'cpt-plugin' ) );
563
- echo $ui->get_help( esc_attr__( 'Whether to show the post type in the admin menu and where to show that menu. Note that show_ui must be true.', 'cpt-plugin' ) );
564
  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' ) );
565
  echo $ui->get_th_end() . $ui->get_td_start();
566
 
@@ -587,7 +624,7 @@ function cptui_manage_post_types() {
587
  'namearray' => 'cpt_custom_post_type',
588
  'name' => 'show_in_menu_string',
589
  'textvalue' => ( isset( $current['show_in_menu_string'] ) ) ? esc_attr( $current['show_in_menu_string'] ) : '',
590
- 'helptext' => esc_attr__( 'URL to image to be used as menu icon.', 'cpt-plugin' ),
591
  'helptext_after'=> true,
592
  'wrap' => false
593
  ) );
@@ -783,7 +820,19 @@ function cptui_manage_post_types() {
783
  'default' => false,
784
  'wrap' => false
785
  ) );
 
786
 
 
 
 
 
 
 
 
 
 
 
 
787
  echo $ui->get_td_end() . $ui->get_tr_end();
788
 
789
  echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Built-in Taxonomies', 'cpt-plugin' ) . $ui->get_th_end() . $ui->get_td_start();
@@ -823,15 +872,6 @@ function cptui_manage_post_types() {
823
  echo $ui->get_td_end() . $ui->get_tr_end(); ?>
824
  </table>
825
  </div>
826
- <?php if ( 'new' == $tab ) { ?>
827
- <h3 title="<?php esc_attr_e( 'Click to expand', 'cpt-plugin' ); ?>"><?php _e( 'Starter Notes', 'cpt-plugin' ); ?></h3>
828
- <div><ol>
829
- <?php
830
- 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>' );
831
- 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>' );
832
- 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>' ); ?>
833
- </ol></div>
834
- <?php } ?>
835
  </div>
836
  </td>
837
  </tr>
@@ -858,8 +898,6 @@ function cptui_post_types_dropdown( $post_types = array() ) {
858
  $select = array();
859
  $select['options'] = array();
860
 
861
- $select['options'][] = array( 'attr' => '', 'text' => '--' );
862
-
863
  foreach( $post_types as $type ) {
864
  $select['options'][] = array( 'attr' => $type['name'], 'text' => $type['label'] );
865
  }
@@ -884,7 +922,7 @@ function cptui_post_types_dropdown( $post_types = array() ) {
884
  * @return bool|string $value False on no result, sanitized post type if set.
885
  */
886
  function cptui_get_current_post_type() {
887
- if ( !empty( $_POST ) ) {
888
  if ( isset( $_POST['cptui_selected_post_type']['post_type'] ) ) {
889
  return sanitize_text_field( $_POST['cptui_selected_post_type']['post_type'] );
890
  }
@@ -892,6 +930,14 @@ function cptui_get_current_post_type() {
892
  if ( isset( $_POST['cpt_custom_post_type']['name'] ) ) {
893
  return sanitize_text_field( $_POST['cpt_custom_post_type']['name'] );
894
  }
 
 
 
 
 
 
 
 
895
  }
896
 
897
  return false;
@@ -908,7 +954,15 @@ function cptui_get_current_post_type() {
908
  */
909
  function cptui_delete_post_type( $data = array() ) {
910
 
911
- if ( empty( $data['cpt_custom_post_type']['name'] ) ) {
 
 
 
 
 
 
 
 
912
  return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type to delete', 'cpt-plugin' ) );
913
  }
914
 
@@ -972,6 +1026,12 @@ function cptui_update_post_type( $data = array() ) {
972
  return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type name', 'cpt-plugin' ) );
973
  }
974
 
 
 
 
 
 
 
975
  # clean up $_POST data
976
  foreach( $data as $key => $value ) {
977
  if ( is_string( $value ) ) {
@@ -1012,7 +1072,7 @@ function cptui_update_post_type( $data = array() ) {
1012
 
1013
  $label = str_replace( '"', '', htmlspecialchars_decode( $label ) );
1014
  $label = htmlspecialchars( $label, ENT_QUOTES );
1015
-
1016
  $data['cpt_labels'][ $key ] = stripslashes_deep( $label );
1017
  }
1018
 
@@ -1026,31 +1086,40 @@ function cptui_update_post_type( $data = array() ) {
1026
  $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_post_type']['singular_label'] ) );
1027
  $singular_label = htmlspecialchars( stripslashes( $singular_label ), ENT_QUOTES );
1028
 
 
1029
  $description = stripslashes_deep( $data['cpt_custom_post_type']['description'] );
 
 
 
 
 
 
 
1030
 
1031
  $post_types[ $data['cpt_custom_post_type']['name'] ] = array(
1032
- 'name' => $data['cpt_custom_post_type']['name'],
1033
  'label' => $label,
1034
  'singular_label' => $singular_label,
1035
  'description' => $description,
1036
  'public' => disp_boolean( $data['cpt_custom_post_type']['public'] ),
1037
  'show_ui' => disp_boolean( $data['cpt_custom_post_type']['show_ui'] ),
1038
  'has_archive' => disp_boolean( $data['cpt_custom_post_type']['has_archive'] ),
1039
- 'has_archive_string' => $data['cpt_custom_post_type']['has_archive_string'],
1040
  'exclude_from_search' => disp_boolean( $data['cpt_custom_post_type']['exclude_from_search'] ),
1041
- 'capability_type' => $data['cpt_custom_post_type']['capability_type'],
1042
  'hierarchical' => disp_boolean( $data['cpt_custom_post_type']['hierarchical'] ),
1043
  'rewrite' => disp_boolean( $data['cpt_custom_post_type']['rewrite'] ),
1044
- 'rewrite_slug' => $data['cpt_custom_post_type']['rewrite_slug'],
1045
  'rewrite_withfront' => disp_boolean( $data['cpt_custom_post_type']['rewrite_withfront'] ),
1046
  'query_var' => disp_boolean( $data['cpt_custom_post_type']['query_var'] ),
1047
- 'menu_position' => $data['cpt_custom_post_type']['menu_position'],
1048
  'show_in_menu' => disp_boolean( $data['cpt_custom_post_type']['show_in_menu'] ),
1049
- 'show_in_menu_string' => $data['cpt_custom_post_type']['show_in_menu_string'],
1050
- 'menu_icon' => $data['cpt_custom_post_type']['menu_icon'],
1051
  'supports' => $data['cpt_supports'],
1052
  'taxonomies' => $data['cpt_addon_taxes'],
1053
- 'labels' => $data['cpt_labels']
 
1054
  );
1055
 
1056
  $success = update_option( 'cptui_post_types', $post_types );
@@ -1103,3 +1172,25 @@ function cptui_reserved_post_types() {
1103
  'theme'
1104
  ) );
1105
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  return;
20
  }
21
 
22
+ /*$post_types = get_option( 'cptui_post_types' );
23
+ foreach( $post_types as $type ) {
24
+ $types[] = $type['name'];
25
+ }*/
26
+
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
  }
36
  add_action( 'admin_enqueue_scripts', 'cptui_post_type_enqueue_scripts' );
37
 
 
 
 
 
 
 
 
 
 
 
38
  /**
39
  * Create our settings page output.
40
  *
83
  # Will only be set if we're already on the edit screen
84
  if ( !empty( $post_types ) ) { ?>
85
  <form id="cptui_select_post_type" method="post">
86
+ <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>
87
+ <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>
88
+ <?php _e( 'Select: ', 'cpt-plugin' );
89
  cptui_post_types_dropdown( $post_types );
90
  ?>
 
91
  </form>
92
  <?php
93
+
94
+ /**
95
+ * Fires below the post type select input.
96
+ *
97
+ * @since 1.1.0
98
+ *
99
+ * @param string $value Current post type selected.
100
+ */
101
+ do_action( 'cptui_below_post_type_select', $current['name'] );
102
  } ?>
103
 
104
  <form method="post">
105
  <table class="form-table cptui-table">
106
  <tr>
107
+ <td class="outter">
108
  <table>
109
  <?php
110
 
153
  if ( isset( $current['description'] ) ) {
154
  $current['description'] = stripslashes_deep( $current['description'] );
155
  }
156
+
157
  echo $ui->get_textarea_input( array(
158
  'namearray' => 'cpt_custom_post_type',
159
  'name' => 'description',
160
  'rows' => '4',
161
  'cols' => '40',
162
+ 'textvalue' => ( isset( $current['description'] ) ) ? esc_textarea( $current['description'] ) : '',
163
  'labeltext' => __('Description', 'cpt-plugin'),
164
  'helptext' => esc_attr__( 'Custom Post Type Description. Describe what your custom post type is used for.', 'cpt-plugin' )
165
  ) );
166
+
167
+ /*
168
+ * Migrate posts
169
+ */
170
+ if ( 'edit' == $tab ) {
171
+ echo $ui->get_check_input( array(
172
+ 'checkvalue' => 'update_post_types',
173
+ 'checked' => 'false',
174
+ 'name' => 'update_post_types',
175
+ 'namearray' => 'update_post_types',
176
+ 'labeltext' => __( 'Migrate posts to newly renamed post type?', 'cpt-plugin' ),
177
+ 'helptext' => esc_attr__( 'Check this to migrate posts if and when renaming your post type.', 'cpt-plugin' ),
178
+ 'default' => false
179
+ ) );
180
+ }
181
  ?>
182
  </table>
183
  <p class="submit">
184
  <?php wp_nonce_field( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
185
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
186
+ <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' ) ) ); ?>" />
187
  <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' ) ) ); ?>" />
188
  <?php } else { ?>
189
  <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' ) ) ); ?>" />
190
  <?php } ?>
191
+
192
+ <?php if ( !empty( $current ) ) { ?>
193
+ <input type="hidden" name="cpt_original" id="cpt_original" value="<?php echo $current['name']; ?>" />
194
+ <?php } ?>
195
+
196
  <input type="hidden" name="cpt_type_status" id="cpt_type_status" value="<?php echo $tab; ?>" />
197
  </p>
 
 
 
198
 
199
+ <?php if ( 'new' == $tab ) { ?>
200
+ <h3><?php _e( 'Starter Notes', 'cpt-plugin' ); ?></h3>
201
+ <div><ol>
202
+ <?php
203
+ 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>' );
204
+ 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>' );
205
+ 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>' ); ?>
206
+ </ol></div>
207
+ <?php } ?>
208
+ </td>
209
+ <td class="outter">
210
+ <div>
211
+ <h3><?php _e( 'Labels', 'cpt-plugin' ); ?></h3>
212
  <div>
213
  <table>
214
  <?php
370
  ?>
371
  </table>
372
  </div>
373
+ <h3><?php _e( 'Settings', 'cpt-plugin' ); ?></h3>
374
  <div>
375
  <table>
376
  <?php
390
  'name' => 'public',
391
  'labeltext' => __( 'Public', 'cpt-plugin' ),
392
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
393
+ 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI and is publicly queryable.', 'cpt-plugin' ),
394
  'selections' => $select
395
  ) );
396
 
419
  */
420
  echo $ui->get_tr_start() . $ui->get_th_start();
421
  echo $ui->get_label( 'has_archive', __( 'Has Archive', 'cpt-plugin' ) );
422
+ echo $ui->get_help( esc_attr__( 'Whether the post type will have a post type archive URL.', 'cpt-plugin' ) );
423
  echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'cpt-plugin' ) );
424
  echo $ui->get_th_end() . $ui->get_td_start();
425
 
446
  'namearray' => 'cpt_custom_post_type',
447
  'name' => 'has_archive_string',
448
  'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
449
+ 'helptext' => esc_attr__( 'Slug to be used for archive URL.', 'cpt-plugin' ),
450
  'helptext_after'=> true,
451
  'wrap' => false
452
  ) );
468
  'name' => 'exclude_from_search',
469
  'labeltext' => __( 'Exclude From Search', 'cpt-plugin' ),
470
  'aftertext' => __( '(default: False)', 'cpt-plugin' ),
471
+ 'helptext' => esc_attr__( 'Whether to exclude posts with this post type from front end search results.', 'cpt-plugin' ),
472
  'selections' => $select
473
  ) );
474
 
519
  'name' => 'rewrite',
520
  'labeltext' => __( 'Rewrite', 'cpt-plugin' ),
521
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
522
+ 'helptext' => esc_attr__( 'Whether or not WordPress should use rewrites for this post type', 'cpt-plugin' ),
523
  'selections' => $select
524
  ) );
525
 
531
  'name' => 'rewrite_slug',
532
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
533
  'labeltext' => __( 'Custom Rewrite Slug', 'cpt-plugin' ),
534
+ 'aftertext' => __( '(default: post type slug)', 'cpt-plugin' ),
535
+ 'helptext' => esc_attr__( 'Custom post type slug to use instead of the default.', 'cpt-plugin' ),
536
  ) );
537
 
538
  /*
571
  'name' => 'query_var',
572
  'labeltext' => __( 'Query Var', 'cpt-plugin' ),
573
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
574
+ 'helptext' => esc_attr__( 'Sets the query_var key for this post type.', 'cpt-plugin' ),
575
  'selections' => $select
576
  ) );
577
 
588
  'namearray' => 'cpt_custom_post_type',
589
  'name' => 'menu_position',
590
  'textvalue' => ( isset( $current['menu_position'] ) ) ? esc_attr( $current['menu_position'] ) : '',
 
 
591
  'wrap' => false
592
  ) );
593
  echo $ui->get_td_end() . $ui->get_tr_end();
597
  */
598
  echo $ui->get_tr_start() . $ui->get_th_start();
599
  echo $ui->get_label( 'show_in_menu', __( 'Show in Menu', 'cpt-plugin' ) );
600
+ echo $ui->get_help( esc_attr__( 'Whether to show the post type in the admin menu and where to show that menu.', 'cpt-plugin' ) );
601
  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' ) );
602
  echo $ui->get_th_end() . $ui->get_td_start();
603
 
624
  'namearray' => 'cpt_custom_post_type',
625
  'name' => 'show_in_menu_string',
626
  'textvalue' => ( isset( $current['show_in_menu_string'] ) ) ? esc_attr( $current['show_in_menu_string'] ) : '',
627
+ 'helptext' => esc_attr__( 'Top-level page file name to make post type a sub-menu of.', 'cpt-plugin' ),
628
  'helptext_after'=> true,
629
  'wrap' => false
630
  ) );
820
  'default' => false,
821
  'wrap' => false
822
  ) );
823
+ echo $ui->get_td_end() . $ui->get_tr_end();
824
 
825
+ echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Custom "Supports"', 'cpt-plugin' );
826
+ echo $ui->get_p( __( 'Use this input to register custom "supports" values, separated by commas.', 'cpt-plugin' ) );
827
+ echo $ui->get_th_end() . $ui->get_td_start();
828
+ echo $ui->get_text_input( array(
829
+ 'namearray' => 'cpt_custom_post_type',
830
+ 'name' => 'custom_supports',
831
+ 'textvalue' => ( isset( $current['custom_supports'] ) ) ? esc_attr( $current['custom_supports'] ) : '',
832
+ 'helptext' => esc_attr__( 'Provide custom support slugs here.', 'cpt-plugin' ),
833
+ 'helptext_after'=> true,
834
+ 'wrap' => false
835
+ ) );
836
  echo $ui->get_td_end() . $ui->get_tr_end();
837
 
838
  echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Built-in Taxonomies', 'cpt-plugin' ) . $ui->get_th_end() . $ui->get_td_start();
872
  echo $ui->get_td_end() . $ui->get_tr_end(); ?>
873
  </table>
874
  </div>
 
 
 
 
 
 
 
 
 
875
  </div>
876
  </td>
877
  </tr>
898
  $select = array();
899
  $select['options'] = array();
900
 
 
 
901
  foreach( $post_types as $type ) {
902
  $select['options'][] = array( 'attr' => $type['name'], 'text' => $type['label'] );
903
  }
922
  * @return bool|string $value False on no result, sanitized post type if set.
923
  */
924
  function cptui_get_current_post_type() {
925
+ if ( ! empty( $_POST ) ) {
926
  if ( isset( $_POST['cptui_selected_post_type']['post_type'] ) ) {
927
  return sanitize_text_field( $_POST['cptui_selected_post_type']['post_type'] );
928
  }
930
  if ( isset( $_POST['cpt_custom_post_type']['name'] ) ) {
931
  return sanitize_text_field( $_POST['cpt_custom_post_type']['name'] );
932
  }
933
+ } else if ( !empty( $_GET ) && isset( $_GET['cptui_post_type'] ) ) {
934
+ return sanitize_text_field( $_GET['cptui_post_type'] );
935
+ } else {
936
+ $post_types = get_option( 'cptui_post_types' );
937
+ if ( !empty( $post_types ) ) {
938
+ # Will return the first array key
939
+ return key( $post_types );
940
+ }
941
  }
942
 
943
  return false;
954
  */
955
  function cptui_delete_post_type( $data = array() ) {
956
 
957
+ if ( is_string( $data ) && post_type_exists( $data ) ) {
958
+ $data = array(
959
+ 'cpt_custom_post_type' => array(
960
+ 'name' => $data
961
+ )
962
+ );
963
+ }
964
+
965
+ if ( empty( $data['cpt_custom_post_type']['name'] ) || ! post_type_exists( $data['cpt_custom_post_type']['name'] ) ) {
966
  return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type to delete', 'cpt-plugin' ) );
967
  }
968
 
1026
  return cptui_admin_notices( 'error', '', false, __( 'Please provide a post type name', 'cpt-plugin' ) );
1027
  }
1028
 
1029
+ if ( !empty( $data['cpt_original'] ) && $data['cpt_original'] != $data['cpt_custom_post_type']['name'] ) {
1030
+ if ( !empty( $data['update_post_types'] ) ) {
1031
+ cptui_convert_post_type_posts( $data['cpt_original'], $data['cpt_custom_post_type']['name'] );
1032
+ }
1033
+ }
1034
+
1035
  # clean up $_POST data
1036
  foreach( $data as $key => $value ) {
1037
  if ( is_string( $value ) ) {
1072
 
1073
  $label = str_replace( '"', '', htmlspecialchars_decode( $label ) );
1074
  $label = htmlspecialchars( $label, ENT_QUOTES );
1075
+ $label = trim( $label );
1076
  $data['cpt_labels'][ $key ] = stripslashes_deep( $label );
1077
  }
1078
 
1086
  $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_post_type']['singular_label'] ) );
1087
  $singular_label = htmlspecialchars( stripslashes( $singular_label ), ENT_QUOTES );
1088
 
1089
+ $name = trim( $data['cpt_custom_post_type']['name'] );
1090
  $description = stripslashes_deep( $data['cpt_custom_post_type']['description'] );
1091
+ $has_archive_string = trim( $data['cpt_custom_post_type']['has_archive_string'] );
1092
+ $capability_type = trim( $data['cpt_custom_post_type']['capability_type'] );
1093
+ $rewrite_slug = trim( $data['cpt_custom_post_type']['rewrite_slug'] );
1094
+ $menu_position = trim( $data['cpt_custom_post_type']['menu_position'] );
1095
+ $show_in_menu_string = trim( $data['cpt_custom_post_type']['show_in_menu_string'] );
1096
+ $menu_icon = trim( $data['cpt_custom_post_type']['menu_icon'] );
1097
+ $custom_supports = trim( $data['cpt_custom_post_type']['custom_supports'] );
1098
 
1099
  $post_types[ $data['cpt_custom_post_type']['name'] ] = array(
1100
+ 'name' => $name,
1101
  'label' => $label,
1102
  'singular_label' => $singular_label,
1103
  'description' => $description,
1104
  'public' => disp_boolean( $data['cpt_custom_post_type']['public'] ),
1105
  'show_ui' => disp_boolean( $data['cpt_custom_post_type']['show_ui'] ),
1106
  'has_archive' => disp_boolean( $data['cpt_custom_post_type']['has_archive'] ),
1107
+ 'has_archive_string' => $has_archive_string,
1108
  'exclude_from_search' => disp_boolean( $data['cpt_custom_post_type']['exclude_from_search'] ),
1109
+ 'capability_type' => $capability_type,
1110
  'hierarchical' => disp_boolean( $data['cpt_custom_post_type']['hierarchical'] ),
1111
  'rewrite' => disp_boolean( $data['cpt_custom_post_type']['rewrite'] ),
1112
+ 'rewrite_slug' => $rewrite_slug,
1113
  'rewrite_withfront' => disp_boolean( $data['cpt_custom_post_type']['rewrite_withfront'] ),
1114
  'query_var' => disp_boolean( $data['cpt_custom_post_type']['query_var'] ),
1115
+ 'menu_position' => $menu_position,
1116
  'show_in_menu' => disp_boolean( $data['cpt_custom_post_type']['show_in_menu'] ),
1117
+ 'show_in_menu_string' => $show_in_menu_string,
1118
+ 'menu_icon' => $menu_icon,
1119
  'supports' => $data['cpt_supports'],
1120
  'taxonomies' => $data['cpt_addon_taxes'],
1121
+ 'labels' => $data['cpt_labels'],
1122
+ 'custom_supports' => $custom_supports
1123
  );
1124
 
1125
  $success = update_option( 'cptui_post_types', $post_types );
1172
  'theme'
1173
  ) );
1174
  }
1175
+
1176
+ /**
1177
+ * Converts post type between original and newly renamed.
1178
+ *
1179
+ * @since 1.1.0
1180
+ *
1181
+ * @param string $original_slug Original post type slug.
1182
+ * @param string $new_slug New post type slug.
1183
+ */
1184
+ function cptui_convert_post_type_posts( $original_slug = '', $new_slug = '' ) {
1185
+ $args = array(
1186
+ 'posts_per_page' => -1,
1187
+ 'post_type' => $original_slug
1188
+ );
1189
+ $convert = new WP_Query( $args );
1190
+
1191
+ if ( $convert->have_posts() ) : while ( $convert->have_posts() ) : $convert->the_post();
1192
+ set_post_type( get_the_ID(), $new_slug );
1193
+ endwhile; endif;
1194
+
1195
+ cptui_delete_post_type( $original_slug );
1196
+ }
inc/support.php CHANGED
@@ -21,16 +21,6 @@ function cptui_support_enqueue_scripts() {
21
  }
22
  add_action( 'admin_enqueue_scripts', 'cptui_support_enqueue_scripts' );
23
 
24
- /**
25
- * Add our settings page to the menu.
26
- *
27
- * @since 1.0.0
28
- */
29
- function cptui_support_admin_menu() {
30
- add_submenu_page( 'cptui_main_menu', __( 'Help/Support', 'cpt-plugin' ), __( 'Help/Support', 'cpt-plugin' ), 'manage_options', 'cptui_support', 'cptui_support' );
31
- }
32
- add_action( 'admin_menu', 'cptui_support_admin_menu' );
33
-
34
  /**
35
  * Create our settings page output.
36
  *
@@ -56,7 +46,7 @@ function cptui_support() {
56
 
57
  <table id="support" class="form-table cptui-table">
58
  <tr>
59
- <td>
60
  <h2><?php _e( 'General', 'cpt-plugin' ); ?></h2>
61
  <ol id="questions_general">
62
  <li>
@@ -75,7 +65,7 @@ function cptui_support() {
75
  </li>
76
  </ol>
77
  </td>
78
- <td>
79
  <h2><?php _e( 'Front-end Display', 'cpt-plugin' ); ?></h2>
80
  <ol id="questions_front">
81
  <li>
@@ -103,7 +93,7 @@ function cptui_support() {
103
  </td>
104
  </tr>
105
  <tr>
106
- <td>
107
  <h2><?php _e( 'Advanced', 'cpt-plugin' ); ?></h2>
108
  <ol id="questions_advanced">
109
  <li>
@@ -132,6 +122,11 @@ function cptui_support() {
132
  '</a>'
133
  ); ?></div>
134
  </li>
 
 
 
 
 
135
  <li>
136
  <span class="question"><?php _e( 'How do I filter the "enter title here" text in the post editor screen?', 'cpt-plugin' ); ?></span>
137
  <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>
@@ -146,7 +141,7 @@ add_filter( 'enter_title_here', 'my_custom_title_text' );
146
  </li>
147
  </ol>
148
  </td>
149
- <td>
150
  &nbsp;
151
  <?php
152
 
21
  }
22
  add_action( 'admin_enqueue_scripts', 'cptui_support_enqueue_scripts' );
23
 
 
 
 
 
 
 
 
 
 
 
24
  /**
25
  * Create our settings page output.
26
  *
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>
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>
93
  </td>
94
  </tr>
95
  <tr>
96
+ <td class="outter">
97
  <h2><?php _e( 'Advanced', 'cpt-plugin' ); ?></h2>
98
  <ol id="questions_advanced">
99
  <li>
122
  '</a>'
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>
141
  </li>
142
  </ol>
143
  </td>
144
+ <td class="outter">
145
  &nbsp;
146
  <?php
147
 
inc/taxonomies.php CHANGED
@@ -20,20 +20,15 @@ function cptui_taxonomies_enqueue_scripts() {
20
  }
21
 
22
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
23
- wp_localize_script( 'cptui', 'confirmdata', array( 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ) ) );
 
 
 
 
 
24
  }
25
  add_action( 'admin_enqueue_scripts', 'cptui_taxonomies_enqueue_scripts' );
26
 
27
- /**
28
- * Add our settings page to the menu.
29
- *
30
- * @since 1.0.0
31
- */
32
- function cptui_taxonomies_admin_menu() {
33
- add_submenu_page( 'cptui_main_menu', __( 'Add/Edit Taxonomies', 'cpt-plugin' ), __( 'Add/Edit Taxonomies', 'cpt-plugin' ), 'manage_options', 'cptui_manage_taxonomies', 'cptui_manage_taxonomies' );
34
- }
35
- add_action( 'admin_menu', 'cptui_taxonomies_admin_menu' );
36
-
37
  /**
38
  * Create our settings page output.
39
  *
@@ -84,19 +79,28 @@ function cptui_manage_taxonomies() {
84
  # Will only be set if we're already on the edit screen
85
  if ( !empty( $taxonomies ) ) { ?>
86
  <form id="cptui_select_taxonomy" method="post">
87
- <p><?php _e( 'Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. Changing that value registers a new taxonomy entry for your install.', 'cpt-plugin' ); ?></p>
88
  <?php
 
89
  cptui_taxonomies_dropdown( $taxonomies );
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
  } ?>
95
 
96
  <form method="post">
97
  <table class="form-table cptui-table">
98
  <tr>
99
- <td><!--LEFT SIDE-->
100
  <table>
101
  <?php
102
 
@@ -107,7 +111,7 @@ function cptui_manage_taxonomies() {
107
  'maxlength' => '32',
108
  'onblur' => 'this.value=this.value.toLowerCase()',
109
  'labeltext' => __( 'Taxonomy Slug', 'cpt-plugin' ),
110
- 'aftertext' => __( '(e.g. actors)', 'cpt-plugin' ),
111
  'helptext' => esc_attr__( 'The taxonomy name. Used to retrieve custom taxonomy content. Should be short and unique', 'cpt-plugin'),
112
  'required' => true,
113
  ) );
@@ -169,19 +173,27 @@ function cptui_manage_taxonomies() {
169
  <p class="submit">
170
  <?php wp_nonce_field( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
171
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
172
- <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_edit', __( 'Edit Taxonomy', 'cpt-plugin' ) ) ); ?>" />
173
  <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' ) ); ?>" />
174
  <?php } else { ?>
175
  <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_add', __( 'Add Taxonomy', 'cpt-plugin' ) ) ); ?>" />
176
  <?php } ?>
177
  <input type="hidden" name="cpt_tax_status" id="cpt_tax_status" value="<?php echo $tab; ?>" />
178
  </p>
179
- </td>
180
- <td>
181
- <p><?php _e( 'Click headings to reveal available options.', 'cpt-plugin' ); ?></p>
182
 
183
- <div id="cptui_accordion">
184
- <h3 title="<?php esc_attr_e( 'Click to expand', 'cpt-plugin' ); ?>"><?php _e( 'Labels', 'cpt-plugin' ); ?></h3>
 
 
 
 
 
 
 
 
 
 
 
185
  <div>
186
  <table>
187
  <?php
@@ -323,7 +335,7 @@ function cptui_manage_taxonomies() {
323
  ?>
324
  </table>
325
  </div>
326
- <h3 title="<?php esc_attr_e( 'Click to expand', 'cpt-plugin' ); ?>"><?php _e( 'Settings', 'cpt-plugin' ); ?></h3>
327
  <div>
328
  <table>
329
  <?php
@@ -357,7 +369,7 @@ function cptui_manage_taxonomies() {
357
  'name' => 'show_ui',
358
  'labeltext' => __( 'Show UI', 'cpt-plugin' ),
359
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
360
- 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this custom taxonomy', 'cpt-plugin' ),
361
  'selections' => $select
362
  ) );
363
 
@@ -374,6 +386,7 @@ function cptui_manage_taxonomies() {
374
  'name' => 'query_var',
375
  'labeltext' => __( 'Query Var', 'cpt-plugin' ),
376
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
 
377
  'selections' => $select
378
  ) );
379
 
@@ -383,7 +396,7 @@ function cptui_manage_taxonomies() {
383
  'textvalue' => ( isset( $current['query_var_slug'] ) ) ? esc_attr( $current['query_var_slug'] ) : '',
384
  'aftertext' => __( '(default: none). Query Var needs to be true to use.', 'cpt-plugin' ),
385
  'labeltext' => __( 'Custom Query Var String', 'cpt-plugin' ),
386
- 'helptext' => esc_attr__( 'Custom Query Var Slug', 'cpt-plugin'),
387
  ) );
388
 
389
  $select = array(
@@ -399,7 +412,7 @@ function cptui_manage_taxonomies() {
399
  'name' => 'rewrite',
400
  'labeltext' => __( 'Rewrite', 'cpt-plugin' ),
401
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
402
- 'helptext' => esc_attr__( 'Triggers the handling of rewrites for this taxonomy', 'cpt-plugin' ),
403
  'selections' => $select
404
  ) );
405
 
@@ -409,7 +422,7 @@ function cptui_manage_taxonomies() {
409
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
410
  'aftertext' => __( '(default: taxonomy name)', 'cpt-plugin' ),
411
  'labeltext' => __( 'Custom Rewrite Slug', 'cpt-plugin' ),
412
- 'helptext' => esc_attr__( 'Custom Taxonomy Rewrite Slug', 'cpt-plugin'),
413
  ) );
414
 
415
  $select = array(
@@ -465,16 +478,6 @@ function cptui_manage_taxonomies() {
465
  ?>
466
  </table>
467
  </div>
468
-
469
- <?php if ( 'new' == $tab ) { ?>
470
- <h3 title="<?php esc_attr_e( 'Click to expand', 'cpt-plugin' ); ?>"><?php _e( 'Starter Notes', 'cpt-plugin' ); ?></h3>
471
- <div><ol>
472
- <?php
473
- 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>' );
474
- 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>' ) ;
475
- 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>' ); ?>
476
- </ol></div>
477
- <?php } ?>
478
  </div>
479
  </td>
480
  </tr>
@@ -501,8 +504,6 @@ function cptui_taxonomies_dropdown( $taxonomies = array() ) {
501
  $select = array();
502
  $select['options'] = array();
503
 
504
- $select['options'][] = array( 'attr' => '', 'text' => '--' );
505
-
506
  foreach( $taxonomies as $tax ) {
507
  $select['options'][] = array( 'attr' => $tax['name'], 'text' => $tax['label'] );
508
  }
@@ -534,6 +535,14 @@ function cptui_get_current_taxonomy() {
534
  if ( isset( $_POST['cpt_custom_tax']['name'] ) ) {
535
  return sanitize_text_field( $_POST['cpt_custom_tax']['name'] );
536
  }
 
 
 
 
 
 
 
 
537
  }
538
 
539
  return false;
@@ -647,26 +656,29 @@ function cptui_update_taxonomy( $data = array() ) {
647
  }
648
  $label = str_replace( '"', '', htmlspecialchars_decode( $label ) );
649
  $label = htmlspecialchars( $label, ENT_QUOTES );
650
-
651
  $data['cpt_tax_labels'][ $key ] = stripslashes_deep( $label );
652
  }
653
 
654
  $label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['label'] ) );
655
  $label = htmlspecialchars( stripslashes( $label ), ENT_QUOTES );
656
 
 
657
  $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['singular_label'] ) );
658
  $singular_label = htmlspecialchars( stripslashes( $singular_label ) );
 
 
659
 
660
  $taxonomies[ $data['cpt_custom_tax']['name'] ] = array(
661
- 'name' => $data['cpt_custom_tax']['name'],
662
  'label' => $label,
663
  'singular_label' => $singular_label,
664
  'hierarchical' => disp_boolean( $data['cpt_custom_tax']['hierarchical'] ),
665
  'show_ui' => disp_boolean( $data['cpt_custom_tax']['show_ui'] ),
666
  'query_var' => disp_boolean( $data['cpt_custom_tax']['query_var'] ),
667
- 'query_var_slug' => $data['cpt_custom_tax']['query_var_slug'],
668
  'rewrite' => disp_boolean( $data['cpt_custom_tax']['rewrite'] ),
669
- 'rewrite_slug' => $data['cpt_custom_tax']['rewrite_slug'],
670
  'rewrite_withfront' => $data['cpt_custom_tax']['rewrite_withfront'],
671
  'rewrite_hierarchical' => $data['cpt_custom_tax']['rewrite_hierarchical'],
672
  'show_admin_column' => disp_boolean( $data['cpt_custom_tax']['show_admin_column'] ),
@@ -696,3 +708,10 @@ function cptui_update_taxonomy( $data = array() ) {
696
 
697
  return cptui_admin_notices( 'update', $data['cpt_custom_tax']['name'], true );
698
  }
 
 
 
 
 
 
 
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
  }
30
  add_action( 'admin_enqueue_scripts', 'cptui_taxonomies_enqueue_scripts' );
31
 
 
 
 
 
 
 
 
 
 
 
32
  /**
33
  * Create our settings page output.
34
  *
79
  # Will only be set if we're already on the edit screen
80
  if ( !empty( $taxonomies ) ) { ?>
81
  <form id="cptui_select_taxonomy" method="post">
82
+ <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>
83
  <?php
84
+ _e( 'Select: ', 'cpt-plugin' );
85
  cptui_taxonomies_dropdown( $taxonomies );
86
  ?>
 
87
  </form>
88
  <?php
89
+
90
+ /**
91
+ * Fires below the taxonomy select input.
92
+ *
93
+ * @since 1.1.0
94
+ *
95
+ * @param string $value Current taxonomy selected.
96
+ */
97
+ do_action( 'cptui_below_taxonomy_select', $current['name'] );
98
  } ?>
99
 
100
  <form method="post">
101
  <table class="form-table cptui-table">
102
  <tr>
103
+ <td class="outter">
104
  <table>
105
  <?php
106
 
111
  'maxlength' => '32',
112
  'onblur' => 'this.value=this.value.toLowerCase()',
113
  'labeltext' => __( 'Taxonomy Slug', 'cpt-plugin' ),
114
+ 'aftertext' => __( '(e.g. actor)', 'cpt-plugin' ),
115
  'helptext' => esc_attr__( 'The taxonomy name. Used to retrieve custom taxonomy content. Should be short and unique', 'cpt-plugin'),
116
  'required' => true,
117
  ) );
173
  <p class="submit">
174
  <?php wp_nonce_field( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
175
  if ( !empty( $_GET ) && !empty( $_GET['action'] ) && 'edit' == $_GET['action'] ) { ?>
176
+ <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_edit', __( 'Save Taxonomy', 'cpt-plugin' ) ) ); ?>" />
177
  <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' ) ); ?>" />
178
  <?php } else { ?>
179
  <input type="submit" class="button-primary" name="cpt_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_add', __( 'Add Taxonomy', 'cpt-plugin' ) ) ); ?>" />
180
  <?php } ?>
181
  <input type="hidden" name="cpt_tax_status" id="cpt_tax_status" value="<?php echo $tab; ?>" />
182
  </p>
 
 
 
183
 
184
+ <?php if ( 'new' == $tab ) { ?>
185
+ <h3><?php _e( 'Starter Notes', 'cpt-plugin' ); ?></h3>
186
+ <div><ol>
187
+ <?php
188
+ 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>' );
189
+ 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>' ) ;
190
+ 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>' ); ?>
191
+ </ol></div>
192
+ <?php } ?>
193
+ </td>
194
+ <td class="outter">
195
+ <div>
196
+ <h3><?php _e( 'Labels', 'cpt-plugin' ); ?></h3>
197
  <div>
198
  <table>
199
  <?php
335
  ?>
336
  </table>
337
  </div>
338
+ <h3><?php _e( 'Settings', 'cpt-plugin' ); ?></h3>
339
  <div>
340
  <table>
341
  <?php
369
  'name' => 'show_ui',
370
  'labeltext' => __( 'Show UI', 'cpt-plugin' ),
371
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
372
+ 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this custom taxonomy.', 'cpt-plugin' ),
373
  'selections' => $select
374
  ) );
375
 
386
  'name' => 'query_var',
387
  'labeltext' => __( 'Query Var', 'cpt-plugin' ),
388
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
389
+ 'helptext' => esc_attr__( 'Sets the query_var key for this taxonomy.', 'cpt-plugin' ),
390
  'selections' => $select
391
  ) );
392
 
396
  'textvalue' => ( isset( $current['query_var_slug'] ) ) ? esc_attr( $current['query_var_slug'] ) : '',
397
  'aftertext' => __( '(default: none). Query Var needs to be true to use.', 'cpt-plugin' ),
398
  'labeltext' => __( 'Custom Query Var String', 'cpt-plugin' ),
399
+ 'helptext' => esc_attr__( 'Sets a custom query_var slug for this taxonomy.', 'cpt-plugin'),
400
  ) );
401
 
402
  $select = array(
412
  'name' => 'rewrite',
413
  'labeltext' => __( 'Rewrite', 'cpt-plugin' ),
414
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
415
+ 'helptext' => esc_attr__( 'Whether or not WordPress should use rewrites for this taxonomy.', 'cpt-plugin' ),
416
  'selections' => $select
417
  ) );
418
 
422
  'textvalue' => ( isset( $current['rewrite_slug'] ) ) ? esc_attr( $current['rewrite_slug'] ) : '',
423
  'aftertext' => __( '(default: taxonomy name)', 'cpt-plugin' ),
424
  'labeltext' => __( 'Custom Rewrite Slug', 'cpt-plugin' ),
425
+ 'helptext' => esc_attr__( 'Custom taxonomy rewrite slug.', 'cpt-plugin'),
426
  ) );
427
 
428
  $select = array(
478
  ?>
479
  </table>
480
  </div>
 
 
 
 
 
 
 
 
 
 
481
  </div>
482
  </td>
483
  </tr>
504
  $select = array();
505
  $select['options'] = array();
506
 
 
 
507
  foreach( $taxonomies as $tax ) {
508
  $select['options'][] = array( 'attr' => $tax['name'], 'text' => $tax['label'] );
509
  }
535
  if ( isset( $_POST['cpt_custom_tax']['name'] ) ) {
536
  return sanitize_text_field( $_POST['cpt_custom_tax']['name'] );
537
  }
538
+ } else if ( !empty( $_GET ) && isset( $_GET['cptui_taxonomy'] ) ) {
539
+ return sanitize_text_field( $_GET['cptui_taxonomy'] );
540
+ } else {
541
+ $taxonomies = get_option( 'cptui_taxonomies' );
542
+ if ( !empty( $taxonomies ) ) {
543
+ # Will return the first array key
544
+ return key( $taxonomies );
545
+ }
546
  }
547
 
548
  return false;
656
  }
657
  $label = str_replace( '"', '', htmlspecialchars_decode( $label ) );
658
  $label = htmlspecialchars( $label, ENT_QUOTES );
659
+ $label = trim( $label );
660
  $data['cpt_tax_labels'][ $key ] = stripslashes_deep( $label );
661
  }
662
 
663
  $label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['label'] ) );
664
  $label = htmlspecialchars( stripslashes( $label ), ENT_QUOTES );
665
 
666
+ $name = trim( $data['cpt_custom_tax']['name'] );
667
  $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['singular_label'] ) );
668
  $singular_label = htmlspecialchars( stripslashes( $singular_label ) );
669
+ $query_var_slug = trim( $data['cpt_custom_tax']['query_var_slug'] );
670
+ $rewrite_slug = trim( $data['cpt_custom_tax']['rewrite_slug'] );
671
 
672
  $taxonomies[ $data['cpt_custom_tax']['name'] ] = array(
673
+ 'name' => $name,
674
  'label' => $label,
675
  'singular_label' => $singular_label,
676
  'hierarchical' => disp_boolean( $data['cpt_custom_tax']['hierarchical'] ),
677
  'show_ui' => disp_boolean( $data['cpt_custom_tax']['show_ui'] ),
678
  'query_var' => disp_boolean( $data['cpt_custom_tax']['query_var'] ),
679
+ 'query_var_slug' => $query_var_slug,
680
  'rewrite' => disp_boolean( $data['cpt_custom_tax']['rewrite'] ),
681
+ 'rewrite_slug' => $rewrite_slug,
682
  'rewrite_withfront' => $data['cpt_custom_tax']['rewrite_withfront'],
683
  'rewrite_hierarchical' => $data['cpt_custom_tax']['rewrite_hierarchical'],
684
  'show_admin_column' => disp_boolean( $data['cpt_custom_tax']['show_admin_column'] ),
708
 
709
  return cptui_admin_notices( 'update', $data['cpt_custom_tax']['name'], true );
710
  }
711
+
712
+ /**
713
+ * Convert taxonomies.
714
+ * @param string $original_slug
715
+ * @param string $new_slug
716
+ */
717
+ function cptui_convert_taxonomy_terms( $original_slug = '', $new_slug = '' ) {}
js/cptui.js CHANGED
@@ -1,15 +1,22 @@
1
  (function($) {
2
- //Create our accordions
3
- $( "#cptui_accordion" ).accordion({ collapsible: true, heightStyle: 'fill', active: 2 });
 
 
 
 
 
 
4
 
5
  //confirm our deletions
6
  $( '#cpt_submit_delete' ).on( 'click', function() {
7
- if( confirm( confirmdata.confirm ) ) {
8
  return true;
9
  }
10
  return false;
11
  });
12
 
 
13
  $('#support .question').each(function() {
14
  var tis = $(this), state = false, answer = tis.next('div').slideUp();
15
  tis.click(function() {
@@ -19,14 +26,29 @@
19
  });
20
  });
21
 
22
- var orig, highlight;
23
- $('#cptui_accordion h3').hover(function(){
24
- orig = $(this).css('color');
25
- highlight = $('.wp-ui-highlight').css('background-color');
26
- $(this).css({'color':highlight});
27
- }, function() {
28
- $(this).css({'color':orig });
 
 
 
29
  }
30
- );
31
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  })(jQuery);
1
  (function($) {
2
+
3
+ $( '#post_type' ).on( 'change', function(){
4
+ $('#cptui_select_post_type').submit();
5
+ });
6
+
7
+ $( '#taxonomy' ).on( 'change', function(){
8
+ $( '#cptui_select_taxonomy' ).submit();
9
+ });
10
 
11
  //confirm our deletions
12
  $( '#cpt_submit_delete' ).on( 'click', function() {
13
+ if( confirm( cptui_type_data.confirm ) ) {
14
  return true;
15
  }
16
  return false;
17
  });
18
 
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() {
26
  });
27
  });
28
 
29
+ //Handles message display for slug changes.
30
+ /*if ( 'cpt-ui_page_cptui_manage_post_types' === window.adminpage ) {
31
+ $('#name').after(cptui_type_data.post_change_name);
32
+ } else if ( 'cpt-ui_page_cptui_manage_taxonomies' === window.adminpage ) {
33
+ $('#name').after(cptui_tax_data.tax_change_name);
34
+ }
35
+ $( '#name' ).on( 'keyup', function( e ) {
36
+ //return early on this for now.
37
+ if ( 'cpt-ui_page_cptui_manage_taxonomies' === window.adminpage ) {
38
+ return;
39
  }
40
+ var $input = $('.typetax-rename');
41
 
42
+ if ( 0 === $(this).val().length ) {
43
+ $input.addClass('cptui-hidden');
44
+ }
45
+
46
+ if ( -1 === $.inArray( $(this).val(), cptui_type_data.post_types ) || -1 === $.inArray( $(this).val(), cptui_tax_data.taxonomies ) ) {
47
+ if ( $input.hasClass( 'cptui-hidden' ) ) {
48
+ $input.removeClass('cptui-hidden');
49
+ }
50
+ } else {
51
+ $input.addClass('cptui-hidden');
52
+ }
53
+ });*/
54
  })(jQuery);
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,35 +1,65 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 1.0.6\n"
4
- "POT-Creation-Date: 2015-04-10 11:48-0600\n"
5
- "PO-Revision-Date: 2015-04-10 11:48-0600\n"
6
- "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.7.5\n"
14
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
15
  "esc_html__;esc_html_e;esc_html_x\n"
16
- "X-Poedit-Basepath: .\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: ..\n"
 
19
 
20
- #: ../custom-post-type-ui.php:58
21
  msgid "Custom Post Types"
22
  msgstr "Custom Post Types"
23
 
24
- #: ../custom-post-type-ui.php:58
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
- #: ../custom-post-type-ui.php:323
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
@@ -40,45 +70,59 @@ msgstr ""
40
  "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
- #: ../custom-post-type-ui.php:325
44
- #, php-format
45
- msgid ""
46
- "To get started with creating some post types, please visit %s and for "
47
- "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
48
- "there fits your issue, visit our %s and we will try to get to your question "
49
- "as soon as possible."
50
- msgstr ""
51
- "Um Custom Post Types UI näher kennenzulernen erstelle doch unter %s einige "
52
- "Post Types; Taxonomien kannst Du unter %s erstellen. Falls Du Hilfe "
53
- "benötigst, gehe bitte auf die %s Seite. Sollte keiner der angeführten "
54
- "Lösungsansätze bei deinem Problem behilflich sein, besuche unser %s und wir "
55
- "werden uns Deiner Frage so schnell wie möglich annehmen."
56
-
57
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
58
- msgid "Add/Edit Post Types"
59
- msgstr "Post Types hinzufügen/editieren"
60
 
61
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
62
- msgid "Add/Edit Taxonomies"
63
- msgstr "Taxonomien hinzufügen/editieren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
- #: ../custom-post-type-ui.php:328 ../inc/support.php:30
66
- msgid "Help/Support"
67
- msgstr "Hilfe/Support"
68
 
69
- #: ../custom-post-type-ui.php:329
70
- msgid "CPT UI Support Forum"
71
- msgstr "CPT UI Support Forum"
 
 
 
 
72
 
73
- #: ../custom-post-type-ui.php:345
74
  msgid "Help Support This Plugin!"
75
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
76
 
77
- #: ../custom-post-type-ui.php:349
78
  msgid "Professional WordPress<br />Third Edition"
79
- msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
- #: ../custom-post-type-ui.php:354
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
@@ -86,211 +130,210 @@ msgstr ""
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
- #: ../custom-post-type-ui.php:357
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
- #: ../custom-post-type-ui.php:362
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
- #: ../custom-post-type-ui.php:365
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
- #: ../custom-post-type-ui.php:366
104
- msgid "Please donate to the development of Custom Post Type UI:"
105
- msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
106
-
107
- #: ../custom-post-type-ui.php:370
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
- #: ../custom-post-type-ui.php:407
 
 
 
 
112
  #, php-format
113
- msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
- msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
- #: ../custom-post-type-ui.php:416
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
- #: ../custom-post-type-ui.php:418
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
125
- msgid "Import/Export"
126
- msgstr "Import/Export"
127
-
128
- #: ../custom-post-type-ui.php:480
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
- #: ../custom-post-type-ui.php:484
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
- #: ../custom-post-type-ui.php:510
137
  msgid "Add New Post Type"
138
  msgstr "Neuen Post Type hinzufügen"
139
 
140
- #: ../custom-post-type-ui.php:513
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
- #: ../custom-post-type-ui.php:517
145
  msgid "Add New Taxonomy"
146
  msgstr "Neue Taxonomie hinzufügen"
147
 
148
- #: ../custom-post-type-ui.php:520
149
  msgid "Edit Taxonomies"
150
  msgstr "Taxonomien bearbeiten"
151
 
152
- #: ../custom-post-type-ui.php:524
 
153
  msgid "Post Types"
154
  msgstr "Post Types"
155
 
156
- #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
 
157
  msgid "Taxonomies"
158
  msgstr "Taxonomien"
159
 
160
- #: ../custom-post-type-ui.php:526
161
  msgid "Get Code"
162
- msgstr "Code anzeigen"
163
 
164
- #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
165
- #: ../inc/taxonomies.php:326
 
166
  msgid "Settings"
167
  msgstr "Einstellungen"
168
 
169
- #: ../custom-post-type-ui.php:610
170
  msgid "Help"
171
  msgstr "Hilfe"
172
 
173
- #: ../custom-post-type-ui.php:638
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr "%s wurde erfolgreich hinzugefügt"
177
 
178
- #: ../custom-post-type-ui.php:640
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr "%s konnte nicht hinzugefügt werden"
182
 
183
- #: ../custom-post-type-ui.php:644
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr "%s wurde erfolgreich aktualisiert"
187
 
188
- #: ../custom-post-type-ui.php:646
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr "%s konnte nicht aktualisiert werden"
192
 
193
- #: ../custom-post-type-ui.php:650
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr "%s wurde erfolgreich gelöscht"
197
 
198
- #: ../custom-post-type-ui.php:652
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr "%s konnte nicht gelöscht werden"
202
 
203
- #: ../custom-post-type-ui.php:656
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr "%s wurde erfolgreich importiert"
207
 
208
- #: ../custom-post-type-ui.php:658
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr "%s konnte nicht importiert werden"
212
 
213
- #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
214
  #, php-format
215
  msgid "Add new %s"
216
  msgstr "Neue %s hinzufügen"
217
 
218
- #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
219
  #, php-format
220
  msgid "Edit %s"
221
  msgstr "%s bearbeiten"
222
 
223
- #: ../custom-post-type-ui.php:743
224
  #, php-format
225
  msgid "New %s"
226
  msgstr "%s hinzufügen"
227
 
228
- #: ../custom-post-type-ui.php:744
229
  #, php-format
230
  msgid "View %s"
231
  msgstr "%s anzeigen"
232
 
233
- #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
234
  #, php-format
235
  msgid "All %s"
236
  msgstr "Alle %s"
237
 
238
- #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
239
  #, php-format
240
  msgid "Search %s"
241
  msgstr "%s durchsuchen"
242
 
243
- #: ../custom-post-type-ui.php:747
244
  #, php-format
245
  msgid "No %s found."
246
  msgstr "Keine %s gefunden."
247
 
248
- #: ../custom-post-type-ui.php:748
249
  #, php-format
250
  msgid "No %s found in trash."
251
  msgstr "Keine %s im Papierkorb gefunden."
252
 
253
- #: ../custom-post-type-ui.php:752
254
  #, php-format
255
  msgid "Popular %s"
256
  msgstr "Beliebte %s"
257
 
258
- #: ../custom-post-type-ui.php:754
259
  #, php-format
260
  msgid "Parent %s"
261
- msgstr "Parent %s"
262
 
263
- #: ../custom-post-type-ui.php:755
264
  #, php-format
265
  msgid "Parent %s:"
266
- msgstr "Parent %s:"
267
 
268
- #: ../custom-post-type-ui.php:757
269
  #, php-format
270
  msgid "Update %s"
271
  msgstr "%s aktualisieren"
272
 
273
- #: ../custom-post-type-ui.php:759
274
  #, php-format
275
  msgid "New %s name"
276
  msgstr "Neuer %s Name"
277
 
278
- #: ../custom-post-type-ui.php:760
279
  #, php-format
280
  msgid "Separate %s with commas"
281
  msgstr "%s mit Kommas trennen"
282
 
283
- #: ../custom-post-type-ui.php:761
284
  #, php-format
285
  msgid "Add or remove %s"
286
  msgstr "%s hinzufügen oder entfernen"
287
 
288
- #: ../custom-post-type-ui.php:762
289
  #, php-format
290
  msgid "Choose from the most used %s"
291
  msgstr "Aus den am häufigsten verwendeten %s auswählen"
292
 
293
- #: ../inc/import_export.php:52
294
  msgid ""
295
  "If you are wanting to migrate registered post types or taxonomies from this "
296
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -299,64 +342,64 @@ msgid ""
299
  msgstr ""
300
  "Für den Fall dass Du Post Types oder Taxonomien von dieser Webseite auf eine "
301
  "andere, die ebenso Custom Post Type UI nutzt, übertragen willst, benutze "
302
- "bitte die Import und Export Funktionen. Solltest Custom Post Type UI den "
303
- "Rücken zukehren wollen dann folge den Informationen im \"Code anzeigen\"-"
304
- "Reiter."
305
 
306
- #: ../inc/import_export.php:55
307
  msgid "NOTE"
308
  msgstr "Anmerkung"
309
 
310
- #: ../inc/import_export.php:56
311
  msgid "This will not export the associated posts, just the settings."
312
  msgstr ""
313
  "Es werden nur die Einstellungen exportiert, nicht die dazugehörigen Beiträge."
314
 
315
- #: ../inc/import_export.php:63
316
  msgid "Import Post Types"
317
  msgstr "Post Types importieren"
318
 
319
- #: ../inc/import_export.php:65 ../inc/import_export.php:90
320
  msgid "Paste content here."
321
  msgstr "Inhalt hier einfügen."
322
 
323
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
324
  msgid "Note:"
325
  msgstr "Anmerkung:"
326
 
327
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
328
  msgid "Importing will overwrite previous registered settings."
329
  msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
330
 
331
- #: ../inc/import_export.php:67
332
  msgid ""
333
  "To import post types from a different WordPress site, paste the exported "
334
  "content from that site and click the \"Import\" button."
335
  msgstr ""
336
  "Um die Post Types einer anderen WordPress-Seite zu importieren, füge deren "
337
- "exportierte Inhalte ein und klicken den \"Import\"-Button."
338
 
339
- #: ../inc/import_export.php:68 ../inc/import_export.php:93
340
  msgid "Import"
341
  msgstr "Importieren"
342
 
343
- #: ../inc/import_export.php:72
344
  msgid "Export Post Types"
345
  msgstr "Post Types exportieren"
346
 
347
- #: ../inc/import_export.php:78
348
  msgid "No post types registered yet."
349
  msgstr "Es wurden noch keine Post Types erstellt."
350
 
351
- #: ../inc/import_export.php:81 ../inc/import_export.php:106
352
  msgid ""
353
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
354
  "(Mac)."
355
  msgstr ""
356
- "Um die System-Informationen zu kopieren, klicken Sie unten und drücken dann "
357
- "Ctrl + C am PC oder Cmd + C am Mac."
358
 
359
- #: ../inc/import_export.php:82
360
  msgid ""
361
  "Use the content above to import current post types into a different "
362
  "WordPress site. You can also use this to simply back up your post type "
@@ -364,30 +407,30 @@ msgid ""
364
  msgstr ""
365
  "Benutze die Inhalte des \"Post Types exportieren\"-Feldes um die aktuellen "
366
  "Post Types in eine andere WordPress Webseite zu importieren. Du kannst dies "
367
- "ebenso einfach dazu benutzen Deine Post Type-Einstellungen zu sichern."
368
 
369
- #: ../inc/import_export.php:88
370
  msgid "Import Taxonomies"
371
  msgstr "Taxonomien importieren"
372
 
373
- #: ../inc/import_export.php:92
374
  msgid ""
375
  "To import taxonomies from a different WordPress site, paste the exported "
376
  "content from that site and click the \"Import\" button."
377
  msgstr ""
378
  "Um Taxonomien von einer anderen WordPress Seite zu importieren, füge über "
379
  "die Zwischenablage die exportierten Inhalte dieser Seite ein und klicke den "
380
- "\"Import\"-Button."
381
 
382
- #: ../inc/import_export.php:97
383
  msgid "Export Taxonomies"
384
  msgstr "Taxonomien exportieren"
385
 
386
- #: ../inc/import_export.php:103
387
  msgid "No taxonomies registered yet."
388
  msgstr "Es wurden noch keine Taxonomien definiert."
389
 
390
- #: ../inc/import_export.php:107
391
  msgid ""
392
  "Use the content above to import current taxonomies into a different "
393
  "WordPress site. You can also use this to simply back up your taxonomy "
@@ -395,64 +438,111 @@ msgid ""
395
  msgstr ""
396
  "Benutze die Inhalte des \"Taxonomie exportieren\"-Feldes um die aktuellen "
397
  "Taxonomien in eine andere WordPress Webseite zu importieren. Du kannst dies "
398
- "ebenso einfach dazu benutzen Deine Taxonomie-Einstellungen zu sichern."
399
 
400
- #: ../inc/import_export.php:115
401
  msgid "Get Post Type and Taxonomy Code"
402
  msgstr "Erhalte Post Type- und Taxonomie-Code"
403
 
404
- #: ../inc/import_export.php:117
405
  msgid "All CPT UI Post Types"
406
  msgstr "Alle CPT UI-Post Types"
407
 
408
- #: ../inc/import_export.php:118 ../inc/import_export.php:122
409
  msgid "Copy/paste the code below into your functions.php file."
410
  msgstr ""
411
  "Kopiere den Code in die Zwischenablage und füge ihn im Anschluss in Deine "
412
  "functions.php-Datei ein."
413
 
414
- #: ../inc/import_export.php:121
415
  msgid "All CPT UI Taxonomies"
416
  msgstr "Alle CPT UI-Taxonomien"
417
 
418
- #: ../inc/import_export.php:152
419
  msgid "No taxonomies to display at this time"
420
  msgstr "Es gibt keine Taxonomien zum Anzeigen."
421
 
422
- #: ../inc/import_export.php:252
423
  msgid "No post types to display at this time"
424
  msgstr "Es gibt keine Post Types zum Anzeigen."
425
 
426
- #: ../inc/import_export.php:379
427
  msgid "Post types"
428
  msgstr "Post Types"
429
 
430
- #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
  msgid "Are you sure you want to delete this?"
432
- msgstr "Bist Du sicher, dass Du dies löschen willst?"
 
 
 
 
 
 
 
 
 
433
 
434
- #: ../inc/post-types.php:85
435
  msgid ""
436
- "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
437
- "Changing that value registers a new post type entry for your install."
438
  msgstr ""
439
- "Wähle einen Post Type zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
440
- "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung des "
441
- "Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
442
 
443
- #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
444
- msgid "Select"
445
  msgstr "Auswählen"
446
 
447
- #: ../inc/post-types.php:110
448
  msgid "Post Type Slug"
449
  msgstr "Post Type-Kurzlink"
450
 
451
- #: ../inc/post-types.php:111
452
  msgid "(e.g. movie)"
453
  msgstr "(z. B. film)"
454
 
455
- #: ../inc/post-types.php:112
456
  msgid ""
457
  "The post type name. Used to retrieve custom post type content. Should be "
458
  "short and unique"
@@ -460,35 +550,33 @@ msgstr ""
460
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
461
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
462
 
463
- #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
464
  msgid "Plural Label"
465
  msgstr "Beschriftung (Plural)"
466
 
467
- #: ../inc/post-types.php:124
468
  msgid "(e.g. Movies)"
469
  msgstr "(z. B. Filme)"
470
 
471
- #: ../inc/post-types.php:125 ../inc/post-types.php:193
472
- #: ../inc/post-types.php:205 ../inc/post-types.php:217
473
- #: ../inc/post-types.php:229 ../inc/post-types.php:241
474
- #: ../inc/post-types.php:253 ../inc/post-types.php:265
475
- #: ../inc/post-types.php:277 ../inc/post-types.php:289
476
- #: ../inc/post-types.php:301 ../inc/post-types.php:313
477
- #: ../inc/post-types.php:325
478
  msgid "Post type label. Used in the admin menu for displaying post types."
479
  msgstr ""
480
- "Custom Post Type-Beschriftung. Sie wird im Admin-Menü dazu verwendet den "
481
- "Post Type anzuzeigen."
482
 
483
- #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
484
  msgid "Singular Label"
485
  msgstr "Beschriftung (Singular)"
486
 
487
- #: ../inc/post-types.php:136
488
  msgid "(e.g. Movie)"
489
  msgstr "(z. B. Film)"
490
 
491
- #: ../inc/post-types.php:137
492
  msgid ""
493
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
494
  "needed."
@@ -496,11 +584,11 @@ msgstr ""
496
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
497
  "Beschriftungen in der Einzahl benötigt werden."
498
 
499
- #: ../inc/post-types.php:152
500
  msgid "Description"
501
  msgstr "Beschreibung"
502
 
503
- #: ../inc/post-types.php:153
504
  msgid ""
505
  "Custom Post Type Description. Describe what your custom post type is used "
506
  "for."
@@ -508,294 +596,332 @@ msgstr ""
508
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
509
  "verwendet wird."
510
 
511
- #: ../inc/post-types.php:160
512
- msgid "Edit Post Type"
513
- msgstr "Post Type bearbeiten"
 
 
 
 
 
 
 
 
 
 
 
514
 
515
- #: ../inc/post-types.php:161
516
  msgid "Delete Post Type"
517
  msgstr "Post Type löschen"
518
 
519
- #: ../inc/post-types.php:163
520
  msgid "Add Post Type"
521
  msgstr "Post Type hinzufügen"
522
 
523
- #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
524
- msgid "Click headings to reveal available options."
 
 
 
 
 
 
 
 
 
525
  msgstr ""
526
- "Klicke die Überschriften an um die verfügbaren Einstellungsmöglichkeiten "
527
- "anzuzeigen."
 
 
 
528
 
529
- #: ../inc/post-types.php:172 ../inc/post-types.php:334
530
- #: ../inc/post-types.php:827 ../inc/taxonomies.php:184
531
- #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
532
- msgid "Click to expand"
533
- msgstr "Zum Aufklappen anklicken"
 
 
 
 
 
 
 
 
 
 
534
 
535
- #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
536
- msgid "Labels"
537
- msgstr "Beschriftungen"
 
 
 
 
 
 
 
538
 
539
- #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
540
  msgid "Menu Name"
541
  msgstr "Menü-Name"
542
 
543
- #: ../inc/post-types.php:181
544
  msgid "Custom menu name for your custom post type."
545
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
546
 
547
- #: ../inc/post-types.php:185
548
  msgid "(e.g. My Movies)"
549
  msgstr "(z. B. Mein Film)"
550
 
551
- #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
552
  msgid "All Items"
553
  msgstr "Alle Einträge"
554
 
555
- #: ../inc/post-types.php:197
556
  msgid "(e.g. All Movies)"
557
  msgstr "(z. B. Alle Filme)"
558
 
559
- #: ../inc/post-types.php:204
560
  msgid "Add New"
561
  msgstr "Neu"
562
 
563
- #: ../inc/post-types.php:209
564
  msgid "(e.g. Add New)"
565
  msgstr "(z. B. Neuen hinzufügen)"
566
 
567
- #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
568
  msgid "Add New Item"
569
  msgstr "Neuen Eintrag erstellen"
570
 
571
- #: ../inc/post-types.php:221
572
  msgid "(e.g. Add New Movie)"
573
  msgstr "(z. B. Neuen Film hinzufügen)"
574
 
575
- #: ../inc/post-types.php:228
576
- msgid "Edit"
577
- msgstr "Bearbeiten"
578
-
579
- #: ../inc/post-types.php:233
580
  msgid "(e.g. Edit)"
581
  msgstr "(z. B. Bearbeiten)"
582
 
583
- #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
584
  msgid "Edit Item"
585
  msgstr "Eintrag bearbeiten"
586
 
587
- #: ../inc/post-types.php:245
588
  msgid "(e.g. Edit Movie)"
589
  msgstr "(z. B. Film bearbeiten)"
590
 
591
- #: ../inc/post-types.php:252
592
  msgid "New Item"
593
  msgstr "Neuer Eintrag"
594
 
595
- #: ../inc/post-types.php:257
596
  msgid "(e.g. New Movie)"
597
  msgstr "(z. B. Neuer Film)"
598
 
599
- #: ../inc/post-types.php:264
600
  msgid "View"
601
  msgstr "Anzeigen"
602
 
603
- #: ../inc/post-types.php:269
604
  msgid "(e.g. View)"
605
  msgstr "(z. B. Anzeigen)"
606
 
607
- #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
608
  msgid "View Item"
609
  msgstr "Eintrag anzeigen"
610
 
611
- #: ../inc/post-types.php:281
612
  msgid "(e.g. View Movie)"
613
  msgstr "(z. B. Film anzeigen)"
614
 
615
- #: ../inc/post-types.php:288
616
  msgid "Search Item"
617
  msgstr "Eintrag suchen"
618
 
619
- #: ../inc/post-types.php:293
620
  msgid "(e.g. Search Movie)"
621
  msgstr "(z. B. Film suchen)"
622
 
623
- #: ../inc/post-types.php:300
624
  msgid "Not Found"
625
  msgstr "Nicht gefunden"
626
 
627
- #: ../inc/post-types.php:305
628
  msgid "(e.g. No Movies found)"
629
  msgstr "(z. B. Keine Filme gefunden)"
630
 
631
- #: ../inc/post-types.php:312
632
  msgid "Not Found in Trash"
633
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
634
 
635
- #: ../inc/post-types.php:317
636
  msgid "(e.g. No Movies found in Trash)"
637
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
638
 
639
- #: ../inc/post-types.php:324
640
  msgid "Parent"
641
- msgstr "Parent"
642
 
643
- #: ../inc/post-types.php:329
644
  msgid "(e.g. Parent Movie)"
645
- msgstr "(z. B. Parent Film)"
646
-
647
- #: ../inc/post-types.php:343 ../inc/post-types.php:363
648
- #: ../inc/post-types.php:389 ../inc/post-types.php:421
649
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
650
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
651
- #: ../inc/post-types.php:569 ../inc/taxonomies.php:332
652
- #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
653
- #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
654
- #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
655
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
656
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
657
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
658
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
659
  msgid "False"
660
  msgstr "deaktiviert"
661
 
662
- #: ../inc/post-types.php:344 ../inc/post-types.php:364
663
- #: ../inc/post-types.php:390 ../inc/post-types.php:422
664
- #: ../inc/post-types.php:453 ../inc/post-types.php:473
665
- #: ../inc/post-types.php:505 ../inc/post-types.php:525
666
- #: ../inc/post-types.php:570 ../inc/taxonomies.php:333
667
- #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
668
- #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
669
- #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
670
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
671
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
672
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
673
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
674
  msgid "True"
675
  msgstr "aktiviert"
676
 
677
- #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
678
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
679
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
680
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
681
  msgid "Public"
682
  msgstr "Öffentlich"
683
 
684
- #: ../inc/post-types.php:353 ../inc/post-types.php:373
685
- #: ../inc/post-types.php:482 ../inc/post-types.php:514
686
- #: ../inc/post-types.php:534 ../inc/post-types.php:578
687
- #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
688
- #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
689
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
690
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
691
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
692
  msgid "(default: True)"
693
  msgstr "(Voreinstellung: aktiviert)"
694
 
695
- #: ../inc/post-types.php:354
696
- msgid "Whether posts of this type should be shown in the admin UI."
697
- msgstr "Sollen Beiträge dieses Typs im Admin-Interface angezeigt werden."
 
 
 
 
698
 
699
- #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
700
  msgid "Show UI"
701
  msgstr "Benutzeroberfläche anzeigen"
702
 
703
- #: ../inc/post-types.php:374
704
  msgid "Whether to generate a default UI for managing this post type."
705
  msgstr ""
706
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
707
- "erstellt werden."
708
 
709
- #: ../inc/post-types.php:382
710
  msgid "Has Archive"
711
- msgstr "Hat einen Archiv-Index"
712
 
713
- #: ../inc/post-types.php:383
714
- msgid "Whether the post type will have a post type archive page."
715
- msgstr "Soll der Post Type eine Archiv-Seite besitzen."
716
 
717
- #: ../inc/post-types.php:384
718
  msgid "If left blank, the archive slug will default to the post type slug."
719
  msgstr ""
720
- "Wird das Feld leer gelassen übernimmt der Archiv-Kurzlink den Inhalt des "
721
- "Post Type-Kurzlinks."
722
 
723
- #: ../inc/post-types.php:398 ../inc/post-types.php:431
724
- #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
725
- #: ../inc/taxonomies.php:461
726
  msgid "(default: False)"
727
  msgstr "(Voreinstellung: deaktiviert)"
728
 
729
- #: ../inc/post-types.php:410
730
- msgid "Slug to be used for archive page."
731
- msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
732
 
733
- #: ../inc/post-types.php:430
734
  msgid "Exclude From Search"
735
  msgstr "Von der Suche ausschließen"
736
 
737
- #: ../inc/post-types.php:432
738
- msgid "Whether the post type will be searchable"
739
- msgstr "Soll der Post Type durchsuchbar sein"
 
 
 
740
 
741
- #: ../inc/post-types.php:443
742
  msgid "Capability Type"
743
- msgstr "Capability-Typ"
744
 
745
- #: ../inc/post-types.php:444
746
  msgid "The post type to use for checking read, edit, and delete capabilities"
747
  msgstr ""
748
- "Der Post Type der herangezogen wird um die Befähigung zum Lesen, Bearbeiten "
749
- "und Lösche zu überprüfen"
750
 
751
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
752
  msgid "Hierarchical"
753
  msgstr "Hierarchisch"
754
 
755
- #: ../inc/post-types.php:463
756
  msgid "Whether the post type can have parent-child relationships"
757
- msgstr "Darf der Post Type Parent-Child-Beziehungen haben"
758
 
759
- #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
760
  msgid "Rewrite"
761
  msgstr "Rewrite"
762
 
763
- #: ../inc/post-types.php:483
764
- msgid "Triggers the handling of rewrites for this post type"
765
- msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
766
 
767
- #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
768
  msgid "Custom Rewrite Slug"
769
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
770
 
771
- #: ../inc/post-types.php:495
772
- msgid "(default: post type name)"
773
- msgstr "(Voreinstellung: Post Type-Name)"
774
 
775
- #: ../inc/post-types.php:496
776
- msgid "Custom slug to use instead of the default."
777
  msgstr ""
778
- "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
779
- "soll."
780
 
781
- #: ../inc/post-types.php:513
782
  msgid "With Front"
783
- msgstr "With Front"
784
 
785
- #: ../inc/post-types.php:515 ../inc/post-types.php:535
786
- #: ../inc/taxonomies.php:428
787
  msgid "Should the permastruct be prepended with the front base."
788
- msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
789
 
790
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
791
  msgid "Query Var"
792
- msgstr "Query Var"
793
 
794
- #: ../inc/post-types.php:543
 
 
 
 
795
  msgid "Menu Position"
796
  msgstr "Menü Position"
797
 
798
- #: ../inc/post-types.php:544
799
  msgid ""
800
  "The position in the menu order the post type should appear. show_in_menu "
801
  "must be true."
@@ -803,7 +929,7 @@ msgstr ""
803
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
804
  "anzeigen\" muss dafür aktiviert sein."
805
 
806
- #: ../inc/post-types.php:545
807
  msgid ""
808
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
809
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -811,72 +937,61 @@ msgid ""
811
  msgstr ""
812
  "<a href=\"http://codex.wordpress.org/Function_Reference/"
813
  "register_post_type#Parameters\">Lies mehr </a> zu den verfügbaren "
814
- "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
815
  "Werte reichen von 5 bis 100."
816
 
817
- #: ../inc/post-types.php:552
818
- msgid "URL or Dashicon value for image to be used as menu icon."
819
- msgstr ""
820
- "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
821
-
822
- #: ../inc/post-types.php:562
823
  msgid "Show in Menu"
824
  msgstr "Im Menü anzeigen"
825
 
826
- #: ../inc/post-types.php:563
827
  msgid ""
828
- "Whether to show the post type in the admin menu and where to show that menu. "
829
- "Note that show_ui must be true."
830
- msgstr ""
831
- "Soll der Post Type im Admin-Menü angezeigt werden und wenn ja wo. Merke "
832
- "show_ui muss dazu aktiviert sein."
833
 
834
- #: ../inc/post-types.php:564
835
  msgid ""
836
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
837
  "php\" is indicated for second input, post type will be sub menu of that."
838
  msgstr ""
839
  "\"Benutzeroberfläche anzeigen\" muss \"aktiviert\" sein. Sollte eine Top-"
840
- "Level-Parent-Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
841
- "sein wird der Post Type als Untermenü davon angezeigt."
842
 
843
- #: ../inc/post-types.php:590
844
- msgid "URL to image to be used as menu icon."
845
- msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
 
846
 
847
- #: ../inc/post-types.php:602
848
  msgid "Menu Icon"
849
  msgstr "Menü-Icon"
850
 
851
- #: ../inc/post-types.php:603
852
  msgid "(Full URL for icon or Dashicon class)"
853
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
854
 
855
- #: ../inc/post-types.php:604
856
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
857
  msgstr ""
858
- "URL zum Bild das als Menü-Icon verwendet wird; oder zur Dashicon-Klasse "
859
- "anstelle dessen."
860
 
861
- #: ../inc/post-types.php:607
862
- msgid "Supports"
863
- msgstr "Unterstützt"
864
-
865
- #: ../inc/post-types.php:617
866
  msgid "Title"
867
  msgstr "Titel"
868
 
869
- #: ../inc/post-types.php:618
870
  msgid "Adds the title meta box when creating content for this custom post type"
871
  msgstr ""
872
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
873
  "erstellt werden"
874
 
875
- #: ../inc/post-types.php:632
876
  msgid "Editor"
877
  msgstr "Text-Editor"
878
 
879
- #: ../inc/post-types.php:633
880
  msgid ""
881
  "Adds the content editor meta box when creating content for this custom post "
882
  "type"
@@ -884,33 +999,33 @@ msgstr ""
884
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
885
  "Type erstellt werden"
886
 
887
- #: ../inc/post-types.php:647
888
  msgid "Excerpt"
889
  msgstr "Auszug"
890
 
891
- #: ../inc/post-types.php:648
892
  msgid ""
893
  "Adds the excerpt meta box when creating content for this custom post type"
894
  msgstr ""
895
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
896
  "erstellt werden"
897
 
898
- #: ../inc/post-types.php:662
899
  msgid "Trackbacks"
900
  msgstr "Trackbacks"
901
 
902
- #: ../inc/post-types.php:663
903
  msgid ""
904
  "Adds the trackbacks meta box when creating content for this custom post type"
905
  msgstr ""
906
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
907
  "Type erstellt werden"
908
 
909
- #: ../inc/post-types.php:677
910
  msgid "Custom Fields"
911
  msgstr "Eigene Felder"
912
 
913
- #: ../inc/post-types.php:678
914
  msgid ""
915
  "Adds the custom fields meta box when creating content for this custom post "
916
  "type"
@@ -918,33 +1033,33 @@ msgstr ""
918
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
919
  "Type erstellt werden"
920
 
921
- #: ../inc/post-types.php:692
922
  msgid "Comments"
923
  msgstr "Kommentare"
924
 
925
- #: ../inc/post-types.php:693
926
  msgid ""
927
  "Adds the comments meta box when creating content for this custom post type"
928
  msgstr ""
929
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
930
  "Type erstellt werden"
931
 
932
- #: ../inc/post-types.php:707
933
  msgid "Revisions"
934
  msgstr "Revisionen"
935
 
936
- #: ../inc/post-types.php:708
937
  msgid ""
938
  "Adds the revisions meta box when creating content for this custom post type"
939
  msgstr ""
940
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
941
  "Type erstellt werden"
942
 
943
- #: ../inc/post-types.php:722
944
  msgid "Featured Image"
945
  msgstr "Beitragsbild"
946
 
947
- #: ../inc/post-types.php:723
948
  msgid ""
949
  "Adds the featured image meta box when creating content for this custom post "
950
  "type"
@@ -952,22 +1067,22 @@ msgstr ""
952
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
953
  "Type erstellt werden"
954
 
955
- #: ../inc/post-types.php:737
956
  msgid "Author"
957
  msgstr "Autor"
958
 
959
- #: ../inc/post-types.php:738
960
  msgid ""
961
  "Adds the author meta box when creating content for this custom post type"
962
  msgstr ""
963
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
964
  "erstellt werden"
965
 
966
- #: ../inc/post-types.php:752
967
  msgid "Page Attributes"
968
  msgstr "Seiten Attribute"
969
 
970
- #: ../inc/post-types.php:753
971
  msgid ""
972
  "Adds the page attribute meta box when creating content for this custom post "
973
  "type"
@@ -975,107 +1090,77 @@ msgstr ""
975
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
976
  "Post Type erstellt werden"
977
 
978
- #: ../inc/post-types.php:767
979
  msgid "Post Formats"
980
  msgstr "Format"
981
 
982
- #: ../inc/post-types.php:768
983
  msgid "Adds post format support"
984
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
985
 
986
- #: ../inc/post-types.php:773
987
  msgid "Use the option below to explicitly set \"supports\" to false."
988
  msgstr ""
989
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
990
  "zu deaktivieren."
991
 
992
- #: ../inc/post-types.php:781
993
  msgid "None"
994
  msgstr "Keine"
995
 
996
- #: ../inc/post-types.php:782
997
  msgid "Remove all support features"
998
- msgstr "Entferne alle Support Features"
999
-
1000
- #: ../inc/post-types.php:789
1001
- msgid "Built-in Taxonomies"
1002
- msgstr "Vorhandene Taxonomien"
1003
-
1004
- #: ../inc/post-types.php:818 ../inc/taxonomies.php:163
1005
- #, php-format
1006
- msgid "Adds %s support"
1007
- msgstr "Fügt %s Unterstützung hinzu"
1008
 
1009
- #: ../inc/post-types.php:827 ../inc/taxonomies.php:470
1010
- msgid "Starter Notes"
1011
- msgstr "Tips für Einsteiger"
1012
 
1013
- #: ../inc/post-types.php:830
1014
- #, php-format
1015
  msgid ""
1016
- "Post Type names should have %smax 20 characters%s, and only contain "
1017
- "alphanumeric, lowercase characters, underscores in place of spaces and "
1018
- "letters that do not have accents. Reserved names: post, page, attachment, "
1019
- "revision, nav_menu_item."
1020
  msgstr ""
1021
- "Post Type-Namen dürfen %smaximal 20 Zeichen%s lang sein und nur "
1022
- "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1023
- "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen. "
1024
- "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
1025
- "revision, nav_menu_item."
1026
 
1027
- #: ../inc/post-types.php:831
1028
- #, php-format
1029
- msgid ""
1030
- "If you are unfamiliar with the advanced post type settings, just fill in the "
1031
- "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
1032
- "values. Labels, if left blank, will be automatically created based on the "
1033
- "post type name. Hover over the question mark for more details."
1034
- msgstr ""
1035
- "Solltest Du mit der Nutzung der erweiterten Post Type-Einstellungen nicht "
1036
- "vertraut sein, dann trage nur Werte in das %sPost Type-Namen%s- sowie das "
1037
- "%sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
1038
- "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
1039
- "wurden, werden selbige automatisch, basierend auf dem Post Type-Namen, "
1040
- "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1041
- "roten Fragezeichen."
1042
 
1043
- #: ../inc/post-types.php:832
 
 
 
 
1044
  #, php-format
1045
- msgid ""
1046
- "Deleting custom post types will %sNOT%s delete any content into the database "
1047
- "or added to those post types. You can easily recreate your post types and "
1048
- "the content will still exist."
1049
- msgstr ""
1050
- "Das Löschen eines Post Types führt %sNICHT%s zur Entfernung von Inhalten aus "
1051
- "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
1052
- "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
1053
 
1054
- #: ../inc/post-types.php:912
1055
  msgid "Please provide a post type to delete"
1056
  msgstr "Bitte gib einen Post Type zum Löschen an"
1057
 
1058
- #: ../inc/post-types.php:972
1059
  msgid "Please provide a post type name"
1060
  msgstr "Bitte gib einen Namen für den Post Type an"
1061
 
1062
- #: ../inc/post-types.php:990
1063
  msgid "Please do not use quotes in post type names or rewrite slugs"
1064
  msgstr ""
1065
- "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
1066
  "Kurzlinks"
1067
 
1068
- #: ../inc/post-types.php:997
1069
  #, php-format
1070
  msgid "Please choose a different post type name. %s is already registered."
1071
  msgstr ""
1072
  "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1073
 
1074
- #: ../inc/support.php:51
1075
  msgid "Custom Post Type UI Support"
1076
  msgstr "Custom Post Type UI Support"
1077
 
1078
- #: ../inc/support.php:53
1079
  #, php-format
1080
  msgid ""
1081
  "Please note that this plugin will NOT handle display of registered post "
@@ -1087,15 +1172,15 @@ msgstr ""
1087
  "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1088
  "unsere %s"
1089
 
1090
- #: ../inc/support.php:54
1091
  msgid "Support Forums"
1092
  msgstr "Support Foren"
1093
 
1094
- #: ../inc/support.php:60
1095
  msgid "General"
1096
  msgstr "Allgemein"
1097
 
1098
- #: ../inc/support.php:63
1099
  msgid ""
1100
  "I changed my custom post type name and now I can not get to my posts. How do "
1101
  "I get them back?"
@@ -1103,7 +1188,7 @@ msgstr ""
1103
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1104
  "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1105
 
1106
- #: ../inc/support.php:64
1107
  msgid ""
1108
  "You can either change the custom post type name back to the original name or "
1109
  "try the Post Type Switcher plugin"
@@ -1111,7 +1196,7 @@ msgstr ""
1111
  "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1112
  "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1113
 
1114
- #: ../inc/support.php:69
1115
  msgid ""
1116
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1117
  "shown. How do I remove the duplicate?"
@@ -1119,7 +1204,7 @@ msgstr ""
1119
  "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1120
  "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1121
 
1122
- #: ../inc/support.php:70
1123
  msgid ""
1124
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1125
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1131,7 +1216,7 @@ msgstr ""
1131
  "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1132
  "ursprünglichen Eintrag löschen."
1133
 
1134
- #: ../inc/support.php:73
1135
  msgid ""
1136
  "I have added post thumbnail and/or post format support to my post type, but "
1137
  "those do not appear when adding a post type post."
@@ -1140,24 +1225,24 @@ msgstr ""
1140
  "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1141
  "mit diesem Post Type hinzufüge."
1142
 
1143
- #: ../inc/support.php:74
1144
  msgid ""
1145
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1146
  msgstr ""
1147
  "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1148
  "Thumbnails\" aktiviert hat"
1149
 
1150
- #: ../inc/support.php:79
1151
  msgid "Front-end Display"
1152
  msgstr "Front-End Anzeige"
1153
 
1154
- #: ../inc/support.php:82
1155
  msgid "What template files should I edit to alter my post type display?"
1156
  msgstr ""
1157
  "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1158
  "Types zu verändern?"
1159
 
1160
- #: ../inc/support.php:83
1161
  #, php-format
1162
  msgid ""
1163
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
@@ -1166,12 +1251,12 @@ msgstr ""
1166
  "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1167
  "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1168
 
1169
- #: ../inc/support.php:90
1170
  msgid "How do I display my custom post type on my site?"
1171
  msgstr ""
1172
  "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1173
 
1174
- #: ../inc/support.php:91
1175
  #, php-format
1176
  msgid ""
1177
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1183,7 +1268,7 @@ msgstr ""
1183
  "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1184
  "\" lauten."
1185
 
1186
- #: ../inc/support.php:97
1187
  msgid ""
1188
  "I have added categories and tags to my custom post type, but they do not "
1189
  "appear in the archives."
@@ -1191,7 +1276,7 @@ msgstr ""
1191
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1192
  "sie werden nicht in den Archiven angezeigt."
1193
 
1194
- #: ../inc/support.php:98
1195
  #, php-format
1196
  msgid ""
1197
  "You will need to add your newly created post type to the types that the "
@@ -1202,15 +1287,15 @@ msgstr ""
1202
  "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1203
  "Tutorial dazu unter %s"
1204
 
1205
- #: ../inc/support.php:107
1206
  msgid "Advanced"
1207
  msgstr "Erweitert"
1208
 
1209
- #: ../inc/support.php:110
1210
  msgid "How do I add custom metaboxes to my post type?"
1211
  msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
1212
 
1213
- #: ../inc/support.php:112
1214
  #, php-format
1215
  msgid ""
1216
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
@@ -1219,25 +1304,25 @@ msgstr ""
1219
  "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1220
  "WordPress\". Beides wird von den WebDevStudios entwickelt."
1221
 
1222
- #: ../inc/support.php:118
1223
  msgid ""
1224
  "How do I add a newly registered taxonomy to a post type that already exists?"
1225
  msgstr ""
1226
  "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1227
  "bereits existiert?"
1228
 
1229
- #: ../inc/support.php:120
1230
  #, php-format
1231
  msgid "Check out the %s function for documentation and usage examples."
1232
  msgstr ""
1233
  "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1234
  "Nutzungsbeispielen."
1235
 
1236
- #: ../inc/support.php:126
1237
  msgid "Post relationships?"
1238
  msgstr "Beitragsbeziehungen?"
1239
 
1240
- #: ../inc/support.php:127
1241
  #, php-format
1242
  msgid ""
1243
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
@@ -1246,14 +1331,28 @@ msgstr ""
1246
  "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1247
  "%s Plugins veröffentlicht."
1248
 
1249
- #: ../inc/support.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1250
  msgid ""
1251
  "How do I filter the \"enter title here\" text in the post editor screen?"
1252
  msgstr ""
1253
  "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1254
  "\"-Fenster ändern?"
1255
 
1256
- #: ../inc/support.php:137
1257
  msgid ""
1258
  "Change text inside the post/page editor title field. Should be able to adapt "
1259
  "as necessary."
@@ -1261,323 +1360,447 @@ msgstr ""
1261
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1262
  "möglich sein dies anzupassen falls notwendig."
1263
 
1264
- #: ../inc/taxonomies.php:87
1265
  msgid ""
1266
- "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1267
- "Changing that value registers a new taxonomy entry for your install."
1268
  msgstr ""
1269
- "Wähle eine Taxonomie zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
1270
- "einer Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung des "
1271
- "Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1272
 
1273
- #: ../inc/taxonomies.php:109
1274
  msgid "Taxonomy Slug"
1275
  msgstr "Taxonomie-Kurzlink"
1276
 
1277
- #: ../inc/taxonomies.php:110
1278
- msgid "(e.g. actors)"
1279
  msgstr "(z. B. regisseure)"
1280
 
1281
- #: ../inc/taxonomies.php:111
1282
  msgid ""
1283
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1284
  "and unique"
1285
  msgstr ""
1286
- "Der Taxonomie Name. Wird zum Abrufen von benutzerdefinierten Taxonomie-"
1287
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1288
 
1289
- #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1290
  msgid "(e.g. Actors)"
1291
  msgstr "(z. B. Regisseure)"
1292
 
1293
- #: ../inc/taxonomies.php:121
1294
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1295
  msgstr ""
1296
- "Taxonomie-Beschreibung. Wird im Admin-Menü dazu verwendet benutzerdefinierte "
1297
- "Taxonomien anzuzeigen."
1298
 
1299
- #: ../inc/taxonomies.php:128
1300
  msgid "(e.g. Actor)"
1301
  msgstr "(z. B. Regisseur)"
1302
 
1303
- #: ../inc/taxonomies.php:130
1304
  msgid ""
1305
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1306
  msgstr ""
1307
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1308
  "Beschriftungen in der Einzahl benötigt werden."
1309
 
1310
- #: ../inc/taxonomies.php:133
1311
  msgid "Attach to Post Type"
1312
  msgstr "Mit Post Type verbinden"
1313
 
1314
- #: ../inc/taxonomies.php:172
1315
- msgid "Edit Taxonomy"
1316
- msgstr "Taxonomien bearbeiten"
1317
 
1318
- #: ../inc/taxonomies.php:173
1319
  msgid "Delete Taxonomy"
1320
  msgstr "Taxonomie löschen"
1321
 
1322
- #: ../inc/taxonomies.php:175
1323
  msgid "Add Taxonomy"
1324
  msgstr "Taxonomie hinzufügen"
1325
 
1326
- #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1327
- #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1328
- #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1329
- #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1330
- #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1331
- #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1332
- #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1333
- #: ../inc/taxonomies.php:321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1334
  msgid ""
1335
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1336
  msgstr ""
1337
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1338
  "Anzeige von Taxonomien verwendet."
1339
 
1340
- #: ../inc/taxonomies.php:202
1341
  msgid "(e.g. All Actors)"
1342
  msgstr "(z. B. Alle Regisseure)"
1343
 
1344
- #: ../inc/taxonomies.php:211
1345
  msgid "(e.g. Edit Actor)"
1346
  msgstr "(z. B. Regisseur bearbeiten)"
1347
 
1348
- #: ../inc/taxonomies.php:220
1349
  msgid "(e.g. View Actor)"
1350
  msgstr "(z. B. Regisseur anzeigen)"
1351
 
1352
- #: ../inc/taxonomies.php:229
1353
  msgid "(e.g. Update Actor Name)"
1354
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1355
 
1356
- #: ../inc/taxonomies.php:230
1357
  msgid "Update Item Name"
1358
  msgstr "Eintragsname aktualisieren"
1359
 
1360
- #: ../inc/taxonomies.php:238
1361
  msgid "(e.g. Add New Actor)"
1362
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1363
 
1364
- #: ../inc/taxonomies.php:247
1365
  msgid "(e.g. New Actor Name)"
1366
  msgstr "(z. B. Neuer Regisseursname)"
1367
 
1368
- #: ../inc/taxonomies.php:248
1369
  msgid "New Item Name"
1370
  msgstr "Neuer Eintragsname"
1371
 
1372
- #: ../inc/taxonomies.php:256
1373
  msgid "(e.g. Parent Actor)"
1374
- msgstr "(z. B. Parent Regisseur)"
1375
 
1376
- #: ../inc/taxonomies.php:257
1377
  msgid "Parent Item"
1378
- msgstr "Parent Eintrag"
1379
 
1380
- #: ../inc/taxonomies.php:265
1381
  msgid "(e.g. Parent Actor:)"
1382
- msgstr "(z. B. Parent Regisseur:)"
1383
 
1384
- #: ../inc/taxonomies.php:266
1385
  msgid "Parent Item Colon"
1386
- msgstr "Parent Eintrag Komma"
1387
 
1388
- #: ../inc/taxonomies.php:274
1389
  msgid "(e.g. Search Actors)"
1390
  msgstr "(z. B. Regisseure durchsuchen)"
1391
 
1392
- #: ../inc/taxonomies.php:275
1393
  msgid "Search Items"
1394
  msgstr "Einträge durchsuchen"
1395
 
1396
- #: ../inc/taxonomies.php:283
1397
  msgid "(e.g. Popular Actors)"
1398
  msgstr "(z. B. beliebte Regisseure)"
1399
 
1400
- #: ../inc/taxonomies.php:284
1401
  msgid "Popular Items"
1402
  msgstr "Beliebte Einträge"
1403
 
1404
- #: ../inc/taxonomies.php:292
1405
  msgid "(e.g. Separate actors with commas)"
1406
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1407
 
1408
- #: ../inc/taxonomies.php:293
1409
  msgid "Separate Items with Commas"
1410
  msgstr "Trenne Einträge mittels Komma"
1411
 
1412
- #: ../inc/taxonomies.php:301
1413
  msgid "(e.g. Add or remove actors)"
1414
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1415
 
1416
- #: ../inc/taxonomies.php:302
1417
  msgid "Add or Remove Items"
1418
  msgstr "Lösche oder füge Einträge hinzu"
1419
 
1420
- #: ../inc/taxonomies.php:310
1421
  msgid "(e.g. Choose from the most used actors)"
1422
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1423
 
1424
- #: ../inc/taxonomies.php:311
1425
  msgid "Choose From Most Used"
1426
  msgstr "Wähle aus den am meisten Verwendeten"
1427
 
1428
- #: ../inc/taxonomies.php:319
1429
  msgid "(e.g. No actors found)"
1430
  msgstr "(z. B. Keine Regisseure gefunden)"
1431
 
1432
- #: ../inc/taxonomies.php:320
1433
  msgid "Not found"
1434
  msgstr "Nicht gefunden"
1435
 
1436
- #: ../inc/taxonomies.php:343
1437
  msgid "Whether the taxonomy can have parent-child relationships"
1438
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1439
 
1440
- #: ../inc/taxonomies.php:360
1441
- msgid "Whether to generate a default UI for managing this custom taxonomy"
1442
  msgstr ""
1443
- "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
1444
- "benutzerdefinierten Taxonomien erstellt werden"
1445
 
1446
- #: ../inc/taxonomies.php:384
 
 
 
 
1447
  msgid "(default: none). Query Var needs to be true to use."
1448
  msgstr ""
1449
- "(Voreinstellung: Keine - Query Var muss aktiviert sein um es benutzen zu "
1450
- "können)"
1451
 
1452
- #: ../inc/taxonomies.php:385
1453
  msgid "Custom Query Var String"
1454
- msgstr "Benutzerdefinierte Query Var-Zeile"
1455
 
1456
- #: ../inc/taxonomies.php:386
1457
- msgid "Custom Query Var Slug"
1458
- msgstr "Benutzerdefinierter Query Var-Kurzlink"
 
 
1459
 
1460
- #: ../inc/taxonomies.php:402
1461
- msgid "Triggers the handling of rewrites for this taxonomy"
1462
- msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
1463
 
1464
- #: ../inc/taxonomies.php:410
1465
  msgid "(default: taxonomy name)"
1466
  msgstr "(Voreinstellung: Taxanomie Name)"
1467
 
1468
- #: ../inc/taxonomies.php:412
1469
- msgid "Custom Taxonomy Rewrite Slug"
1470
- msgstr "Benutzerdefinierter Taxonomie Rewrite-Kurzlink"
1471
 
1472
- #: ../inc/taxonomies.php:426
1473
  msgid "Rewrite With Front"
1474
- msgstr "Rewrite mittels With Front"
1475
 
1476
- #: ../inc/taxonomies.php:427
1477
  msgid "(default: true)"
1478
  msgstr "(Voreinstellung: aktiviert)"
1479
 
1480
- #: ../inc/taxonomies.php:443
1481
  msgid "Rewrite Hierarchical"
1482
  msgstr "Hierarchischer Rewrite"
1483
 
1484
- #: ../inc/taxonomies.php:444
1485
  msgid "(default: false)"
1486
  msgstr "(Voreinstellung: deaktiviert)"
1487
 
1488
- #: ../inc/taxonomies.php:445
1489
  msgid "Should the permastruct allow hierarchical urls."
1490
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1491
 
1492
- #: ../inc/taxonomies.php:460
1493
  msgid "Show Admin Column"
1494
  msgstr "Anzeige von Admin-Spalten"
1495
 
1496
- #: ../inc/taxonomies.php:462
1497
  msgid ""
1498
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1499
  "types."
1500
  msgstr ""
1501
- "Soll die automatische Erstellung von Taxonomie-Spalten in verbundenen Post "
1502
- "Types erlaubt werden."
1503
-
1504
- #: ../inc/taxonomies.php:473
1505
- #, php-format
1506
- msgid ""
1507
- "Taxonomy names should have %smax 32 characters%s, and only contain "
1508
- "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1509
- "letters that do not have accents."
1510
- msgstr ""
1511
- "Taxonomie Namen dürfen %smaximal 32 Zeichen%s lang sein und nur "
1512
- "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1513
- "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1514
-
1515
- #: ../inc/taxonomies.php:474
1516
- #, php-format
1517
- msgid ""
1518
- "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1519
- "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1520
- "settings will use default values. Labels, if left blank, will be "
1521
- "automatically created based on the taxonomy name. Hover over the question "
1522
- "marks for more details."
1523
- msgstr ""
1524
- "Solltest Du mit der Nutzung der erweiterten Taxonomie-Einstellungen nicht "
1525
- "vertraut sein, dann trage nur Werte in das %sTaxonomie-Namen%s sowie das "
1526
- "%sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
1527
- "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
1528
- "wurden, werden selbige automatisch, basierend auf dem Taxonomie-Namen "
1529
- "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1530
- "roten Fragezeichen."
1531
 
1532
- #: ../inc/taxonomies.php:475
1533
- #, php-format
1534
- msgid ""
1535
- "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1536
- "taxonomies. You can recreate your taxonomies and the terms will return. "
1537
- "Changing the name, after adding terms to the taxonomy, will not update the "
1538
- "terms in the database."
1539
- msgstr ""
1540
- "Das Löschen einer benutzerdefinierten Taxonomie führt %sNICHT%s zur "
1541
- "Entfernung von Begriffen die zu diesen Taxonomien hinzugefügt wurden. Du "
1542
- "kannst Deine Taxonomien leicht erneut erstellen und die bereits eingegebenen "
1543
- "Inhalte sind wieder sicht- und bearbeitbar. Sollte der Namen, nachdem die "
1544
- "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1545
- "Begriffe nicht in der Datenbank aktualisiert."
1546
-
1547
- #: ../inc/taxonomies.php:564
1548
  msgid "Please provide a taxonomy to delete"
1549
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1550
 
1551
- #: ../inc/taxonomies.php:615
1552
  msgid "Please provide a taxonomy name"
1553
  msgstr "Gib bitte einen Taxonomie-Namen an"
1554
 
1555
- #: ../inc/taxonomies.php:631
1556
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1557
  msgstr ""
1558
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1559
  "Kurzlinks"
1560
 
1561
- #: ../inc/taxonomies.php:637
1562
  #, php-format
1563
  msgid "Please choose a different taxonomy name. %s is already used."
1564
  msgstr ""
1565
  "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1566
 
1567
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
1568
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
1569
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
1570
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
1571
  msgid "Whether posts of this type should be shown in the admin UI"
1572
  msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
1573
 
1574
- #, fuzzy
1575
- #~ msgid "Post Type"
1576
- #~ msgstr "Post Type hinzufügen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1577
 
1578
- #, fuzzy
1579
- #~ msgid "Taxonomy"
1580
- #~ msgstr "Neue Taxonomie hinzufügen"
1581
 
1582
  #~ msgid "Whether to generate a default UI for managing this post type"
1583
  #~ msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.1.0\n"
4
+ "POT-Creation-Date: 2015-06-11 17:08+0100\n"
5
+ "PO-Revision-Date: 2015-06-11 17:08+0100\n"
6
+ "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
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.1\n"
14
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
15
  "esc_html__;esc_html_e;esc_html_x\n"
16
+ "X-Poedit-Basepath: ../\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: custom-post-type-ui.php:60
22
  msgid "Custom Post Types"
23
  msgstr "Custom Post Types"
24
 
25
+ #: custom-post-type-ui.php:60
26
  msgid "CPT UI"
27
  msgstr "CPT UI"
28
 
29
+ #: custom-post-type-ui.php:61
30
+ msgid "Add/Edit Post Types"
31
+ msgstr "Post Types hinzufügen/editieren"
32
+
33
+ #: custom-post-type-ui.php:62
34
+ msgid "Add/Edit Taxonomies"
35
+ msgstr "Taxonomien hinzufügen/editieren"
36
+
37
+ #: custom-post-type-ui.php:63
38
+ msgid "Registered Types and Taxes"
39
+ msgstr "Registrierte Post Types und Taxonomien"
40
+
41
+ #: custom-post-type-ui.php:63
42
+ msgid "Registered Types/Taxes"
43
+ msgstr "Registrierte Post Types/Taxonomien"
44
+
45
+ #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
46
+ msgid "Import/Export"
47
+ msgstr "Import/Export"
48
+
49
+ #: custom-post-type-ui.php:65
50
+ msgid "Help/Support"
51
+ msgstr "Hilfe/Support"
52
+
53
+ #: custom-post-type-ui.php:69
54
+ msgid "About CPT UI"
55
+ msgstr "Über CPT UI"
56
+
57
+ #. Plugin Name of the plugin/theme
58
+ #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
59
  msgid "Custom Post Type UI"
60
  msgstr "Custom Post Type UI"
61
 
62
+ #: custom-post-type-ui.php:342
63
  msgid ""
64
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
65
  "with our plugin provides efficiency and speed in creating post types and "
70
  "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
71
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
72
 
73
+ #: custom-post-type-ui.php:348
74
+ msgid "Post type migration"
75
+ msgstr "Post Type Migrierung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "Bisher war es so, sobald Du den Kurzlink eines Post Types verändert hast, "
85
+ "verlorst Du den direkten Zugriff auf alle seine Beiträge und musstest diese "
86
+ "anderweitig wiederherstellen. Wir haben jetzt die Unterstützung für die "
87
+ "Migration von Beiträgen aus dem alten Post Type in den neu umbenannten "
88
+ "hinzugefügt."
89
+
90
+ #: custom-post-type-ui.php:352
91
+ msgid "UI Refinement"
92
+ msgstr "Verbesserte Benutzeroberfläche"
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
+ "Nach dem Feedback zu den Änderungen in 1.0.x, haben wir die "
101
+ "Benutzeroberfläche weiter vereinfacht um die Anzahl der notwendigen "
102
+ "Mausklicks zur Verwaltung Deiner Post Types und Taxonomien weiter zu "
103
+ "minimieren."
104
 
105
+ #: custom-post-type-ui.php:356
106
+ msgid "Registered Post Type and Taxonomy Listings"
107
+ msgstr "Listen der registrierten Post Types und Taxonomien"
108
 
109
+ #: custom-post-type-ui.php:357
110
+ msgid ""
111
+ "We are bringing back the listing of all CPTUI-registered post types and "
112
+ "taxonomies for easier quick view of what you have going."
113
+ msgstr ""
114
+ "Wir bringen die Listendarstellung aller durch CPT UI registrierten Post "
115
+ "Types und Taxonomien zurück, damit Du leichter den Überblick behältst."
116
 
117
+ #: custom-post-type-ui.php:362
118
  msgid "Help Support This Plugin!"
119
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
120
 
121
+ #: custom-post-type-ui.php:366
122
  msgid "Professional WordPress<br />Third Edition"
123
+ msgstr "Professional WordPress<br />(Dritte Auflage)"
124
 
125
+ #: custom-post-type-ui.php:371
126
  msgid ""
127
  "The leading book on WordPress design and development! Brand new third "
128
  "edition!"
130
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
131
  "Auflage!"
132
 
133
+ #: custom-post-type-ui.php:374
134
  msgid "Professional WordPress<br />Plugin Development"
135
  msgstr "Professional WordPress<br />Plugin Development"
136
 
137
+ #: custom-post-type-ui.php:379
138
  msgid "Highest rated WordPress development book on Amazon!"
139
  msgstr ""
140
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
141
  "Amazon!"
142
 
143
+ #: custom-post-type-ui.php:382
144
  msgid "PayPal Donation"
145
  msgstr "PayPal Spende"
146
 
147
+ #: custom-post-type-ui.php:386
 
 
 
 
148
  msgid "PayPal - The safer, easier way to pay online!"
149
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
150
 
151
+ #: custom-post-type-ui.php:389
152
+ msgid "Please donate to the development of Custom Post Type UI:"
153
+ msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
154
+
155
+ #: custom-post-type-ui.php:415
156
  #, php-format
157
+ msgid "%s version %s by %s"
158
+ msgstr "%s Version %s von den %s"
159
 
160
+ #: custom-post-type-ui.php:426
161
  msgid "Please Report Bugs"
162
  msgstr "Bitte Fehler melden"
163
 
164
+ #: custom-post-type-ui.php:429
165
  msgid "Follow on Twitter:"
166
  msgstr "Auf Twitter folgen:"
167
 
168
+ #: custom-post-type-ui.php:493
 
 
 
 
169
  msgid "Manage Taxonomies"
170
  msgstr "Verwalte Taxonomien"
171
 
172
+ #: custom-post-type-ui.php:497
173
  msgid "Manage Post Types"
174
  msgstr "Verwalte Post Types"
175
 
176
+ #: custom-post-type-ui.php:523
177
  msgid "Add New Post Type"
178
  msgstr "Neuen Post Type hinzufügen"
179
 
180
+ #: custom-post-type-ui.php:526
181
  msgid "Edit Post Types"
182
  msgstr "Post Types bearbeiten"
183
 
184
+ #: custom-post-type-ui.php:530
185
  msgid "Add New Taxonomy"
186
  msgstr "Neue Taxonomie hinzufügen"
187
 
188
+ #: custom-post-type-ui.php:533
189
  msgid "Edit Taxonomies"
190
  msgstr "Taxonomien bearbeiten"
191
 
192
+ #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
193
+ #: inc/listings.php:224
194
  msgid "Post Types"
195
  msgstr "Post Types"
196
 
197
+ #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
198
+ #: inc/listings.php:122 inc/listings.php:132
199
  msgid "Taxonomies"
200
  msgstr "Taxonomien"
201
 
202
+ #: custom-post-type-ui.php:539
203
  msgid "Get Code"
204
+ msgstr "Code erhalten"
205
 
206
+ #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
207
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:373
208
+ #: inc/taxonomies.php:338
209
  msgid "Settings"
210
  msgstr "Einstellungen"
211
 
212
+ #: custom-post-type-ui.php:622
213
  msgid "Help"
214
  msgstr "Hilfe"
215
 
216
+ #: custom-post-type-ui.php:650
217
  #, php-format
218
  msgid "%s has been successfully added"
219
  msgstr "%s wurde erfolgreich hinzugefügt"
220
 
221
+ #: custom-post-type-ui.php:652
222
  #, php-format
223
  msgid "%s has failed to be added"
224
  msgstr "%s konnte nicht hinzugefügt werden"
225
 
226
+ #: custom-post-type-ui.php:656
227
  #, php-format
228
  msgid "%s has been successfully updated"
229
  msgstr "%s wurde erfolgreich aktualisiert"
230
 
231
+ #: custom-post-type-ui.php:658
232
  #, php-format
233
  msgid "%s has failed to be updated"
234
  msgstr "%s konnte nicht aktualisiert werden"
235
 
236
+ #: custom-post-type-ui.php:662
237
  #, php-format
238
  msgid "%s has been successfully deleted"
239
  msgstr "%s wurde erfolgreich gelöscht"
240
 
241
+ #: custom-post-type-ui.php:664
242
  #, php-format
243
  msgid "%s has failed to be deleted"
244
  msgstr "%s konnte nicht gelöscht werden"
245
 
246
+ #: custom-post-type-ui.php:668
247
  #, php-format
248
  msgid "%s has been successfully imported"
249
  msgstr "%s wurde erfolgreich importiert"
250
 
251
+ #: custom-post-type-ui.php:670
252
  #, php-format
253
  msgid "%s has failed to be imported"
254
  msgstr "%s konnte nicht importiert werden"
255
 
256
+ #: custom-post-type-ui.php:753 custom-post-type-ui.php:770
257
  #, php-format
258
  msgid "Add new %s"
259
  msgstr "Neue %s hinzufügen"
260
 
261
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:768
262
  #, php-format
263
  msgid "Edit %s"
264
  msgstr "%s bearbeiten"
265
 
266
+ #: custom-post-type-ui.php:755
267
  #, php-format
268
  msgid "New %s"
269
  msgstr "%s hinzufügen"
270
 
271
+ #: custom-post-type-ui.php:756
272
  #, php-format
273
  msgid "View %s"
274
  msgstr "%s anzeigen"
275
 
276
+ #: custom-post-type-ui.php:757 custom-post-type-ui.php:765
277
  #, php-format
278
  msgid "All %s"
279
  msgstr "Alle %s"
280
 
281
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:763
282
  #, php-format
283
  msgid "Search %s"
284
  msgstr "%s durchsuchen"
285
 
286
+ #: custom-post-type-ui.php:759
287
  #, php-format
288
  msgid "No %s found."
289
  msgstr "Keine %s gefunden."
290
 
291
+ #: custom-post-type-ui.php:760
292
  #, php-format
293
  msgid "No %s found in trash."
294
  msgstr "Keine %s im Papierkorb gefunden."
295
 
296
+ #: custom-post-type-ui.php:764
297
  #, php-format
298
  msgid "Popular %s"
299
  msgstr "Beliebte %s"
300
 
301
+ #: custom-post-type-ui.php:766
302
  #, php-format
303
  msgid "Parent %s"
304
+ msgstr "Übergeordnet %s"
305
 
306
+ #: custom-post-type-ui.php:767
307
  #, php-format
308
  msgid "Parent %s:"
309
+ msgstr "Übergeordnet %s:"
310
 
311
+ #: custom-post-type-ui.php:769
312
  #, php-format
313
  msgid "Update %s"
314
  msgstr "%s aktualisieren"
315
 
316
+ #: custom-post-type-ui.php:771
317
  #, php-format
318
  msgid "New %s name"
319
  msgstr "Neuer %s Name"
320
 
321
+ #: custom-post-type-ui.php:772
322
  #, php-format
323
  msgid "Separate %s with commas"
324
  msgstr "%s mit Kommas trennen"
325
 
326
+ #: custom-post-type-ui.php:773
327
  #, php-format
328
  msgid "Add or remove %s"
329
  msgstr "%s hinzufügen oder entfernen"
330
 
331
+ #: custom-post-type-ui.php:774
332
  #, php-format
333
  msgid "Choose from the most used %s"
334
  msgstr "Aus den am häufigsten verwendeten %s auswählen"
335
 
336
+ #: inc/import_export.php:42
337
  msgid ""
338
  "If you are wanting to migrate registered post types or taxonomies from this "
339
  "site to another, that will also use Custom Post Type UI, use the import and "
342
  msgstr ""
343
  "Für den Fall dass Du Post Types oder Taxonomien von dieser Webseite auf eine "
344
  "andere, die ebenso Custom Post Type UI nutzt, übertragen willst, benutze "
345
+ "bitte die Import und Export Funktion. Solltest Du Custom Post Type UI den "
346
+ "Rücken zukehren wollen dann folge bitte den Informationen im \"Code "
347
+ "erhalten“-Reiter."
348
 
349
+ #: inc/import_export.php:45
350
  msgid "NOTE"
351
  msgstr "Anmerkung"
352
 
353
+ #: inc/import_export.php:46
354
  msgid "This will not export the associated posts, just the settings."
355
  msgstr ""
356
  "Es werden nur die Einstellungen exportiert, nicht die dazugehörigen Beiträge."
357
 
358
+ #: inc/import_export.php:53
359
  msgid "Import Post Types"
360
  msgstr "Post Types importieren"
361
 
362
+ #: inc/import_export.php:55 inc/import_export.php:80
363
  msgid "Paste content here."
364
  msgstr "Inhalt hier einfügen."
365
 
366
+ #: inc/import_export.php:56 inc/import_export.php:81
367
  msgid "Note:"
368
  msgstr "Anmerkung:"
369
 
370
+ #: inc/import_export.php:56 inc/import_export.php:81
371
  msgid "Importing will overwrite previous registered settings."
372
  msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
373
 
374
+ #: inc/import_export.php:57
375
  msgid ""
376
  "To import post types from a different WordPress site, paste the exported "
377
  "content from that site and click the \"Import\" button."
378
  msgstr ""
379
  "Um die Post Types einer anderen WordPress-Seite zu importieren, füge deren "
380
+ "exportierte Inhalte ein und klicke den \"Importieren“-Button."
381
 
382
+ #: inc/import_export.php:58 inc/import_export.php:83
383
  msgid "Import"
384
  msgstr "Importieren"
385
 
386
+ #: inc/import_export.php:62
387
  msgid "Export Post Types"
388
  msgstr "Post Types exportieren"
389
 
390
+ #: inc/import_export.php:68
391
  msgid "No post types registered yet."
392
  msgstr "Es wurden noch keine Post Types erstellt."
393
 
394
+ #: inc/import_export.php:71 inc/import_export.php:96
395
  msgid ""
396
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
397
  "(Mac)."
398
  msgstr ""
399
+ "Um die System-Informationen zu kopieren, klicke unten und drücken dann Ctrl "
400
+ "+ C am PC oder Cmd + C am Mac."
401
 
402
+ #: inc/import_export.php:72
403
  msgid ""
404
  "Use the content above to import current post types into a different "
405
  "WordPress site. You can also use this to simply back up your post type "
407
  msgstr ""
408
  "Benutze die Inhalte des \"Post Types exportieren\"-Feldes um die aktuellen "
409
  "Post Types in eine andere WordPress Webseite zu importieren. Du kannst dies "
410
+ "ebenso einfach dazu benutzen um Deine Post Type-Einstellungen zu sichern."
411
 
412
+ #: inc/import_export.php:78
413
  msgid "Import Taxonomies"
414
  msgstr "Taxonomien importieren"
415
 
416
+ #: inc/import_export.php:82
417
  msgid ""
418
  "To import taxonomies from a different WordPress site, paste the exported "
419
  "content from that site and click the \"Import\" button."
420
  msgstr ""
421
  "Um Taxonomien von einer anderen WordPress Seite zu importieren, füge über "
422
  "die Zwischenablage die exportierten Inhalte dieser Seite ein und klicke den "
423
+ "\"Importieren“-Button."
424
 
425
+ #: inc/import_export.php:87
426
  msgid "Export Taxonomies"
427
  msgstr "Taxonomien exportieren"
428
 
429
+ #: inc/import_export.php:93
430
  msgid "No taxonomies registered yet."
431
  msgstr "Es wurden noch keine Taxonomien definiert."
432
 
433
+ #: inc/import_export.php:97
434
  msgid ""
435
  "Use the content above to import current taxonomies into a different "
436
  "WordPress site. You can also use this to simply back up your taxonomy "
438
  msgstr ""
439
  "Benutze die Inhalte des \"Taxonomie exportieren\"-Feldes um die aktuellen "
440
  "Taxonomien in eine andere WordPress Webseite zu importieren. Du kannst dies "
441
+ "ebenso einfach dazu benutzen um Deine Taxonomie-Einstellungen zu sichern."
442
 
443
+ #: inc/import_export.php:105
444
  msgid "Get Post Type and Taxonomy Code"
445
  msgstr "Erhalte Post Type- und Taxonomie-Code"
446
 
447
+ #: inc/import_export.php:107
448
  msgid "All CPT UI Post Types"
449
  msgstr "Alle CPT UI-Post Types"
450
 
451
+ #: inc/import_export.php:108 inc/import_export.php:112
452
  msgid "Copy/paste the code below into your functions.php file."
453
  msgstr ""
454
  "Kopiere den Code in die Zwischenablage und füge ihn im Anschluss in Deine "
455
  "functions.php-Datei ein."
456
 
457
+ #: inc/import_export.php:111
458
  msgid "All CPT UI Taxonomies"
459
  msgstr "Alle CPT UI-Taxonomien"
460
 
461
+ #: inc/import_export.php:142
462
  msgid "No taxonomies to display at this time"
463
  msgstr "Es gibt keine Taxonomien zum Anzeigen."
464
 
465
+ #: inc/import_export.php:241
466
  msgid "No post types to display at this time"
467
  msgstr "Es gibt keine Post Types zum Anzeigen."
468
 
469
+ #: inc/import_export.php:367
470
  msgid "Post types"
471
  msgstr "Post Types"
472
 
473
+ #: inc/listings.php:10
474
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
475
+ msgstr "In Custom Post Type UI registrierte Post Types und Taxonomien."
476
+
477
+ #: inc/listings.php:18 inc/listings.php:134
478
+ #, php-format
479
+ msgid "Total count: %d"
480
+ msgstr "Anzahl: %d"
481
+
482
+ #: inc/listings.php:31 inc/listings.php:119
483
+ msgid "Post Type"
484
+ msgstr "Post Type"
485
+
486
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
487
+ msgid "Supports"
488
+ msgstr "Unterstützt"
489
+
490
+ #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
491
+ #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
492
+ msgid "Labels"
493
+ msgstr "Beschriftungen"
494
+
495
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
496
+ msgid "Edit"
497
+ msgstr "Bearbeiten"
498
+
499
+ #: inc/listings.php:75
500
+ msgid "View frontend archive"
501
+ msgstr "Frontend-Archiv anzeigen"
502
+
503
+ #: inc/listings.php:108 inc/listings.php:211
504
+ msgid "No custom labels to display"
505
+ msgstr "Keine benutzerdefinierten Beschriftungen zum Anzeigen"
506
+
507
+ #: inc/listings.php:147 inc/listings.php:222
508
+ msgid "Taxonomy"
509
+ msgstr "Taxonomie"
510
+
511
+ #: inc/post-types.php:30 inc/taxonomies.php:25
512
  msgid "Are you sure you want to delete this?"
513
+ msgstr "Bist Du sicher, dass Du dies löschen möchtest?"
514
+
515
+ #: inc/post-types.php:86
516
+ msgid ""
517
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
518
+ "registers a new post type entry for your install."
519
+ msgstr ""
520
+ "BEARBEITE NICHT den Post Type-Kurzlink solange dies nicht unbedingt "
521
+ "notwendig ist. Die Änderung des Namens registriert einen neue Post Type "
522
+ "Eintrag für Deine Installation."
523
 
524
+ #: inc/post-types.php:87
525
  msgid ""
526
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
527
+ "slugs and update post types for existing posts."
528
  msgstr ""
529
+ "Benutze die Checkbox über den Speichern- und Löschen-Buttons falls Du den "
530
+ "Kurzlink ändern willst und den Post Type für bereits existierende Beiträge "
531
+ "anpassen willst."
532
 
533
+ #: inc/post-types.php:88 inc/taxonomies.php:84
534
+ msgid "Select: "
535
  msgstr "Auswählen"
536
 
537
+ #: inc/post-types.php:120
538
  msgid "Post Type Slug"
539
  msgstr "Post Type-Kurzlink"
540
 
541
+ #: inc/post-types.php:121
542
  msgid "(e.g. movie)"
543
  msgstr "(z. B. film)"
544
 
545
+ #: inc/post-types.php:122
546
  msgid ""
547
  "The post type name. Used to retrieve custom post type content. Should be "
548
  "short and unique"
550
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
551
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
552
 
553
+ #: inc/post-types.php:133 inc/taxonomies.php:124
554
  msgid "Plural Label"
555
  msgstr "Beschriftung (Plural)"
556
 
557
+ #: inc/post-types.php:134
558
  msgid "(e.g. Movies)"
559
  msgstr "(z. B. Filme)"
560
 
561
+ #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
562
+ #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
563
+ #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
564
+ #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
565
+ #: inc/post-types.php:364
 
 
566
  msgid "Post type label. Used in the admin menu for displaying post types."
567
  msgstr ""
568
+ "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
569
+ "verwendet den Post Type anzuzeigen."
570
 
571
+ #: inc/post-types.php:145 inc/taxonomies.php:133
572
  msgid "Singular Label"
573
  msgstr "Beschriftung (Singular)"
574
 
575
+ #: inc/post-types.php:146
576
  msgid "(e.g. Movie)"
577
  msgstr "(z. B. Film)"
578
 
579
+ #: inc/post-types.php:147
580
  msgid ""
581
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
582
  "needed."
584
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
585
  "Beschriftungen in der Einzahl benötigt werden."
586
 
587
+ #: inc/post-types.php:163
588
  msgid "Description"
589
  msgstr "Beschreibung"
590
 
591
+ #: inc/post-types.php:164
592
  msgid ""
593
  "Custom Post Type Description. Describe what your custom post type is used "
594
  "for."
596
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
597
  "verwendet wird."
598
 
599
+ #: inc/post-types.php:176
600
+ msgid "Migrate posts to newly renamed post type?"
601
+ msgstr ""
602
+ "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
603
+
604
+ #: inc/post-types.php:177
605
+ msgid "Check this to migrate posts if and when renaming your post type."
606
+ msgstr ""
607
+ "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
608
+ "Type umbenennen willst."
609
+
610
+ #: inc/post-types.php:186
611
+ msgid "Save Post Type"
612
+ msgstr "Post Type speichern"
613
 
614
+ #: inc/post-types.php:187
615
  msgid "Delete Post Type"
616
  msgstr "Post Type löschen"
617
 
618
+ #: inc/post-types.php:189
619
  msgid "Add Post Type"
620
  msgstr "Post Type hinzufügen"
621
 
622
+ #: inc/post-types.php:200 inc/taxonomies.php:185
623
+ msgid "Starter Notes"
624
+ msgstr "Tips für Einsteiger"
625
+
626
+ #: inc/post-types.php:203
627
+ #, php-format
628
+ msgid ""
629
+ "Post Type names should have %smax 20 characters%s, and only contain "
630
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
631
+ "letters that do not have accents. Reserved names: post, page, attachment, "
632
+ "revision, nav_menu_item."
633
  msgstr ""
634
+ "Post Type-Namen dürfen %smaximal 20 Zeichen%s lang sein und nur "
635
+ "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
636
+ "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen. "
637
+ "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
638
+ "revision, nav_menu_item."
639
 
640
+ #: inc/post-types.php:204
641
+ #, php-format
642
+ msgid ""
643
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
644
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
645
+ "values. Labels, if left blank, will be automatically created based on the "
646
+ "post type name. Hover over the question mark for more details."
647
+ msgstr ""
648
+ "Solltest Du mit der Nutzung der erweiterten Post Type-Einstellungen nicht "
649
+ "vertraut sein, dann trage nur Werte in das %sPost Type-Namen%s- sowie das "
650
+ "%sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
651
+ "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
652
+ "wurden, werden selbige automatisch, basierend auf dem Post Type-Namen, "
653
+ "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
654
+ "roten Fragezeichen."
655
 
656
+ #: inc/post-types.php:205
657
+ #, php-format
658
+ msgid ""
659
+ "Deleting custom post types will %sNOT%s delete any content into the database "
660
+ "or added to those post types. You can easily recreate your post types and "
661
+ "the content will still exist."
662
+ msgstr ""
663
+ "Das Löschen eines Post Types führt %sNICHT%s zur Entfernung von Inhalten aus "
664
+ "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
665
+ "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
666
 
667
+ #: inc/post-types.php:219 inc/taxonomies.php:206
668
  msgid "Menu Name"
669
  msgstr "Menü-Name"
670
 
671
+ #: inc/post-types.php:220
672
  msgid "Custom menu name for your custom post type."
673
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
674
 
675
+ #: inc/post-types.php:224
676
  msgid "(e.g. My Movies)"
677
  msgstr "(z. B. Mein Film)"
678
 
679
+ #: inc/post-types.php:231 inc/taxonomies.php:215
680
  msgid "All Items"
681
  msgstr "Alle Einträge"
682
 
683
+ #: inc/post-types.php:236
684
  msgid "(e.g. All Movies)"
685
  msgstr "(z. B. Alle Filme)"
686
 
687
+ #: inc/post-types.php:243
688
  msgid "Add New"
689
  msgstr "Neu"
690
 
691
+ #: inc/post-types.php:248
692
  msgid "(e.g. Add New)"
693
  msgstr "(z. B. Neuen hinzufügen)"
694
 
695
+ #: inc/post-types.php:255 inc/taxonomies.php:251
696
  msgid "Add New Item"
697
  msgstr "Neuen Eintrag erstellen"
698
 
699
+ #: inc/post-types.php:260
700
  msgid "(e.g. Add New Movie)"
701
  msgstr "(z. B. Neuen Film hinzufügen)"
702
 
703
+ #: inc/post-types.php:272
 
 
 
 
704
  msgid "(e.g. Edit)"
705
  msgstr "(z. B. Bearbeiten)"
706
 
707
+ #: inc/post-types.php:279 inc/taxonomies.php:224
708
  msgid "Edit Item"
709
  msgstr "Eintrag bearbeiten"
710
 
711
+ #: inc/post-types.php:284
712
  msgid "(e.g. Edit Movie)"
713
  msgstr "(z. B. Film bearbeiten)"
714
 
715
+ #: inc/post-types.php:291
716
  msgid "New Item"
717
  msgstr "Neuer Eintrag"
718
 
719
+ #: inc/post-types.php:296
720
  msgid "(e.g. New Movie)"
721
  msgstr "(z. B. Neuer Film)"
722
 
723
+ #: inc/post-types.php:303
724
  msgid "View"
725
  msgstr "Anzeigen"
726
 
727
+ #: inc/post-types.php:308
728
  msgid "(e.g. View)"
729
  msgstr "(z. B. Anzeigen)"
730
 
731
+ #: inc/post-types.php:315 inc/taxonomies.php:233
732
  msgid "View Item"
733
  msgstr "Eintrag anzeigen"
734
 
735
+ #: inc/post-types.php:320
736
  msgid "(e.g. View Movie)"
737
  msgstr "(z. B. Film anzeigen)"
738
 
739
+ #: inc/post-types.php:327
740
  msgid "Search Item"
741
  msgstr "Eintrag suchen"
742
 
743
+ #: inc/post-types.php:332
744
  msgid "(e.g. Search Movie)"
745
  msgstr "(z. B. Film suchen)"
746
 
747
+ #: inc/post-types.php:339
748
  msgid "Not Found"
749
  msgstr "Nicht gefunden"
750
 
751
+ #: inc/post-types.php:344
752
  msgid "(e.g. No Movies found)"
753
  msgstr "(z. B. Keine Filme gefunden)"
754
 
755
+ #: inc/post-types.php:351
756
  msgid "Not Found in Trash"
757
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
758
 
759
+ #: inc/post-types.php:356
760
  msgid "(e.g. No Movies found in Trash)"
761
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
762
 
763
+ #: inc/post-types.php:363
764
  msgid "Parent"
765
+ msgstr "Übergeordnet"
766
 
767
+ #: inc/post-types.php:368
768
  msgid "(e.g. Parent Movie)"
769
+ msgstr "(z. B. Übergeordneter Film)"
770
+
771
+ #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
772
+ #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
773
+ #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
774
+ #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
775
+ #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
776
+ #: inc/taxonomies.php:464 tests/CPTUI-Admin-UI-Inputs-Test.php:105
777
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
778
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
779
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
 
 
 
780
  msgid "False"
781
  msgstr "deaktiviert"
782
 
783
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
784
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
785
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
786
+ #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
787
+ #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
788
+ #: inc/taxonomies.php:465 tests/CPTUI-Admin-UI-Inputs-Test.php:106
789
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
790
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
791
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
 
 
 
792
  msgid "True"
793
  msgstr "aktiviert"
794
 
795
+ #: inc/post-types.php:391 tests/CPTUI-Admin-UI-Inputs-Test.php:114
796
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
797
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
798
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
799
  msgid "Public"
800
  msgstr "Öffentlich"
801
 
802
+ #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
803
+ #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
804
+ #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
805
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
806
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
807
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
808
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:242
 
809
  msgid "(default: True)"
810
  msgstr "(Voreinstellung: aktiviert)"
811
 
812
+ #: inc/post-types.php:393
813
+ msgid ""
814
+ "Whether posts of this type should be shown in the admin UI and is publicly "
815
+ "queryable."
816
+ msgstr ""
817
+ "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
818
+ "öffentlich durchsuchbar sind."
819
 
820
+ #: inc/post-types.php:411 inc/taxonomies.php:370
821
  msgid "Show UI"
822
  msgstr "Benutzeroberfläche anzeigen"
823
 
824
+ #: inc/post-types.php:413
825
  msgid "Whether to generate a default UI for managing this post type."
826
  msgstr ""
827
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
828
+ "angelegt werden."
829
 
830
+ #: inc/post-types.php:421
831
  msgid "Has Archive"
832
+ msgstr "Hat ein Archiv"
833
 
834
+ #: inc/post-types.php:422
835
+ msgid "Whether the post type will have a post type archive URL."
836
+ msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
837
 
838
+ #: inc/post-types.php:423
839
  msgid "If left blank, the archive slug will default to the post type slug."
840
  msgstr ""
841
+ "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
842
+ "Post Type-Kurzlink gesetzt."
843
 
844
+ #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
845
+ #: inc/taxonomies.php:354 inc/taxonomies.php:474
 
846
  msgid "(default: False)"
847
  msgstr "(Voreinstellung: deaktiviert)"
848
 
849
+ #: inc/post-types.php:449
850
+ msgid "Slug to be used for archive URL."
851
+ msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
852
 
853
+ #: inc/post-types.php:469
854
  msgid "Exclude From Search"
855
  msgstr "Von der Suche ausschließen"
856
 
857
+ #: inc/post-types.php:471
858
+ msgid ""
859
+ "Whether to exclude posts with this post type from front end search results."
860
+ msgstr ""
861
+ "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
862
+ "ausgeschlossen werden sollen."
863
 
864
+ #: inc/post-types.php:482
865
  msgid "Capability Type"
866
+ msgstr "Fähigkeiten"
867
 
868
+ #: inc/post-types.php:483
869
  msgid "The post type to use for checking read, edit, and delete capabilities"
870
  msgstr ""
871
+ "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
872
+ "Bearbeiten und Löschen zu prüfen"
873
 
874
+ #: inc/post-types.php:500 inc/taxonomies.php:353
875
  msgid "Hierarchical"
876
  msgstr "Hierarchisch"
877
 
878
+ #: inc/post-types.php:502
879
  msgid "Whether the post type can have parent-child relationships"
880
+ msgstr "Darf der Post Type hierarchische Beziehungen haben"
881
 
882
+ #: inc/post-types.php:520 inc/taxonomies.php:413
883
  msgid "Rewrite"
884
  msgstr "Rewrite"
885
 
886
+ #: inc/post-types.php:522
887
+ msgid "Whether or not WordPress should use rewrites for this post type"
888
+ msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
889
 
890
+ #: inc/post-types.php:533 inc/taxonomies.php:424
891
  msgid "Custom Rewrite Slug"
892
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
893
 
894
+ #: inc/post-types.php:534
895
+ msgid "(default: post type slug)"
896
+ msgstr "(Voreinstellung: Post Type-Kurzlink)"
897
 
898
+ #: inc/post-types.php:535
899
+ msgid "Custom post type slug to use instead of the default."
900
  msgstr ""
901
+ "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
902
+ "benutzt werden soll."
903
 
904
+ #: inc/post-types.php:552
905
  msgid "With Front"
906
+ msgstr "Front Base voranstellen"
907
 
908
+ #: inc/post-types.php:554 inc/taxonomies.php:441
 
909
  msgid "Should the permastruct be prepended with the front base."
910
+ msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
911
 
912
+ #: inc/post-types.php:572 inc/taxonomies.php:387
913
  msgid "Query Var"
914
+ msgstr "Abfrage Variable"
915
 
916
+ #: inc/post-types.php:574
917
+ msgid "Sets the query_var key for this post type."
918
+ msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
919
+
920
+ #: inc/post-types.php:582
921
  msgid "Menu Position"
922
  msgstr "Menü Position"
923
 
924
+ #: inc/post-types.php:583
925
  msgid ""
926
  "The position in the menu order the post type should appear. show_in_menu "
927
  "must be true."
929
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
930
  "anzeigen\" muss dafür aktiviert sein."
931
 
932
+ #: inc/post-types.php:584
933
  msgid ""
934
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
935
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
937
  msgstr ""
938
  "<a href=\"http://codex.wordpress.org/Function_Reference/"
939
  "register_post_type#Parameters\">Lies mehr </a> zu den verfügbaren "
940
+ "Einstellungsmöglichkeiten für die „Menü Position\" Funktion. Die möglichen "
941
  "Werte reichen von 5 bis 100."
942
 
943
+ #: inc/post-types.php:599
 
 
 
 
 
944
  msgid "Show in Menu"
945
  msgstr "Im Menü anzeigen"
946
 
947
+ #: inc/post-types.php:600
948
  msgid ""
949
+ "Whether to show the post type in the admin menu and where to show that menu."
950
+ msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
 
 
 
951
 
952
+ #: inc/post-types.php:601
953
  msgid ""
954
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
955
  "php\" is indicated for second input, post type will be sub menu of that."
956
  msgstr ""
957
  "\"Benutzeroberfläche anzeigen\" muss \"aktiviert\" sein. Sollte eine Top-"
958
+ "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
959
+ "angegeben sein wird der Post Type als Untermenü davon angezeigt."
960
 
961
+ #: inc/post-types.php:627
962
+ msgid "Top-level page file name to make post type a sub-menu of."
963
+ msgstr ""
964
+ "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
965
 
966
+ #: inc/post-types.php:639
967
  msgid "Menu Icon"
968
  msgstr "Menü-Icon"
969
 
970
+ #: inc/post-types.php:640
971
  msgid "(Full URL for icon or Dashicon class)"
972
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
973
 
974
+ #: inc/post-types.php:641
975
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
976
  msgstr ""
977
+ "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
978
+ "Dashicon-Klasse."
979
 
980
+ #: inc/post-types.php:654
 
 
 
 
981
  msgid "Title"
982
  msgstr "Titel"
983
 
984
+ #: inc/post-types.php:655
985
  msgid "Adds the title meta box when creating content for this custom post type"
986
  msgstr ""
987
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
988
  "erstellt werden"
989
 
990
+ #: inc/post-types.php:669
991
  msgid "Editor"
992
  msgstr "Text-Editor"
993
 
994
+ #: inc/post-types.php:670
995
  msgid ""
996
  "Adds the content editor meta box when creating content for this custom post "
997
  "type"
999
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
1000
  "Type erstellt werden"
1001
 
1002
+ #: inc/post-types.php:684
1003
  msgid "Excerpt"
1004
  msgstr "Auszug"
1005
 
1006
+ #: inc/post-types.php:685
1007
  msgid ""
1008
  "Adds the excerpt meta box when creating content for this custom post type"
1009
  msgstr ""
1010
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1011
  "erstellt werden"
1012
 
1013
+ #: inc/post-types.php:699
1014
  msgid "Trackbacks"
1015
  msgstr "Trackbacks"
1016
 
1017
+ #: inc/post-types.php:700
1018
  msgid ""
1019
  "Adds the trackbacks meta box when creating content for this custom post type"
1020
  msgstr ""
1021
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1022
  "Type erstellt werden"
1023
 
1024
+ #: inc/post-types.php:714
1025
  msgid "Custom Fields"
1026
  msgstr "Eigene Felder"
1027
 
1028
+ #: inc/post-types.php:715
1029
  msgid ""
1030
  "Adds the custom fields meta box when creating content for this custom post "
1031
  "type"
1033
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1034
  "Type erstellt werden"
1035
 
1036
+ #: inc/post-types.php:729
1037
  msgid "Comments"
1038
  msgstr "Kommentare"
1039
 
1040
+ #: inc/post-types.php:730
1041
  msgid ""
1042
  "Adds the comments meta box when creating content for this custom post type"
1043
  msgstr ""
1044
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1045
  "Type erstellt werden"
1046
 
1047
+ #: inc/post-types.php:744
1048
  msgid "Revisions"
1049
  msgstr "Revisionen"
1050
 
1051
+ #: inc/post-types.php:745
1052
  msgid ""
1053
  "Adds the revisions meta box when creating content for this custom post type"
1054
  msgstr ""
1055
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1056
  "Type erstellt werden"
1057
 
1058
+ #: inc/post-types.php:759
1059
  msgid "Featured Image"
1060
  msgstr "Beitragsbild"
1061
 
1062
+ #: inc/post-types.php:760
1063
  msgid ""
1064
  "Adds the featured image meta box when creating content for this custom post "
1065
  "type"
1067
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1068
  "Type erstellt werden"
1069
 
1070
+ #: inc/post-types.php:774
1071
  msgid "Author"
1072
  msgstr "Autor"
1073
 
1074
+ #: inc/post-types.php:775
1075
  msgid ""
1076
  "Adds the author meta box when creating content for this custom post type"
1077
  msgstr ""
1078
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1079
  "erstellt werden"
1080
 
1081
+ #: inc/post-types.php:789
1082
  msgid "Page Attributes"
1083
  msgstr "Seiten Attribute"
1084
 
1085
+ #: inc/post-types.php:790
1086
  msgid ""
1087
  "Adds the page attribute meta box when creating content for this custom post "
1088
  "type"
1090
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1091
  "Post Type erstellt werden"
1092
 
1093
+ #: inc/post-types.php:804
1094
  msgid "Post Formats"
1095
  msgstr "Format"
1096
 
1097
+ #: inc/post-types.php:805
1098
  msgid "Adds post format support"
1099
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1100
 
1101
+ #: inc/post-types.php:810
1102
  msgid "Use the option below to explicitly set \"supports\" to false."
1103
  msgstr ""
1104
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1105
  "zu deaktivieren."
1106
 
1107
+ #: inc/post-types.php:818
1108
  msgid "None"
1109
  msgstr "Keine"
1110
 
1111
+ #: inc/post-types.php:819
1112
  msgid "Remove all support features"
1113
+ msgstr "Entfernt alle „Unterstützt“-Features"
 
 
 
 
 
 
 
 
 
1114
 
1115
+ #: inc/post-types.php:825
1116
+ msgid "Custom \"Supports\""
1117
+ msgstr "Benutzerdefinierte „Unterstützt“"
1118
 
1119
+ #: inc/post-types.php:826
 
1120
  msgid ""
1121
+ "Use this input to register custom \"supports\" values, separated by commas."
 
 
 
1122
  msgstr ""
1123
+ "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1124
+ "definieren welche durch Kommas getrennt sind."
 
 
 
1125
 
1126
+ #: inc/post-types.php:832
1127
+ msgid "Provide custom support slugs here."
1128
+ msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
 
 
 
 
 
 
 
 
 
 
 
 
1129
 
1130
+ #: inc/post-types.php:838
1131
+ msgid "Built-in Taxonomies"
1132
+ msgstr "Vorhandene Taxonomien"
1133
+
1134
+ #: inc/post-types.php:867 inc/taxonomies.php:167
1135
  #, php-format
1136
+ msgid "Adds %s support"
1137
+ msgstr "Fügt %s Unterstützung hinzu"
 
 
 
 
 
 
1138
 
1139
+ #: inc/post-types.php:966
1140
  msgid "Please provide a post type to delete"
1141
  msgstr "Bitte gib einen Post Type zum Löschen an"
1142
 
1143
+ #: inc/post-types.php:1026
1144
  msgid "Please provide a post type name"
1145
  msgstr "Bitte gib einen Namen für den Post Type an"
1146
 
1147
+ #: inc/post-types.php:1050
1148
  msgid "Please do not use quotes in post type names or rewrite slugs"
1149
  msgstr ""
1150
+ "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1151
  "Kurzlinks"
1152
 
1153
+ #: inc/post-types.php:1057
1154
  #, php-format
1155
  msgid "Please choose a different post type name. %s is already registered."
1156
  msgstr ""
1157
  "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1158
 
1159
+ #: inc/support.php:41
1160
  msgid "Custom Post Type UI Support"
1161
  msgstr "Custom Post Type UI Support"
1162
 
1163
+ #: inc/support.php:43
1164
  #, php-format
1165
  msgid ""
1166
  "Please note that this plugin will NOT handle display of registered post "
1172
  "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1173
  "unsere %s"
1174
 
1175
+ #: inc/support.php:44
1176
  msgid "Support Forums"
1177
  msgstr "Support Foren"
1178
 
1179
+ #: inc/support.php:50
1180
  msgid "General"
1181
  msgstr "Allgemein"
1182
 
1183
+ #: inc/support.php:53
1184
  msgid ""
1185
  "I changed my custom post type name and now I can not get to my posts. How do "
1186
  "I get them back?"
1188
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1189
  "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1190
 
1191
+ #: inc/support.php:54
1192
  msgid ""
1193
  "You can either change the custom post type name back to the original name or "
1194
  "try the Post Type Switcher plugin"
1196
  "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1197
  "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1198
 
1199
+ #: inc/support.php:59
1200
  msgid ""
1201
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1202
  "shown. How do I remove the duplicate?"
1204
  "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1205
  "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1206
 
1207
+ #: inc/support.php:60
1208
  msgid ""
1209
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1210
  "saved option which gets registered as its own post type or taxonomy. Since "
1216
  "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1217
  "ursprünglichen Eintrag löschen."
1218
 
1219
+ #: inc/support.php:63
1220
  msgid ""
1221
  "I have added post thumbnail and/or post format support to my post type, but "
1222
  "those do not appear when adding a post type post."
1225
  "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1226
  "mit diesem Post Type hinzufüge."
1227
 
1228
+ #: inc/support.php:64
1229
  msgid ""
1230
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1231
  msgstr ""
1232
  "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1233
  "Thumbnails\" aktiviert hat"
1234
 
1235
+ #: inc/support.php:69
1236
  msgid "Front-end Display"
1237
  msgstr "Front-End Anzeige"
1238
 
1239
+ #: inc/support.php:72
1240
  msgid "What template files should I edit to alter my post type display?"
1241
  msgstr ""
1242
  "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1243
  "Types zu verändern?"
1244
 
1245
+ #: inc/support.php:73
1246
  #, php-format
1247
  msgid ""
1248
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1251
  "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1252
  "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1253
 
1254
+ #: inc/support.php:80
1255
  msgid "How do I display my custom post type on my site?"
1256
  msgstr ""
1257
  "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1258
 
1259
+ #: inc/support.php:81
1260
  #, php-format
1261
  msgid ""
1262
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1268
  "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1269
  "\" lauten."
1270
 
1271
+ #: inc/support.php:87
1272
  msgid ""
1273
  "I have added categories and tags to my custom post type, but they do not "
1274
  "appear in the archives."
1276
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1277
  "sie werden nicht in den Archiven angezeigt."
1278
 
1279
+ #: inc/support.php:88
1280
  #, php-format
1281
  msgid ""
1282
  "You will need to add your newly created post type to the types that the "
1287
  "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1288
  "Tutorial dazu unter %s"
1289
 
1290
+ #: inc/support.php:97
1291
  msgid "Advanced"
1292
  msgstr "Erweitert"
1293
 
1294
+ #: inc/support.php:100
1295
  msgid "How do I add custom metaboxes to my post type?"
1296
  msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
1297
 
1298
+ #: inc/support.php:102
1299
  #, php-format
1300
  msgid ""
1301
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1304
  "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1305
  "WordPress\". Beides wird von den WebDevStudios entwickelt."
1306
 
1307
+ #: inc/support.php:108
1308
  msgid ""
1309
  "How do I add a newly registered taxonomy to a post type that already exists?"
1310
  msgstr ""
1311
  "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1312
  "bereits existiert?"
1313
 
1314
+ #: inc/support.php:110
1315
  #, php-format
1316
  msgid "Check out the %s function for documentation and usage examples."
1317
  msgstr ""
1318
  "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1319
  "Nutzungsbeispielen."
1320
 
1321
+ #: inc/support.php:116
1322
  msgid "Post relationships?"
1323
  msgstr "Beitragsbeziehungen?"
1324
 
1325
+ #: inc/support.php:117
1326
  #, php-format
1327
  msgid ""
1328
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1331
  "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1332
  "%s Plugins veröffentlicht."
1333
 
1334
+ #: inc/support.php:126
1335
+ msgid "Is there any function reference list?"
1336
+ msgstr "Gibt es eine Funktion Referenz-Liste?"
1337
+
1338
+ #: inc/support.php:127
1339
+ #, php-format
1340
+ msgid ""
1341
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1342
+ "will be useful as they are attached to hooks."
1343
+ msgstr ""
1344
+ "%s hat eine schöne Liste an Funktionen zusammengestellt die von unserem "
1345
+ "Plugin benutzt werden. Merke, nicht alle genannten werden hilfreich sein da "
1346
+ "sie an Book gekoppelt sind."
1347
+
1348
+ #: inc/support.php:131
1349
  msgid ""
1350
  "How do I filter the \"enter title here\" text in the post editor screen?"
1351
  msgstr ""
1352
  "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1353
  "\"-Fenster ändern?"
1354
 
1355
+ #: inc/support.php:132
1356
  msgid ""
1357
  "Change text inside the post/page editor title field. Should be able to adapt "
1358
  "as necessary."
1360
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1361
  "möglich sein dies anzupassen falls notwendig."
1362
 
1363
+ #: inc/taxonomies.php:82
1364
  msgid ""
1365
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1366
+ "registers a new taxonomy entry for your install."
1367
  msgstr ""
1368
+ "BEARBEITE NICHT den Taxonomie Kurzlink solange dies nicht unbedingt "
1369
+ "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1370
+ "Eintrag für Deine Installation."
1371
 
1372
+ #: inc/taxonomies.php:113
1373
  msgid "Taxonomy Slug"
1374
  msgstr "Taxonomie-Kurzlink"
1375
 
1376
+ #: inc/taxonomies.php:114
1377
+ msgid "(e.g. actor)"
1378
  msgstr "(z. B. regisseure)"
1379
 
1380
+ #: inc/taxonomies.php:115
1381
  msgid ""
1382
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1383
  "and unique"
1384
  msgstr ""
1385
+ "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1386
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1387
 
1388
+ #: inc/taxonomies.php:123 inc/taxonomies.php:205
1389
  msgid "(e.g. Actors)"
1390
  msgstr "(z. B. Regisseure)"
1391
 
1392
+ #: inc/taxonomies.php:125
1393
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1394
  msgstr ""
1395
+ "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1396
+ "benutzerdefinierte Taxonomien anzuzeigen."
1397
 
1398
+ #: inc/taxonomies.php:132
1399
  msgid "(e.g. Actor)"
1400
  msgstr "(z. B. Regisseur)"
1401
 
1402
+ #: inc/taxonomies.php:134
1403
  msgid ""
1404
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1405
  msgstr ""
1406
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1407
  "Beschriftungen in der Einzahl benötigt werden."
1408
 
1409
+ #: inc/taxonomies.php:137
1410
  msgid "Attach to Post Type"
1411
  msgstr "Mit Post Type verbinden"
1412
 
1413
+ #: inc/taxonomies.php:176
1414
+ msgid "Save Taxonomy"
1415
+ msgstr "Taxonomie speichern"
1416
 
1417
+ #: inc/taxonomies.php:177
1418
  msgid "Delete Taxonomy"
1419
  msgstr "Taxonomie löschen"
1420
 
1421
+ #: inc/taxonomies.php:179
1422
  msgid "Add Taxonomy"
1423
  msgstr "Taxonomie hinzufügen"
1424
 
1425
+ #: inc/taxonomies.php:188
1426
+ #, php-format
1427
+ msgid ""
1428
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1429
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1430
+ "letters that do not have accents."
1431
+ msgstr ""
1432
+ "Taxonomie Namen dürfen %smaximal 32 Zeichen%s lang sein und nur "
1433
+ "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1434
+ "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1435
+
1436
+ #: inc/taxonomies.php:189
1437
+ #, php-format
1438
+ msgid ""
1439
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1440
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1441
+ "settings will use default values. Labels, if left blank, will be "
1442
+ "automatically created based on the taxonomy name. Hover over the question "
1443
+ "marks for more details."
1444
+ msgstr ""
1445
+ "Solltest Du mit der Nutzung der erweiterten Taxonomie-Einstellungen nicht "
1446
+ "vertraut sein, dann trage nur Werte in das %sTaxonomie-Namen%s sowie das "
1447
+ "%sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
1448
+ "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
1449
+ "wurden, werden selbige automatisch, basierend auf dem Taxonomie-Namen "
1450
+ "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1451
+ "roten Fragezeichen."
1452
+
1453
+ #: inc/taxonomies.php:190
1454
+ #, php-format
1455
+ msgid ""
1456
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1457
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1458
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1459
+ "terms in the database."
1460
+ msgstr ""
1461
+ "Das Löschen einer benutzerdefinierten Taxonomie führt %sNICHT%s zur "
1462
+ "Entfernung von Begriffen die zu diesen Taxonomien hinzugefügt wurden. Du "
1463
+ "kannst Deine Taxonomien leicht erneut erstellen und die bereits eingegebenen "
1464
+ "Inhalte sind wieder sicht- und bearbeitbar. Sollte der Namen, nachdem die "
1465
+ "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1466
+ "Begriffe nicht in der Datenbank aktualisiert."
1467
+
1468
+ #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1469
+ #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1470
+ #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1471
+ #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1472
+ #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1473
  msgid ""
1474
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1475
  msgstr ""
1476
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1477
  "Anzeige von Taxonomien verwendet."
1478
 
1479
+ #: inc/taxonomies.php:214
1480
  msgid "(e.g. All Actors)"
1481
  msgstr "(z. B. Alle Regisseure)"
1482
 
1483
+ #: inc/taxonomies.php:223
1484
  msgid "(e.g. Edit Actor)"
1485
  msgstr "(z. B. Regisseur bearbeiten)"
1486
 
1487
+ #: inc/taxonomies.php:232
1488
  msgid "(e.g. View Actor)"
1489
  msgstr "(z. B. Regisseur anzeigen)"
1490
 
1491
+ #: inc/taxonomies.php:241
1492
  msgid "(e.g. Update Actor Name)"
1493
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1494
 
1495
+ #: inc/taxonomies.php:242
1496
  msgid "Update Item Name"
1497
  msgstr "Eintragsname aktualisieren"
1498
 
1499
+ #: inc/taxonomies.php:250
1500
  msgid "(e.g. Add New Actor)"
1501
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1502
 
1503
+ #: inc/taxonomies.php:259
1504
  msgid "(e.g. New Actor Name)"
1505
  msgstr "(z. B. Neuer Regisseursname)"
1506
 
1507
+ #: inc/taxonomies.php:260
1508
  msgid "New Item Name"
1509
  msgstr "Neuer Eintragsname"
1510
 
1511
+ #: inc/taxonomies.php:268
1512
  msgid "(e.g. Parent Actor)"
1513
+ msgstr "(z. B. Übergeordneter Regisseur)"
1514
 
1515
+ #: inc/taxonomies.php:269
1516
  msgid "Parent Item"
1517
+ msgstr "Übergeordneter Eintrag"
1518
 
1519
+ #: inc/taxonomies.php:277
1520
  msgid "(e.g. Parent Actor:)"
1521
+ msgstr "(z. B. Übergeordneter Regisseur:)"
1522
 
1523
+ #: inc/taxonomies.php:278
1524
  msgid "Parent Item Colon"
1525
+ msgstr "Übergeordneter Eintrag Komma"
1526
 
1527
+ #: inc/taxonomies.php:286
1528
  msgid "(e.g. Search Actors)"
1529
  msgstr "(z. B. Regisseure durchsuchen)"
1530
 
1531
+ #: inc/taxonomies.php:287
1532
  msgid "Search Items"
1533
  msgstr "Einträge durchsuchen"
1534
 
1535
+ #: inc/taxonomies.php:295
1536
  msgid "(e.g. Popular Actors)"
1537
  msgstr "(z. B. beliebte Regisseure)"
1538
 
1539
+ #: inc/taxonomies.php:296
1540
  msgid "Popular Items"
1541
  msgstr "Beliebte Einträge"
1542
 
1543
+ #: inc/taxonomies.php:304
1544
  msgid "(e.g. Separate actors with commas)"
1545
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1546
 
1547
+ #: inc/taxonomies.php:305
1548
  msgid "Separate Items with Commas"
1549
  msgstr "Trenne Einträge mittels Komma"
1550
 
1551
+ #: inc/taxonomies.php:313
1552
  msgid "(e.g. Add or remove actors)"
1553
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1554
 
1555
+ #: inc/taxonomies.php:314
1556
  msgid "Add or Remove Items"
1557
  msgstr "Lösche oder füge Einträge hinzu"
1558
 
1559
+ #: inc/taxonomies.php:322
1560
  msgid "(e.g. Choose from the most used actors)"
1561
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1562
 
1563
+ #: inc/taxonomies.php:323
1564
  msgid "Choose From Most Used"
1565
  msgstr "Wähle aus den am meisten Verwendeten"
1566
 
1567
+ #: inc/taxonomies.php:331
1568
  msgid "(e.g. No actors found)"
1569
  msgstr "(z. B. Keine Regisseure gefunden)"
1570
 
1571
+ #: inc/taxonomies.php:332
1572
  msgid "Not found"
1573
  msgstr "Nicht gefunden"
1574
 
1575
+ #: inc/taxonomies.php:355
1576
  msgid "Whether the taxonomy can have parent-child relationships"
1577
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1578
 
1579
+ #: inc/taxonomies.php:372
1580
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1581
  msgstr ""
1582
+ "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1583
+ "benutzerdefinierten Taxonomie erstellt werden soll."
1584
 
1585
+ #: inc/taxonomies.php:389
1586
+ msgid "Sets the query_var key for this taxonomy."
1587
+ msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1588
+
1589
+ #: inc/taxonomies.php:397
1590
  msgid "(default: none). Query Var needs to be true to use."
1591
  msgstr ""
1592
+ "(Voreinstellung: Keine - Abfrage Variable muss aktiviert sein um es benutzen "
1593
+ "zu können)"
1594
 
1595
+ #: inc/taxonomies.php:398
1596
  msgid "Custom Query Var String"
1597
+ msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1598
 
1599
+ #: inc/taxonomies.php:399
1600
+ msgid "Sets a custom query_var slug for this taxonomy."
1601
+ msgstr ""
1602
+ "Definiere einen benutzerdefinierten Abfrage Variablen-Kurzlink für diese "
1603
+ "Taxonomie."
1604
 
1605
+ #: inc/taxonomies.php:415
1606
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1607
+ msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1608
 
1609
+ #: inc/taxonomies.php:423
1610
  msgid "(default: taxonomy name)"
1611
  msgstr "(Voreinstellung: Taxanomie Name)"
1612
 
1613
+ #: inc/taxonomies.php:425
1614
+ msgid "Custom taxonomy rewrite slug."
1615
+ msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1616
 
1617
+ #: inc/taxonomies.php:439
1618
  msgid "Rewrite With Front"
1619
+ msgstr "Rewrite mit vorangestellter Front Base"
1620
 
1621
+ #: inc/taxonomies.php:440
1622
  msgid "(default: true)"
1623
  msgstr "(Voreinstellung: aktiviert)"
1624
 
1625
+ #: inc/taxonomies.php:456
1626
  msgid "Rewrite Hierarchical"
1627
  msgstr "Hierarchischer Rewrite"
1628
 
1629
+ #: inc/taxonomies.php:457
1630
  msgid "(default: false)"
1631
  msgstr "(Voreinstellung: deaktiviert)"
1632
 
1633
+ #: inc/taxonomies.php:458
1634
  msgid "Should the permastruct allow hierarchical urls."
1635
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1636
 
1637
+ #: inc/taxonomies.php:473
1638
  msgid "Show Admin Column"
1639
  msgstr "Anzeige von Admin-Spalten"
1640
 
1641
+ #: inc/taxonomies.php:475
1642
  msgid ""
1643
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1644
  "types."
1645
  msgstr ""
1646
+ "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1647
+ "Post Types erlaubt werden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1648
 
1649
+ #: inc/taxonomies.php:573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1650
  msgid "Please provide a taxonomy to delete"
1651
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1652
 
1653
+ #: inc/taxonomies.php:624
1654
  msgid "Please provide a taxonomy name"
1655
  msgstr "Gib bitte einen Taxonomie-Namen an"
1656
 
1657
+ #: inc/taxonomies.php:640
1658
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1659
  msgstr ""
1660
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1661
  "Kurzlinks"
1662
 
1663
+ #: inc/taxonomies.php:646
1664
  #, php-format
1665
  msgid "Please choose a different taxonomy name. %s is already used."
1666
  msgstr ""
1667
  "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1668
 
1669
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:116
1670
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:158
1671
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:201
1672
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:243
1673
  msgid "Whether posts of this type should be shown in the admin UI"
1674
  msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
1675
 
1676
+ #. Plugin URI of the plugin/theme
1677
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1678
+ msgstr "https://github.com/WebDevStudios/custom-post-type-ui/"
1679
+
1680
+ #. Description of the plugin/theme
1681
+ msgid ""
1682
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1683
+ msgstr ""
1684
+ "Benutzeroberfläche für die Erstellung von Custom Post Types und "
1685
+ "benutzerdefinierten Taxonomien im Admin-Menü von WordPress"
1686
+
1687
+ #. Author of the plugin/theme
1688
+ msgid "WebDevStudios"
1689
+ msgstr "WebDevStudios"
1690
+
1691
+ #. Author URI of the plugin/theme
1692
+ msgid "http://webdevstudios.com/"
1693
+ msgstr "http://webdevstudios.com/"
1694
+
1695
+ #~ msgid "(e.g. actors)"
1696
+ #~ msgstr "(z. B. regisseure)"
1697
+
1698
+ #~ msgid "View on front"
1699
+ #~ msgstr "In der Front betrachten"
1700
+
1701
+ #~ msgid ""
1702
+ #~ "To get started with creating some post types, please visit %s and for "
1703
+ #~ "taxonomies, visit %s. If you need some help, check the %s page. If "
1704
+ #~ "nothing there fits your issue, visit our %s and we will try to get to "
1705
+ #~ "your question as soon as possible."
1706
+ #~ msgstr ""
1707
+ #~ "Um Custom Post Types UI näher kennenzulernen erstelle doch unter %s "
1708
+ #~ "einige Post Types; Taxonomien kannst Du unter %s erstellen. Falls Du "
1709
+ #~ "Hilfe benötigst, gehe bitte auf die %s Seite. Sollte keiner der "
1710
+ #~ "angeführten Lösungsansätze bei deinem Problem behilflich sein, besuche "
1711
+ #~ "unser %s und wir werden uns Deiner Frage so schnell wie möglich annehmen."
1712
+
1713
+ #~ msgid "CPT UI Support Forum"
1714
+ #~ msgstr "CPT UI Support Forum"
1715
+
1716
+ #~ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
1717
+ #~ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
1718
+
1719
+ #~ msgid ""
1720
+ #~ "Select a post type to edit. DO NOT EDIT the post type slug unless "
1721
+ #~ "necessary. Changing that value registers a new post type entry for your "
1722
+ #~ "install."
1723
+ #~ msgstr ""
1724
+ #~ "Wähle einen Post Type zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
1725
+ #~ "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung "
1726
+ #~ "des Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
1727
+
1728
+ #~ msgid "Select"
1729
+ #~ msgstr "Auswählen"
1730
+
1731
+ #~ msgid "Edit Post Type"
1732
+ #~ msgstr "Post Type bearbeiten"
1733
+
1734
+ #~ msgid "Click headings to reveal available options."
1735
+ #~ msgstr ""
1736
+ #~ "Klicke die Überschriften an um die verfügbaren Einstellungsmöglichkeiten "
1737
+ #~ "anzuzeigen."
1738
+
1739
+ #~ msgid "Click to expand"
1740
+ #~ msgstr "Zum Aufklappen anklicken"
1741
+
1742
+ #~ msgid "Whether posts of this type should be shown in the admin UI."
1743
+ #~ msgstr "Sollen Beiträge dieses Typs im Admin-Interface angezeigt werden."
1744
+
1745
+ #~ msgid "Whether the post type will have a post type archive page."
1746
+ #~ msgstr "Soll der Post Type eine Archiv-Seite besitzen."
1747
+
1748
+ #~ msgid "Slug to be used for archive page."
1749
+ #~ msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
1750
+
1751
+ #~ msgid "Whether the post type will be searchable"
1752
+ #~ msgstr "Soll der Post Type durchsuchbar sein"
1753
+
1754
+ #~ msgid "Triggers the handling of rewrites for this post type"
1755
+ #~ msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
1756
+
1757
+ #~ msgid "(default: post type name)"
1758
+ #~ msgstr "(Voreinstellung: Post Type-Name)"
1759
+
1760
+ #~ msgid "Custom slug to use instead of the default."
1761
+ #~ msgstr ""
1762
+ #~ "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt "
1763
+ #~ "werden soll."
1764
+
1765
+ #~ msgid "URL or Dashicon value for image to be used as menu icon."
1766
+ #~ msgstr ""
1767
+ #~ "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
1768
+
1769
+ #~ msgid ""
1770
+ #~ "Whether to show the post type in the admin menu and where to show that "
1771
+ #~ "menu. Note that show_ui must be true."
1772
+ #~ msgstr ""
1773
+ #~ "Soll der Post Type im Admin-Menü angezeigt werden und wenn ja wo. Merke "
1774
+ #~ "show_ui muss dazu aktiviert sein."
1775
+
1776
+ #~ msgid "URL to image to be used as menu icon."
1777
+ #~ msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
1778
+
1779
+ #~ msgid ""
1780
+ #~ "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless "
1781
+ #~ "necessary. Changing that value registers a new taxonomy entry for your "
1782
+ #~ "install."
1783
+ #~ msgstr ""
1784
+ #~ "Wähle eine Taxonomie zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
1785
+ #~ "einer Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung "
1786
+ #~ "des Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1787
+
1788
+ #~ msgid "Edit Taxonomy"
1789
+ #~ msgstr "Taxonomien bearbeiten"
1790
+
1791
+ #~ msgid "Whether to generate a default UI for managing this custom taxonomy"
1792
+ #~ msgstr ""
1793
+ #~ "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
1794
+ #~ "benutzerdefinierten Taxonomien erstellt werden"
1795
+
1796
+ #~ msgid "Custom Query Var Slug"
1797
+ #~ msgstr "Benutzerdefinierter Query Var-Kurzlink"
1798
+
1799
+ #~ msgid "Triggers the handling of rewrites for this taxonomy"
1800
+ #~ msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
1801
 
1802
+ #~ msgid "Custom Taxonomy Rewrite Slug"
1803
+ #~ msgstr "Benutzerdefinierter Taxonomie Rewrite-Kurzlink"
 
1804
 
1805
  #~ msgid "Whether to generate a default UI for managing this post type"
1806
  #~ msgstr ""
languages/cpt-plugin-ja.mo CHANGED
Binary file
languages/cpt-plugin-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-09 23:51-0600\n"
6
- "PO-Revision-Date: 2015-04-09 23:51-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"
@@ -13,282 +13,315 @@ msgstr ""
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.7.5\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../custom-post-type-ui.php:58
20
  #, fuzzy
21
  msgid "Custom Post Types"
22
  msgstr "利用する投稿タイプ"
23
 
24
- #: ../custom-post-type-ui.php:58
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
- #: ../custom-post-type-ui.php:323
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
- #: ../custom-post-type-ui.php:325
41
- #, php-format
 
 
 
 
42
  msgid ""
43
- "To get started with creating some post types, please visit %s and for "
44
- "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
45
- "there fits your issue, visit our %s and we will try to get to your question "
46
- "as soon as possible."
47
  msgstr ""
48
 
49
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
50
- #, fuzzy
51
- msgid "Add/Edit Post Types"
52
- msgstr "カスタム投稿タイプを編集"
53
 
54
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
55
- #, fuzzy
56
- msgid "Add/Edit Taxonomies"
57
- msgstr "ビルトイン分類"
 
 
58
 
59
- #: ../custom-post-type-ui.php:328 ../inc/support.php:30
60
- #, fuzzy
61
- msgid "Help/Support"
62
- msgstr "サポート"
63
 
64
- #: ../custom-post-type-ui.php:329
65
- msgid "CPT UI Support Forum"
 
 
66
  msgstr ""
67
 
68
- #: ../custom-post-type-ui.php:345
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
- #: ../custom-post-type-ui.php:349
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
- #: ../custom-post-type-ui.php:354
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
- #: ../custom-post-type-ui.php:357
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
- #: ../custom-post-type-ui.php:362
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
- #: ../custom-post-type-ui.php:365
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
- #: ../custom-post-type-ui.php:366
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
- #: ../custom-post-type-ui.php:407
99
  #, php-format
100
- msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
101
  msgstr ""
102
 
103
- #: ../custom-post-type-ui.php:416
104
  msgid "Please Report Bugs"
105
  msgstr ""
106
 
107
- #: ../custom-post-type-ui.php:418
108
  msgid "Follow on Twitter:"
109
  msgstr ""
110
 
111
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
112
- msgid "Import/Export"
113
- msgstr ""
114
-
115
- #: ../custom-post-type-ui.php:480
116
  #, fuzzy
117
  msgid "Manage Taxonomies"
118
  msgstr "カスタム分類の管理"
119
 
120
- #: ../custom-post-type-ui.php:484
121
  #, fuzzy
122
  msgid "Manage Post Types"
123
  msgstr "カスタム投稿タイプの管理"
124
 
125
- #: ../custom-post-type-ui.php:510
126
  #, fuzzy
127
  msgid "Add New Post Type"
128
  msgstr "利用する投稿タイプ"
129
 
130
- #: ../custom-post-type-ui.php:513
131
  #, fuzzy
132
  msgid "Edit Post Types"
133
  msgstr "カスタム投稿タイプを編集"
134
 
135
- #: ../custom-post-type-ui.php:517
136
  #, fuzzy
137
  msgid "Add New Taxonomy"
138
  msgstr "分類名"
139
 
140
- #: ../custom-post-type-ui.php:520
141
  #, fuzzy
142
  msgid "Edit Taxonomies"
143
  msgstr "ビルトイン分類"
144
 
145
- #: ../custom-post-type-ui.php:524 ../inc/listings.php:19
146
- #: ../inc/listings.php:123 ../inc/listings.php:196
147
  #, fuzzy
148
  msgid "Post Types"
149
  msgstr "投稿タイプ名"
150
 
151
- #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
152
- #: ../inc/listings.php:26 ../inc/listings.php:107 ../inc/listings.php:117
153
  #, fuzzy
154
  msgid "Taxonomies"
155
  msgstr "ビルトイン分類"
156
 
157
- #: ../custom-post-type-ui.php:526
158
  msgid "Get Code"
159
  msgstr ""
160
 
161
- #: ../custom-post-type-ui.php:610 ../inc/listings.php:24
162
- #: ../inc/listings.php:105 ../inc/listings.php:122 ../inc/listings.php:195
163
- #: ../inc/post-types.php:334 ../inc/taxonomies.php:326
164
  msgid "Settings"
165
  msgstr ""
166
 
167
- #: ../custom-post-type-ui.php:610
168
  msgid "Help"
169
  msgstr ""
170
 
171
- #: ../custom-post-type-ui.php:638
172
  #, php-format
173
  msgid "%s has been successfully added"
174
  msgstr ""
175
 
176
- #: ../custom-post-type-ui.php:640
177
  #, php-format
178
  msgid "%s has failed to be added"
179
  msgstr ""
180
 
181
- #: ../custom-post-type-ui.php:644
182
  #, php-format
183
  msgid "%s has been successfully updated"
184
  msgstr ""
185
 
186
- #: ../custom-post-type-ui.php:646
187
  #, php-format
188
  msgid "%s has failed to be updated"
189
  msgstr ""
190
 
191
- #: ../custom-post-type-ui.php:650
192
  #, php-format
193
  msgid "%s has been successfully deleted"
194
  msgstr ""
195
 
196
- #: ../custom-post-type-ui.php:652
197
  #, php-format
198
  msgid "%s has failed to be deleted"
199
  msgstr ""
200
 
201
- #: ../custom-post-type-ui.php:656
202
  #, php-format
203
  msgid "%s has been successfully imported"
204
  msgstr ""
205
 
206
- #: ../custom-post-type-ui.php:658
207
  #, php-format
208
  msgid "%s has failed to be imported"
209
  msgstr ""
210
 
211
- #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
212
  #, fuzzy, php-format
213
  msgid "Add new %s"
214
  msgstr "新規追加"
215
 
216
- #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
217
  #, fuzzy, php-format
218
  msgid "Edit %s"
219
  msgstr "編集"
220
 
221
- #: ../custom-post-type-ui.php:743
222
  #, php-format
223
  msgid "New %s"
224
  msgstr ""
225
 
226
- #: ../custom-post-type-ui.php:744
227
  #, fuzzy, php-format
228
  msgid "View %s"
229
  msgstr "表示"
230
 
231
- #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
232
  #, fuzzy, php-format
233
  msgid "All %s"
234
  msgstr "すべての項目"
235
 
236
- #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
237
  #, fuzzy, php-format
238
  msgid "Search %s"
239
  msgstr "項目検索"
240
 
241
- #: ../custom-post-type-ui.php:747
242
  #, fuzzy, php-format
243
  msgid "No %s found."
244
  msgstr "見つかりません"
245
 
246
- #: ../custom-post-type-ui.php:748
247
  #, fuzzy, php-format
248
  msgid "No %s found in trash."
249
  msgstr "ゴミ箱にはありません。"
250
 
251
- #: ../custom-post-type-ui.php:752
252
  #, fuzzy, php-format
253
  msgid "Popular %s"
254
  msgstr "よく利用されている項目"
255
 
256
- #: ../custom-post-type-ui.php:754
257
  #, fuzzy, php-format
258
  msgid "Parent %s"
259
  msgstr "親"
260
 
261
- #: ../custom-post-type-ui.php:755
262
  #, fuzzy, php-format
263
  msgid "Parent %s:"
264
  msgstr "親"
265
 
266
- #: ../custom-post-type-ui.php:757
267
  #, php-format
268
  msgid "Update %s"
269
  msgstr ""
270
 
271
- #: ../custom-post-type-ui.php:759
272
  #, fuzzy, php-format
273
  msgid "New %s name"
274
  msgstr "新規項目名"
275
 
276
- #: ../custom-post-type-ui.php:760
277
  #, fuzzy, php-format
278
  msgid "Separate %s with commas"
279
  msgstr "項目が複数ある場合はコンマで区切ってください。"
280
 
281
- #: ../custom-post-type-ui.php:761
282
  #, fuzzy, php-format
283
  msgid "Add or remove %s"
284
  msgstr "項目の追加もしくは削除"
285
 
286
- #: ../custom-post-type-ui.php:762
287
  #, fuzzy, php-format
288
  msgid "Choose from the most used %s"
289
  msgstr "最もよく使われているものから選択"
290
 
291
- #: ../inc/import_export.php:52
292
  msgid ""
293
  "If you are wanting to migrate registered post types or taxonomies from this "
294
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -296,319 +329,363 @@ msgid ""
296
  "the information in the \"Get Code\" tab."
297
  msgstr ""
298
 
299
- #: ../inc/import_export.php:55
300
  msgid "NOTE"
301
  msgstr ""
302
 
303
- #: ../inc/import_export.php:56
304
  msgid "This will not export the associated posts, just the settings."
305
  msgstr ""
306
 
307
- #: ../inc/import_export.php:63
308
  #, fuzzy
309
  msgid "Import Post Types"
310
  msgstr "利用する投稿タイプ"
311
 
312
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
313
  msgid "Note:"
314
  msgstr ""
315
 
316
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
317
  msgid "Importing will overwrite previous registered settings."
318
  msgstr ""
319
 
320
- #: ../inc/import_export.php:67
321
  msgid ""
322
  "To import post types from a different WordPress site, paste the exported "
323
  "content from that site and click the \"Import\" button."
324
  msgstr ""
325
 
326
- #: ../inc/import_export.php:72
327
  #, fuzzy
328
  msgid "Export Post Types"
329
  msgstr "利用する投稿タイプ"
330
 
331
- #: ../inc/import_export.php:78
332
  msgid "No post types registered yet."
333
  msgstr ""
334
 
335
- #: ../inc/import_export.php:82
336
  msgid ""
337
  "Use the content above to import current post types into a different "
338
  "WordPress site. You can also use this to simply back up your post type "
339
  "settings."
340
  msgstr ""
341
 
342
- #: ../inc/import_export.php:88
343
  #, fuzzy
344
  msgid "Import Taxonomies"
345
  msgstr "ビルトイン分類"
346
 
347
- #: ../inc/import_export.php:92
348
  msgid ""
349
  "To import taxonomies from a different WordPress site, paste the exported "
350
  "content from that site and click the \"Import\" button."
351
  msgstr ""
352
 
353
- #: ../inc/import_export.php:97
354
  #, fuzzy
355
  msgid "Export Taxonomies"
356
  msgstr "ビルトイン分類"
357
 
358
- #: ../inc/import_export.php:103
359
  msgid "No taxonomies registered yet."
360
  msgstr ""
361
 
362
- #: ../inc/import_export.php:107
363
  msgid ""
364
  "Use the content above to import current taxonomies into a different "
365
  "WordPress site. You can also use this to simply back up your taxonomy "
366
  "settings."
367
  msgstr ""
368
 
369
- #: ../inc/import_export.php:115
370
  msgid "Get Post Type and Taxonomy Code"
371
  msgstr ""
372
 
373
- #: ../inc/import_export.php:117
374
  #, fuzzy
375
  msgid "All CPT UI Post Types"
376
  msgstr "追加されているカスタム投稿タイプ"
377
 
378
- #: ../inc/import_export.php:118 ../inc/import_export.php:122
379
  msgid "Copy/paste the code below into your functions.php file."
380
  msgstr ""
381
 
382
- #: ../inc/import_export.php:121
383
  #, fuzzy
384
  msgid "All CPT UI Taxonomies"
385
  msgstr "ビルトイン分類"
386
 
387
- #: ../inc/import_export.php:152
388
  msgid "No taxonomies to display at this time"
389
  msgstr ""
390
 
391
- #: ../inc/import_export.php:252
392
  msgid "No post types to display at this time"
393
  msgstr ""
394
 
395
- #: ../inc/import_export.php:379
396
  #, fuzzy
397
  msgid "Post types"
398
  msgstr "投稿タイプ名"
399
 
400
- #: ../inc/listings.php:7
401
- msgid "Registered Types and Taxes"
402
  msgstr ""
403
 
404
- #: ../inc/listings.php:7
405
- msgid "Registered Types/Taxes"
 
406
  msgstr ""
407
 
408
- #: ../inc/listings.php:23 ../inc/listings.php:104
409
  #, fuzzy
410
  msgid "Post Type"
411
  msgstr "利用する投稿タイプ"
412
 
413
- #: ../inc/listings.php:25 ../inc/listings.php:106 ../inc/post-types.php:605
414
  msgid "Supports"
415
  msgstr "サポート"
416
 
417
- #: ../inc/listings.php:27 ../inc/listings.php:108 ../inc/listings.php:124
418
- #: ../inc/listings.php:197 ../inc/post-types.php:172 ../inc/taxonomies.php:184
419
  #, fuzzy
420
  msgid "Labels"
421
  msgstr "ラベル"
422
 
423
- #: ../inc/listings.php:93 ../inc/listings.php:183
 
 
 
 
 
 
 
 
424
  msgid "No custom labels to display"
425
  msgstr ""
426
 
427
- #: ../inc/listings.php:121 ../inc/listings.php:194
428
  #, fuzzy
429
  msgid "Taxonomy"
430
  msgstr "分類名"
431
 
432
- #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
433
  msgid "Are you sure you want to delete this?"
434
  msgstr ""
435
 
436
- #: ../inc/post-types.php:85
437
  msgid ""
438
- "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
439
- "Changing that value registers a new post type entry for your install."
440
  msgstr ""
441
 
442
- #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
443
- msgid "Select"
 
 
444
  msgstr ""
445
 
446
- #: ../inc/post-types.php:110
 
 
 
 
447
  #, fuzzy
448
  msgid "Post Type Slug"
449
  msgstr "投稿タイプ名"
450
 
451
- #: ../inc/post-types.php:111
452
  msgid "(e.g. movie)"
453
  msgstr ""
454
 
455
- #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
456
  #, fuzzy
457
  msgid "Plural Label"
458
  msgstr "単数形のラベル"
459
 
460
- #: ../inc/post-types.php:124
461
  msgid "(e.g. Movies)"
462
  msgstr ""
463
 
464
- #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
465
  msgid "Singular Label"
466
  msgstr "単数形のラベル"
467
 
468
- #: ../inc/post-types.php:136
469
  msgid "(e.g. Movie)"
470
  msgstr ""
471
 
472
- #: ../inc/post-types.php:152
473
  msgid "Description"
474
  msgstr "説明"
475
 
476
- #: ../inc/post-types.php:160
 
 
 
 
477
  #, fuzzy
478
- msgid "Edit Post Type"
479
  msgstr "利用する投稿タイプ"
480
 
481
- #: ../inc/post-types.php:161
482
  #, fuzzy
483
  msgid "Delete Post Type"
484
  msgstr "利用する投稿タイプ"
485
 
486
- #: ../inc/post-types.php:163
487
  #, fuzzy
488
  msgid "Add Post Type"
489
  msgstr "利用する投稿タイプ"
490
 
491
- #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
492
- msgid "Click headings to reveal available options."
 
 
 
 
 
 
 
 
 
493
  msgstr ""
494
 
495
- #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  #, fuzzy
497
  msgid "Menu Name"
498
  msgstr "名前"
499
 
500
- #: ../inc/post-types.php:185
501
  msgid "(e.g. My Movies)"
502
  msgstr ""
503
 
504
- #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
505
  msgid "All Items"
506
  msgstr "すべての項目"
507
 
508
- #: ../inc/post-types.php:197
509
  msgid "(e.g. All Movies)"
510
  msgstr ""
511
 
512
- #: ../inc/post-types.php:204
513
  msgid "Add New"
514
  msgstr "新規追加"
515
 
516
- #: ../inc/post-types.php:209
517
  #, fuzzy
518
  msgid "(e.g. Add New)"
519
  msgstr "新規追加"
520
 
521
- #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
522
  msgid "Add New Item"
523
  msgstr "新規項目追加"
524
 
525
- #: ../inc/post-types.php:221
526
  msgid "(e.g. Add New Movie)"
527
  msgstr ""
528
 
529
- #: ../inc/post-types.php:228
530
- msgid "Edit"
531
- msgstr "編集"
532
-
533
- #: ../inc/post-types.php:233
534
  msgid "(e.g. Edit)"
535
  msgstr ""
536
 
537
- #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
538
  msgid "Edit Item"
539
  msgstr "項目を編集"
540
 
541
- #: ../inc/post-types.php:245
542
  msgid "(e.g. Edit Movie)"
543
  msgstr ""
544
 
545
- #: ../inc/post-types.php:252
546
  msgid "New Item"
547
  msgstr "新規項目"
548
 
549
- #: ../inc/post-types.php:257
550
  #, fuzzy
551
  msgid "(e.g. New Movie)"
552
  msgstr "新規項目追加"
553
 
554
- #: ../inc/post-types.php:264
555
  msgid "View"
556
  msgstr "表示"
557
 
558
- #: ../inc/post-types.php:269
559
  msgid "(e.g. View)"
560
  msgstr ""
561
 
562
- #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
563
  msgid "View Item"
564
  msgstr "項目を表示"
565
 
566
- #: ../inc/post-types.php:281
567
  msgid "(e.g. View Movie)"
568
  msgstr ""
569
 
570
- #: ../inc/post-types.php:288
571
  #, fuzzy
572
  msgid "Search Item"
573
  msgstr "項目検索"
574
 
575
- #: ../inc/post-types.php:293
576
  msgid "(e.g. Search Movie)"
577
  msgstr ""
578
 
579
- #: ../inc/post-types.php:300
580
  msgid "Not Found"
581
  msgstr "見つかりません"
582
 
583
- #: ../inc/post-types.php:305
584
  msgid "(e.g. No Movies found)"
585
  msgstr ""
586
 
587
- #: ../inc/post-types.php:312
588
  msgid "Not Found in Trash"
589
  msgstr "ゴミ箱にはありません。"
590
 
591
- #: ../inc/post-types.php:317
592
  #, fuzzy
593
  msgid "(e.g. No Movies found in Trash)"
594
  msgstr "ゴミ箱にはありません。"
595
 
596
- #: ../inc/post-types.php:324
597
  msgid "Parent"
598
  msgstr "親"
599
 
600
- #: ../inc/post-types.php:329
601
  msgid "(e.g. Parent Movie)"
602
  msgstr ""
603
 
604
- #: ../inc/post-types.php:343 ../inc/post-types.php:363
605
- #: ../inc/post-types.php:389 ../inc/post-types.php:421
606
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
607
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
608
- #: ../inc/post-types.php:567 ../inc/taxonomies.php:332
609
- #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
610
- #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
611
- #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
612
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
613
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
614
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -616,14 +693,14 @@ msgstr ""
616
  msgid "False"
617
  msgstr ""
618
 
619
- #: ../inc/post-types.php:344 ../inc/post-types.php:364
620
- #: ../inc/post-types.php:390 ../inc/post-types.php:422
621
- #: ../inc/post-types.php:453 ../inc/post-types.php:473
622
- #: ../inc/post-types.php:505 ../inc/post-types.php:525
623
- #: ../inc/post-types.php:568 ../inc/taxonomies.php:333
624
- #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
625
- #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
626
- #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
627
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
628
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
629
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -631,218 +708,195 @@ msgstr ""
631
  msgid "True"
632
  msgstr ""
633
 
634
- #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
635
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
636
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
637
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
638
  msgid "Public"
639
  msgstr "一般公開"
640
 
641
- #: ../inc/post-types.php:353 ../inc/post-types.php:373
642
- #: ../inc/post-types.php:482 ../inc/post-types.php:514
643
- #: ../inc/post-types.php:534 ../inc/post-types.php:576
644
- #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
645
- #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
646
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
647
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
648
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
649
  msgid "(default: True)"
650
  msgstr ""
651
 
652
- #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
653
  msgid "Show UI"
654
  msgstr "UI を表示"
655
 
656
- #: ../inc/post-types.php:382
657
  msgid "Has Archive"
658
  msgstr ""
659
 
660
- #: ../inc/post-types.php:384
661
  msgid "If left blank, the archive slug will default to the post type slug."
662
  msgstr ""
663
 
664
- #: ../inc/post-types.php:398 ../inc/post-types.php:431
665
- #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
666
- #: ../inc/taxonomies.php:461
667
  msgid "(default: False)"
668
  msgstr ""
669
 
670
- #: ../inc/post-types.php:430
671
  msgid "Exclude From Search"
672
  msgstr ""
673
 
674
- #: ../inc/post-types.php:443
675
  msgid "Capability Type"
676
  msgstr "利用タイプ"
677
 
678
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
679
  msgid "Hierarchical"
680
  msgstr "階層"
681
 
682
- #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
683
  msgid "Rewrite"
684
  msgstr "リライト"
685
 
686
- #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
687
  msgid "Custom Rewrite Slug"
688
  msgstr "カスタムリライトスラッグ"
689
 
690
- #: ../inc/post-types.php:495
691
- msgid "(default: post type name)"
692
  msgstr ""
693
 
694
- #: ../inc/post-types.php:513
695
  msgid "With Front"
696
  msgstr ""
697
 
698
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
699
  msgid "Query Var"
700
  msgstr "クエリーバージョン"
701
 
702
- #: ../inc/post-types.php:543
703
  msgid "Menu Position"
704
  msgstr "メニューの位置"
705
 
706
- #: ../inc/post-types.php:545
707
  msgid ""
708
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
709
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
710
  "\" section. Range of 5-100"
711
  msgstr ""
712
 
713
- #: ../inc/post-types.php:560
714
  msgid "Show in Menu"
715
  msgstr ""
716
 
717
- #: ../inc/post-types.php:562
718
  msgid ""
719
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
720
  "php\" is indicated for second input, post type will be sub menu of that."
721
  msgstr ""
722
 
723
- #: ../inc/post-types.php:600
724
  #, fuzzy
725
  msgid "Menu Icon"
726
  msgstr "メニューの位置"
727
 
728
- #: ../inc/post-types.php:601
729
  msgid "(Full URL for icon or Dashicon class)"
730
  msgstr ""
731
 
732
- #: ../inc/post-types.php:615
733
  msgid "Title"
734
  msgstr ""
735
 
736
- #: ../inc/post-types.php:630
737
  #, fuzzy
738
  msgid "Editor"
739
  msgstr "編集"
740
 
741
- #: ../inc/post-types.php:645
742
  msgid "Excerpt"
743
  msgstr ""
744
 
745
- #: ../inc/post-types.php:660
746
  msgid "Trackbacks"
747
  msgstr ""
748
 
749
- #: ../inc/post-types.php:675
750
  #, fuzzy
751
  msgid "Custom Fields"
752
  msgstr "カスタムリライトスラッグ"
753
 
754
- #: ../inc/post-types.php:690
755
  msgid "Comments"
756
  msgstr ""
757
 
758
- #: ../inc/post-types.php:705
759
  msgid "Revisions"
760
  msgstr ""
761
 
762
- #: ../inc/post-types.php:720
763
  msgid "Featured Image"
764
  msgstr ""
765
 
766
- #: ../inc/post-types.php:735
767
  msgid "Author"
768
  msgstr ""
769
 
770
- #: ../inc/post-types.php:750
771
  msgid "Page Attributes"
772
  msgstr ""
773
 
774
- #: ../inc/post-types.php:765
775
  msgid "Post Formats"
776
  msgstr ""
777
 
778
- #: ../inc/post-types.php:771
779
  msgid "Use the option below to explicitly set \"supports\" to false."
780
  msgstr ""
781
 
782
- #: ../inc/post-types.php:779
783
  msgid "None"
784
  msgstr ""
785
 
786
- #: ../inc/post-types.php:787
787
- msgid "Built-in Taxonomies"
788
- msgstr "ビルトイン分類"
789
-
790
- #: ../inc/post-types.php:825 ../inc/taxonomies.php:470
791
- msgid "Starter Notes"
792
- msgstr ""
793
-
794
- #: ../inc/post-types.php:828
795
- #, php-format
796
- msgid ""
797
- "Post Type names should have %smax 20 characters%s, and only contain "
798
- "alphanumeric, lowercase characters, underscores in place of spaces and "
799
- "letters that do not have accents. Reserved names: post, page, attachment, "
800
- "revision, nav_menu_item."
801
- msgstr ""
802
 
803
- #: ../inc/post-types.php:829
804
- #, php-format
805
  msgid ""
806
- "If you are unfamiliar with the advanced post type settings, just fill in the "
807
- "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
808
- "values. Labels, if left blank, will be automatically created based on the "
809
- "post type name. Hover over the question mark for more details."
810
  msgstr ""
811
 
812
- #: ../inc/post-types.php:830
813
- #, fuzzy, php-format
814
- msgid ""
815
- "Deleting custom post types will %sNOT%s delete any content into the database "
816
- "or added to those post types. You can easily recreate your post types and "
817
- "the content will still exist."
818
- msgstr ""
819
- "カスタム投稿タイプを削除してもその投稿タイプに追加されている<strong>コンテン"
820
- "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
821
- "ません。"
822
 
823
- #: ../inc/post-types.php:910
824
  msgid "Please provide a post type to delete"
825
  msgstr ""
826
 
827
- #: ../inc/post-types.php:970
828
  msgid "Please provide a post type name"
829
  msgstr ""
830
 
831
- #: ../inc/post-types.php:988
832
  msgid "Please do not use quotes in post type names or rewrite slugs"
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:995
836
  #, php-format
837
  msgid "Please choose a different post type name. %s is already registered."
838
  msgstr ""
839
 
840
- #: ../inc/support.php:51
841
  #, fuzzy
842
  msgid "Custom Post Type UI Support"
843
  msgstr "Custom Post Types UI"
844
 
845
- #: ../inc/support.php:53
846
  #, php-format
847
  msgid ""
848
  "Please note that this plugin will NOT handle display of registered post "
@@ -850,34 +904,34 @@ msgid ""
850
  "you. If all else fails, visit us on the %s"
851
  msgstr ""
852
 
853
- #: ../inc/support.php:54
854
  #, fuzzy
855
  msgid "Support Forums"
856
  msgstr "サポート"
857
 
858
- #: ../inc/support.php:60
859
  msgid "General"
860
  msgstr ""
861
 
862
- #: ../inc/support.php:63
863
  msgid ""
864
  "I changed my custom post type name and now I can not get to my posts. How do "
865
  "I get them back?"
866
  msgstr ""
867
 
868
- #: ../inc/support.php:64
869
  msgid ""
870
  "You can either change the custom post type name back to the original name or "
871
  "try the Post Type Switcher plugin"
872
  msgstr ""
873
 
874
- #: ../inc/support.php:69
875
  msgid ""
876
  "I changed my custom post type or taxonomy slug and now I have duplicates "
877
  "shown. How do I remove the duplicate?"
878
  msgstr ""
879
 
880
- #: ../inc/support.php:70
881
  msgid ""
882
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
883
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -885,37 +939,37 @@ msgid ""
885
  "delete the previous version's entry."
886
  msgstr ""
887
 
888
- #: ../inc/support.php:73
889
  msgid ""
890
  "I have added post thumbnail and/or post format support to my post type, but "
891
  "those do not appear when adding a post type post."
892
  msgstr ""
893
 
894
- #: ../inc/support.php:74
895
  msgid ""
896
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
897
  msgstr ""
898
 
899
- #: ../inc/support.php:79
900
  msgid "Front-end Display"
901
  msgstr ""
902
 
903
- #: ../inc/support.php:82
904
  msgid "What template files should I edit to alter my post type display?"
905
  msgstr ""
906
 
907
- #: ../inc/support.php:83
908
  #, php-format
909
  msgid ""
910
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
911
  "details about available templates."
912
  msgstr ""
913
 
914
- #: ../inc/support.php:90
915
  msgid "How do I display my custom post type on my site?"
916
  msgstr ""
917
 
918
- #: ../inc/support.php:91
919
  #, php-format
920
  msgid ""
921
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -923,13 +977,13 @@ msgid ""
923
  "should be something like \"http://www.mysite.com/post-type-slug\""
924
  msgstr ""
925
 
926
- #: ../inc/support.php:97
927
  msgid ""
928
  "I have added categories and tags to my custom post type, but they do not "
929
  "appear in the archives."
930
  msgstr ""
931
 
932
- #: ../inc/support.php:98
933
  #, php-format
934
  msgid ""
935
  "You will need to add your newly created post type to the types that the "
@@ -937,277 +991,297 @@ msgid ""
937
  "that at %s"
938
  msgstr ""
939
 
940
- #: ../inc/support.php:107
941
  msgid "Advanced"
942
  msgstr ""
943
 
944
- #: ../inc/support.php:110
945
  msgid "How do I add custom metaboxes to my post type?"
946
  msgstr ""
947
 
948
- #: ../inc/support.php:112
949
  #, php-format
950
  msgid ""
951
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
952
  "Fields for WordPress\". Both are maintained by WebDevStudios."
953
  msgstr ""
954
 
955
- #: ../inc/support.php:118
956
  msgid ""
957
  "How do I add a newly registered taxonomy to a post type that already exists?"
958
  msgstr ""
959
 
960
- #: ../inc/support.php:120
961
  #, php-format
962
  msgid "Check out the %s function for documentation and usage examples."
963
  msgstr ""
964
 
965
- #: ../inc/support.php:126
966
  #, fuzzy
967
  msgid "Post relationships?"
968
  msgstr "利用する投稿タイプ"
969
 
970
- #: ../inc/support.php:127
971
  #, php-format
972
  msgid ""
973
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
974
  "plugin that should be a good start."
975
  msgstr ""
976
 
977
- #: ../inc/support.php:136
 
 
 
 
 
 
 
 
 
 
 
978
  msgid ""
979
  "How do I filter the \"enter title here\" text in the post editor screen?"
980
  msgstr ""
981
 
982
- #: ../inc/support.php:137
983
  msgid ""
984
  "Change text inside the post/page editor title field. Should be able to adapt "
985
  "as necessary."
986
  msgstr ""
987
 
988
- #: ../inc/taxonomies.php:87
989
  msgid ""
990
- "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
991
- "Changing that value registers a new taxonomy entry for your install."
992
  msgstr ""
993
 
994
- #: ../inc/taxonomies.php:109
995
  #, fuzzy
996
  msgid "Taxonomy Slug"
997
  msgstr "分類名"
998
 
999
- #: ../inc/taxonomies.php:110
1000
- msgid "(e.g. actors)"
1001
- msgstr ""
 
1002
 
1003
- #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1004
  msgid "(e.g. Actors)"
1005
  msgstr ""
1006
 
1007
- #: ../inc/taxonomies.php:128
1008
  msgid "(e.g. Actor)"
1009
  msgstr ""
1010
 
1011
- #: ../inc/taxonomies.php:133
1012
  msgid "Attach to Post Type"
1013
  msgstr "利用する投稿タイプ"
1014
 
1015
- #: ../inc/taxonomies.php:172
1016
  #, fuzzy
1017
- msgid "Edit Taxonomy"
1018
- msgstr "カスタム分類の編集"
1019
 
1020
- #: ../inc/taxonomies.php:173
1021
  #, fuzzy
1022
  msgid "Delete Taxonomy"
1023
  msgstr "カスタム分類作成"
1024
 
1025
- #: ../inc/taxonomies.php:175
1026
  #, fuzzy
1027
  msgid "Add Taxonomy"
1028
  msgstr "分類名"
1029
 
1030
- #: ../inc/taxonomies.php:202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  msgid "(e.g. All Actors)"
1032
  msgstr ""
1033
 
1034
- #: ../inc/taxonomies.php:211
1035
  msgid "(e.g. Edit Actor)"
1036
  msgstr ""
1037
 
1038
- #: ../inc/taxonomies.php:220
1039
  msgid "(e.g. View Actor)"
1040
  msgstr ""
1041
 
1042
- #: ../inc/taxonomies.php:229
1043
  msgid "(e.g. Update Actor Name)"
1044
  msgstr ""
1045
 
1046
- #: ../inc/taxonomies.php:230
1047
  #, fuzzy
1048
  msgid "Update Item Name"
1049
  msgstr "項目をアップデート"
1050
 
1051
- #: ../inc/taxonomies.php:238
1052
  msgid "(e.g. Add New Actor)"
1053
  msgstr ""
1054
 
1055
- #: ../inc/taxonomies.php:247
1056
  msgid "(e.g. New Actor Name)"
1057
  msgstr ""
1058
 
1059
- #: ../inc/taxonomies.php:248
1060
  msgid "New Item Name"
1061
  msgstr "新規項目名"
1062
 
1063
- #: ../inc/taxonomies.php:256
1064
  msgid "(e.g. Parent Actor)"
1065
  msgstr ""
1066
 
1067
- #: ../inc/taxonomies.php:257
1068
  msgid "Parent Item"
1069
  msgstr "親項目"
1070
 
1071
- #: ../inc/taxonomies.php:265
1072
  msgid "(e.g. Parent Actor:)"
1073
  msgstr ""
1074
 
1075
- #: ../inc/taxonomies.php:266
1076
  msgid "Parent Item Colon"
1077
  msgstr "親項目コロン"
1078
 
1079
- #: ../inc/taxonomies.php:274
1080
  msgid "(e.g. Search Actors)"
1081
  msgstr ""
1082
 
1083
- #: ../inc/taxonomies.php:275
1084
  msgid "Search Items"
1085
  msgstr "項目検索"
1086
 
1087
- #: ../inc/taxonomies.php:283
1088
  msgid "(e.g. Popular Actors)"
1089
  msgstr ""
1090
 
1091
- #: ../inc/taxonomies.php:284
1092
  msgid "Popular Items"
1093
  msgstr "よく利用されている項目"
1094
 
1095
- #: ../inc/taxonomies.php:292
1096
  #, fuzzy
1097
  msgid "(e.g. Separate actors with commas)"
1098
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1099
 
1100
- #: ../inc/taxonomies.php:293
1101
  msgid "Separate Items with Commas"
1102
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1103
 
1104
- #: ../inc/taxonomies.php:301
1105
  #, fuzzy
1106
  msgid "(e.g. Add or remove actors)"
1107
  msgstr "項目の追加もしくは削除"
1108
 
1109
- #: ../inc/taxonomies.php:302
1110
  msgid "Add or Remove Items"
1111
  msgstr "項目の追加もしくは削除"
1112
 
1113
- #: ../inc/taxonomies.php:310
1114
  #, fuzzy
1115
  msgid "(e.g. Choose from the most used actors)"
1116
  msgstr "最もよく使われているものから選択"
1117
 
1118
- #: ../inc/taxonomies.php:311
1119
  msgid "Choose From Most Used"
1120
  msgstr "最もよく使われているものから選択"
1121
 
1122
- #: ../inc/taxonomies.php:319
1123
  msgid "(e.g. No actors found)"
1124
  msgstr ""
1125
 
1126
- #: ../inc/taxonomies.php:320
1127
  #, fuzzy
1128
  msgid "Not found"
1129
  msgstr "見つかりません"
1130
 
1131
- #: ../inc/taxonomies.php:384
1132
  msgid "(default: none). Query Var needs to be true to use."
1133
  msgstr ""
1134
 
1135
- #: ../inc/taxonomies.php:385
1136
  msgid "Custom Query Var String"
1137
  msgstr ""
1138
 
1139
- #: ../inc/taxonomies.php:410
1140
  #, fuzzy
1141
  msgid "(default: taxonomy name)"
1142
  msgstr "新規項目名"
1143
 
1144
- #: ../inc/taxonomies.php:426
1145
  msgid "Rewrite With Front"
1146
  msgstr ""
1147
 
1148
- #: ../inc/taxonomies.php:427
1149
  msgid "(default: true)"
1150
  msgstr ""
1151
 
1152
- #: ../inc/taxonomies.php:443
1153
  #, fuzzy
1154
  msgid "Rewrite Hierarchical"
1155
  msgstr "階層"
1156
 
1157
- #: ../inc/taxonomies.php:444
1158
  msgid "(default: false)"
1159
  msgstr ""
1160
 
1161
- #: ../inc/taxonomies.php:460
1162
- msgid "Show Admin Column"
1163
- msgstr ""
1164
-
1165
  #: ../inc/taxonomies.php:473
1166
- #, php-format
1167
- msgid ""
1168
- "Taxonomy names should have %smax 32 characters%s, and only contain "
1169
- "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1170
- "letters that do not have accents."
1171
- msgstr ""
1172
-
1173
- #: ../inc/taxonomies.php:474
1174
- #, php-format
1175
- msgid ""
1176
- "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1177
- "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1178
- "settings will use default values. Labels, if left blank, will be "
1179
- "automatically created based on the taxonomy name. Hover over the question "
1180
- "marks for more details."
1181
- msgstr ""
1182
-
1183
- #: ../inc/taxonomies.php:475
1184
- #, fuzzy, php-format
1185
- msgid ""
1186
- "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1187
- "taxonomies. You can recreate your taxonomies and the terms will return. "
1188
- "Changing the name, after adding terms to the taxonomy, will not update the "
1189
- "terms in the database."
1190
  msgstr ""
1191
- "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1192
- "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1193
 
1194
- #: ../inc/taxonomies.php:564
1195
  msgid "Please provide a taxonomy to delete"
1196
  msgstr ""
1197
 
1198
- #: ../inc/taxonomies.php:615
1199
  msgid "Please provide a taxonomy name"
1200
  msgstr ""
1201
 
1202
- #: ../inc/taxonomies.php:631
1203
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1204
  msgstr ""
1205
 
1206
- #: ../inc/taxonomies.php:637
1207
  #, php-format
1208
  msgid "Please choose a different taxonomy name. %s is already used."
1209
  msgstr ""
1210
 
 
 
 
 
 
 
 
 
1211
  #, fuzzy
1212
  #~ msgid "Show In Menu"
1213
  #~ msgstr "UI を表示"
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 21:16-0600\n"
6
+ "PO-Revision-Date: 2015-06-12 21:16-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.1\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../custom-post-type-ui.php:60
20
  #, fuzzy
21
  msgid "Custom Post Types"
22
  msgstr "利用する投稿タイプ"
23
 
24
+ #: ../custom-post-type-ui.php:60
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
+ #: ../custom-post-type-ui.php:61
29
+ #, fuzzy
30
+ msgid "Add/Edit Post Types"
31
+ msgstr "カスタム投稿タイプを編集"
32
+
33
+ #: ../custom-post-type-ui.php:62
34
+ #, fuzzy
35
+ msgid "Add/Edit Taxonomies"
36
+ msgstr "ビルトイン分類"
37
+
38
+ #: ../custom-post-type-ui.php:63
39
+ msgid "Registered Types and Taxes"
40
+ msgstr ""
41
+
42
+ #: ../custom-post-type-ui.php:63
43
+ msgid "Registered Types/Taxes"
44
+ msgstr ""
45
+
46
+ #: ../custom-post-type-ui.php:64 ../custom-post-type-ui.php:491
47
+ msgid "Import/Export"
48
+ msgstr ""
49
+
50
+ #: ../custom-post-type-ui.php:65
51
+ #, fuzzy
52
+ msgid "Help/Support"
53
+ msgstr "サポート"
54
+
55
+ #: ../custom-post-type-ui.php:69
56
+ msgid "About CPT UI"
57
+ msgstr ""
58
+
59
+ #: ../custom-post-type-ui.php:339 ../custom-post-type-ui.php:418
60
  #, fuzzy
61
  msgid "Custom Post Type UI"
62
  msgstr "利用する投稿タイプ"
63
 
64
+ #: ../custom-post-type-ui.php:342
65
  msgid ""
66
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
67
  "with our plugin provides efficiency and speed in creating post types and "
68
  "taxonomies, to better organize your content, without having to touch code."
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:348
72
+ #, fuzzy
73
+ msgid "Post type migration"
74
+ msgstr "投稿タイプ名"
75
+
76
+ #: ../custom-post-type-ui.php:349
77
  msgid ""
78
+ "In the past, if you changed your post type slug, you would lose immediate "
79
+ "access to the posts in the post type and need to recover another way. We "
80
+ "have now added support for migrating all posts within the old post type to "
81
+ "the new post type you renamed it to."
82
  msgstr ""
83
 
84
+ #: ../custom-post-type-ui.php:352
85
+ msgid "UI Refinement"
86
+ msgstr ""
 
87
 
88
+ #: ../custom-post-type-ui.php:353
89
+ msgid ""
90
+ "After receiving feedback regarding the 1.0.x changes, we have further "
91
+ "simplified the UI to reduce the amount of clicking necessary to manage your "
92
+ "post types and taxonomies."
93
+ msgstr ""
94
 
95
+ #: ../custom-post-type-ui.php:356
96
+ msgid "Registered Post Type and Taxonomy Listings"
97
+ msgstr ""
 
98
 
99
+ #: ../custom-post-type-ui.php:357
100
+ msgid ""
101
+ "We are bringing back the listing of all CPTUI-registered post types and "
102
+ "taxonomies for easier quick view of what you have going."
103
  msgstr ""
104
 
105
+ #: ../custom-post-type-ui.php:362
106
  msgid "Help Support This Plugin!"
107
  msgstr ""
108
 
109
+ #: ../custom-post-type-ui.php:366
110
  msgid "Professional WordPress<br />Third Edition"
111
  msgstr ""
112
 
113
+ #: ../custom-post-type-ui.php:371
114
  msgid ""
115
  "The leading book on WordPress design and development! Brand new third "
116
  "edition!"
117
  msgstr ""
118
 
119
+ #: ../custom-post-type-ui.php:374
120
  msgid "Professional WordPress<br />Plugin Development"
121
  msgstr ""
122
 
123
+ #: ../custom-post-type-ui.php:379
124
  msgid "Highest rated WordPress development book on Amazon!"
125
  msgstr ""
126
 
127
+ #: ../custom-post-type-ui.php:382
128
  msgid "PayPal Donation"
129
  msgstr ""
130
 
131
+ #: ../custom-post-type-ui.php:389
132
  msgid "Please donate to the development of Custom Post Type UI:"
133
  msgstr ""
134
 
135
+ #: ../custom-post-type-ui.php:415
136
  #, php-format
137
+ msgid "%s version %s by %s"
138
  msgstr ""
139
 
140
+ #: ../custom-post-type-ui.php:426
141
  msgid "Please Report Bugs"
142
  msgstr ""
143
 
144
+ #: ../custom-post-type-ui.php:429
145
  msgid "Follow on Twitter:"
146
  msgstr ""
147
 
148
+ #: ../custom-post-type-ui.php:493
 
 
 
 
149
  #, fuzzy
150
  msgid "Manage Taxonomies"
151
  msgstr "カスタム分類の管理"
152
 
153
+ #: ../custom-post-type-ui.php:497
154
  #, fuzzy
155
  msgid "Manage Post Types"
156
  msgstr "カスタム投稿タイプの管理"
157
 
158
+ #: ../custom-post-type-ui.php:523
159
  #, fuzzy
160
  msgid "Add New Post Type"
161
  msgstr "利用する投稿タイプ"
162
 
163
+ #: ../custom-post-type-ui.php:526
164
  #, fuzzy
165
  msgid "Edit Post Types"
166
  msgstr "カスタム投稿タイプを編集"
167
 
168
+ #: ../custom-post-type-ui.php:530
169
  #, fuzzy
170
  msgid "Add New Taxonomy"
171
  msgstr "分類名"
172
 
173
+ #: ../custom-post-type-ui.php:533
174
  #, fuzzy
175
  msgid "Edit Taxonomies"
176
  msgstr "ビルトイン分類"
177
 
178
+ #: ../custom-post-type-ui.php:537 ../inc/listings.php:16
179
+ #: ../inc/listings.php:149 ../inc/listings.php:224
180
  #, fuzzy
181
  msgid "Post Types"
182
  msgstr "投稿タイプ名"
183
 
184
+ #: ../custom-post-type-ui.php:538 ../inc/import_export.php:380
185
+ #: ../inc/listings.php:34 ../inc/listings.php:122 ../inc/listings.php:132
186
  #, fuzzy
187
  msgid "Taxonomies"
188
  msgstr "ビルトイン分類"
189
 
190
+ #: ../custom-post-type-ui.php:539
191
  msgid "Get Code"
192
  msgstr ""
193
 
194
+ #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
195
+ #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
196
+ #: ../inc/post-types.php:373 ../inc/taxonomies.php:338
197
  msgid "Settings"
198
  msgstr ""
199
 
200
+ #: ../custom-post-type-ui.php:622
201
  msgid "Help"
202
  msgstr ""
203
 
204
+ #: ../custom-post-type-ui.php:650
205
  #, php-format
206
  msgid "%s has been successfully added"
207
  msgstr ""
208
 
209
+ #: ../custom-post-type-ui.php:652
210
  #, php-format
211
  msgid "%s has failed to be added"
212
  msgstr ""
213
 
214
+ #: ../custom-post-type-ui.php:656
215
  #, php-format
216
  msgid "%s has been successfully updated"
217
  msgstr ""
218
 
219
+ #: ../custom-post-type-ui.php:658
220
  #, php-format
221
  msgid "%s has failed to be updated"
222
  msgstr ""
223
 
224
+ #: ../custom-post-type-ui.php:662
225
  #, php-format
226
  msgid "%s has been successfully deleted"
227
  msgstr ""
228
 
229
+ #: ../custom-post-type-ui.php:664
230
  #, php-format
231
  msgid "%s has failed to be deleted"
232
  msgstr ""
233
 
234
+ #: ../custom-post-type-ui.php:668
235
  #, php-format
236
  msgid "%s has been successfully imported"
237
  msgstr ""
238
 
239
+ #: ../custom-post-type-ui.php:670
240
  #, php-format
241
  msgid "%s has failed to be imported"
242
  msgstr ""
243
 
244
+ #: ../custom-post-type-ui.php:753 ../custom-post-type-ui.php:770
245
  #, fuzzy, php-format
246
  msgid "Add new %s"
247
  msgstr "新規追加"
248
 
249
+ #: ../custom-post-type-ui.php:754 ../custom-post-type-ui.php:768
250
  #, fuzzy, php-format
251
  msgid "Edit %s"
252
  msgstr "編集"
253
 
254
+ #: ../custom-post-type-ui.php:755
255
  #, php-format
256
  msgid "New %s"
257
  msgstr ""
258
 
259
+ #: ../custom-post-type-ui.php:756
260
  #, fuzzy, php-format
261
  msgid "View %s"
262
  msgstr "表示"
263
 
264
+ #: ../custom-post-type-ui.php:757 ../custom-post-type-ui.php:765
265
  #, fuzzy, php-format
266
  msgid "All %s"
267
  msgstr "すべての項目"
268
 
269
+ #: ../custom-post-type-ui.php:758 ../custom-post-type-ui.php:763
270
  #, fuzzy, php-format
271
  msgid "Search %s"
272
  msgstr "項目検索"
273
 
274
+ #: ../custom-post-type-ui.php:759
275
  #, fuzzy, php-format
276
  msgid "No %s found."
277
  msgstr "見つかりません"
278
 
279
+ #: ../custom-post-type-ui.php:760
280
  #, fuzzy, php-format
281
  msgid "No %s found in trash."
282
  msgstr "ゴミ箱にはありません。"
283
 
284
+ #: ../custom-post-type-ui.php:764
285
  #, fuzzy, php-format
286
  msgid "Popular %s"
287
  msgstr "よく利用されている項目"
288
 
289
+ #: ../custom-post-type-ui.php:766
290
  #, fuzzy, php-format
291
  msgid "Parent %s"
292
  msgstr "親"
293
 
294
+ #: ../custom-post-type-ui.php:767
295
  #, fuzzy, php-format
296
  msgid "Parent %s:"
297
  msgstr "親"
298
 
299
+ #: ../custom-post-type-ui.php:769
300
  #, php-format
301
  msgid "Update %s"
302
  msgstr ""
303
 
304
+ #: ../custom-post-type-ui.php:771
305
  #, fuzzy, php-format
306
  msgid "New %s name"
307
  msgstr "新規項目名"
308
 
309
+ #: ../custom-post-type-ui.php:772
310
  #, fuzzy, php-format
311
  msgid "Separate %s with commas"
312
  msgstr "項目が複数ある場合はコンマで区切ってください。"
313
 
314
+ #: ../custom-post-type-ui.php:773
315
  #, fuzzy, php-format
316
  msgid "Add or remove %s"
317
  msgstr "項目の追加もしくは削除"
318
 
319
+ #: ../custom-post-type-ui.php:774
320
  #, fuzzy, php-format
321
  msgid "Choose from the most used %s"
322
  msgstr "最もよく使われているものから選択"
323
 
324
+ #: ../inc/import_export.php:42
325
  msgid ""
326
  "If you are wanting to migrate registered post types or taxonomies from this "
327
  "site to another, that will also use Custom Post Type UI, use the import and "
329
  "the information in the \"Get Code\" tab."
330
  msgstr ""
331
 
332
+ #: ../inc/import_export.php:45
333
  msgid "NOTE"
334
  msgstr ""
335
 
336
+ #: ../inc/import_export.php:46
337
  msgid "This will not export the associated posts, just the settings."
338
  msgstr ""
339
 
340
+ #: ../inc/import_export.php:53
341
  #, fuzzy
342
  msgid "Import Post Types"
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:62
360
  #, fuzzy
361
  msgid "Export Post Types"
362
  msgstr "利用する投稿タイプ"
363
 
364
+ #: ../inc/import_export.php:68
365
  msgid "No post types registered yet."
366
  msgstr ""
367
 
368
+ #: ../inc/import_export.php:72
369
  msgid ""
370
  "Use the content above to import current post types into a different "
371
  "WordPress site. You can also use this to simply back up your post type "
372
  "settings."
373
  msgstr ""
374
 
375
+ #: ../inc/import_export.php:78
376
  #, fuzzy
377
  msgid "Import Taxonomies"
378
  msgstr "ビルトイン分類"
379
 
380
+ #: ../inc/import_export.php:82
381
  msgid ""
382
  "To import taxonomies from a different WordPress site, paste the exported "
383
  "content from that site and click the \"Import\" button."
384
  msgstr ""
385
 
386
+ #: ../inc/import_export.php:87
387
  #, fuzzy
388
  msgid "Export Taxonomies"
389
  msgstr "ビルトイン分類"
390
 
391
+ #: ../inc/import_export.php:93
392
  msgid "No taxonomies registered yet."
393
  msgstr ""
394
 
395
+ #: ../inc/import_export.php:97
396
  msgid ""
397
  "Use the content above to import current taxonomies into a different "
398
  "WordPress site. You can also use this to simply back up your taxonomy "
399
  "settings."
400
  msgstr ""
401
 
402
+ #: ../inc/import_export.php:105
403
  msgid "Get Post Type and Taxonomy Code"
404
  msgstr ""
405
 
406
+ #: ../inc/import_export.php:107
407
  #, fuzzy
408
  msgid "All CPT UI Post Types"
409
  msgstr "追加されているカスタム投稿タイプ"
410
 
411
+ #: ../inc/import_export.php:108 ../inc/import_export.php:112
412
  msgid "Copy/paste the code below into your functions.php file."
413
  msgstr ""
414
 
415
+ #: ../inc/import_export.php:111
416
  #, fuzzy
417
  msgid "All CPT UI Taxonomies"
418
  msgstr "ビルトイン分類"
419
 
420
+ #: ../inc/import_export.php:142
421
  msgid "No taxonomies to display at this time"
422
  msgstr ""
423
 
424
+ #: ../inc/import_export.php:241
425
  msgid "No post types to display at this time"
426
  msgstr ""
427
 
428
+ #: ../inc/import_export.php:367
429
  #, fuzzy
430
  msgid "Post types"
431
  msgstr "投稿タイプ名"
432
 
433
+ #: ../inc/listings.php:10
434
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
435
  msgstr ""
436
 
437
+ #: ../inc/listings.php:18 ../inc/listings.php:134
438
+ #, php-format
439
+ msgid "Total count: %d"
440
  msgstr ""
441
 
442
+ #: ../inc/listings.php:31 ../inc/listings.php:119
443
  #, fuzzy
444
  msgid "Post Type"
445
  msgstr "利用する投稿タイプ"
446
 
447
+ #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:644
448
  msgid "Supports"
449
  msgstr "サポート"
450
 
451
+ #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
452
+ #: ../inc/listings.php:225 ../inc/post-types.php:211 ../inc/taxonomies.php:196
453
  #, fuzzy
454
  msgid "Labels"
455
  msgstr "ラベル"
456
 
457
+ #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:267
458
+ msgid "Edit"
459
+ msgstr "編集"
460
+
461
+ #: ../inc/listings.php:75
462
+ msgid "View frontend archive"
463
+ msgstr ""
464
+
465
+ #: ../inc/listings.php:108 ../inc/listings.php:211
466
  msgid "No custom labels to display"
467
  msgstr ""
468
 
469
+ #: ../inc/listings.php:147 ../inc/listings.php:222
470
  #, fuzzy
471
  msgid "Taxonomy"
472
  msgstr "分類名"
473
 
474
+ #: ../inc/post-types.php:30 ../inc/taxonomies.php:25
475
  msgid "Are you sure you want to delete this?"
476
  msgstr ""
477
 
478
+ #: ../inc/post-types.php:86
479
  msgid ""
480
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
481
+ "registers a new post type entry for your install."
482
  msgstr ""
483
 
484
+ #: ../inc/post-types.php:87
485
+ msgid ""
486
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
487
+ "slugs and update post types for existing posts."
488
  msgstr ""
489
 
490
+ #: ../inc/post-types.php:88 ../inc/taxonomies.php:84
491
+ msgid "Select: "
492
+ msgstr ""
493
+
494
+ #: ../inc/post-types.php:120
495
  #, fuzzy
496
  msgid "Post Type Slug"
497
  msgstr "投稿タイプ名"
498
 
499
+ #: ../inc/post-types.php:121
500
  msgid "(e.g. movie)"
501
  msgstr ""
502
 
503
+ #: ../inc/post-types.php:133 ../inc/taxonomies.php:124
504
  #, fuzzy
505
  msgid "Plural Label"
506
  msgstr "単数形のラベル"
507
 
508
+ #: ../inc/post-types.php:134
509
  msgid "(e.g. Movies)"
510
  msgstr ""
511
 
512
+ #: ../inc/post-types.php:145 ../inc/taxonomies.php:133
513
  msgid "Singular Label"
514
  msgstr "単数形のラベル"
515
 
516
+ #: ../inc/post-types.php:146
517
  msgid "(e.g. Movie)"
518
  msgstr ""
519
 
520
+ #: ../inc/post-types.php:163
521
  msgid "Description"
522
  msgstr "説明"
523
 
524
+ #: ../inc/post-types.php:176
525
+ msgid "Migrate posts to newly renamed post type?"
526
+ msgstr ""
527
+
528
+ #: ../inc/post-types.php:186
529
  #, fuzzy
530
+ msgid "Save Post Type"
531
  msgstr "利用する投稿タイプ"
532
 
533
+ #: ../inc/post-types.php:187
534
  #, fuzzy
535
  msgid "Delete Post Type"
536
  msgstr "利用する投稿タイプ"
537
 
538
+ #: ../inc/post-types.php:189
539
  #, fuzzy
540
  msgid "Add Post Type"
541
  msgstr "利用する投稿タイプ"
542
 
543
+ #: ../inc/post-types.php:200 ../inc/taxonomies.php:185
544
+ msgid "Starter Notes"
545
+ msgstr ""
546
+
547
+ #: ../inc/post-types.php:203
548
+ #, php-format
549
+ msgid ""
550
+ "Post Type names should have %smax 20 characters%s, and only contain "
551
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
552
+ "letters that do not have accents. Reserved names: post, page, attachment, "
553
+ "revision, nav_menu_item."
554
  msgstr ""
555
 
556
+ #: ../inc/post-types.php:204
557
+ #, php-format
558
+ msgid ""
559
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
560
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
561
+ "values. Labels, if left blank, will be automatically created based on the "
562
+ "post type name. Hover over the question mark for more details."
563
+ msgstr ""
564
+
565
+ #: ../inc/post-types.php:205
566
+ #, fuzzy, php-format
567
+ msgid ""
568
+ "Deleting custom post types will %sNOT%s delete any content into the database "
569
+ "or added to those post types. You can easily recreate your post types and "
570
+ "the content will still exist."
571
+ msgstr ""
572
+ "カスタム投稿タイプを削除してもその投稿タイプに追加されている<strong>コンテン"
573
+ "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
574
+ "ません。"
575
+
576
+ #: ../inc/post-types.php:219 ../inc/taxonomies.php:206
577
  #, fuzzy
578
  msgid "Menu Name"
579
  msgstr "名前"
580
 
581
+ #: ../inc/post-types.php:224
582
  msgid "(e.g. My Movies)"
583
  msgstr ""
584
 
585
+ #: ../inc/post-types.php:231 ../inc/taxonomies.php:215
586
  msgid "All Items"
587
  msgstr "すべての項目"
588
 
589
+ #: ../inc/post-types.php:236
590
  msgid "(e.g. All Movies)"
591
  msgstr ""
592
 
593
+ #: ../inc/post-types.php:243
594
  msgid "Add New"
595
  msgstr "新規追加"
596
 
597
+ #: ../inc/post-types.php:248
598
  #, fuzzy
599
  msgid "(e.g. Add New)"
600
  msgstr "新規追加"
601
 
602
+ #: ../inc/post-types.php:255 ../inc/taxonomies.php:251
603
  msgid "Add New Item"
604
  msgstr "新規項目追加"
605
 
606
+ #: ../inc/post-types.php:260
607
  msgid "(e.g. Add New Movie)"
608
  msgstr ""
609
 
610
+ #: ../inc/post-types.php:272
 
 
 
 
611
  msgid "(e.g. Edit)"
612
  msgstr ""
613
 
614
+ #: ../inc/post-types.php:279 ../inc/taxonomies.php:224
615
  msgid "Edit Item"
616
  msgstr "項目を編集"
617
 
618
+ #: ../inc/post-types.php:284
619
  msgid "(e.g. Edit Movie)"
620
  msgstr ""
621
 
622
+ #: ../inc/post-types.php:291
623
  msgid "New Item"
624
  msgstr "新規項目"
625
 
626
+ #: ../inc/post-types.php:296
627
  #, fuzzy
628
  msgid "(e.g. New Movie)"
629
  msgstr "新規項目追加"
630
 
631
+ #: ../inc/post-types.php:303
632
  msgid "View"
633
  msgstr "表示"
634
 
635
+ #: ../inc/post-types.php:308
636
  msgid "(e.g. View)"
637
  msgstr ""
638
 
639
+ #: ../inc/post-types.php:315 ../inc/taxonomies.php:233
640
  msgid "View Item"
641
  msgstr "項目を表示"
642
 
643
+ #: ../inc/post-types.php:320
644
  msgid "(e.g. View Movie)"
645
  msgstr ""
646
 
647
+ #: ../inc/post-types.php:327
648
  #, fuzzy
649
  msgid "Search Item"
650
  msgstr "項目検索"
651
 
652
+ #: ../inc/post-types.php:332
653
  msgid "(e.g. Search Movie)"
654
  msgstr ""
655
 
656
+ #: ../inc/post-types.php:339
657
  msgid "Not Found"
658
  msgstr "見つかりません"
659
 
660
+ #: ../inc/post-types.php:344
661
  msgid "(e.g. No Movies found)"
662
  msgstr ""
663
 
664
+ #: ../inc/post-types.php:351
665
  msgid "Not Found in Trash"
666
  msgstr "ゴミ箱にはありません。"
667
 
668
+ #: ../inc/post-types.php:356
669
  #, fuzzy
670
  msgid "(e.g. No Movies found in Trash)"
671
  msgstr "ゴミ箱にはありません。"
672
 
673
+ #: ../inc/post-types.php:363
674
  msgid "Parent"
675
  msgstr "親"
676
 
677
+ #: ../inc/post-types.php:368
678
  msgid "(e.g. Parent Movie)"
679
  msgstr ""
680
 
681
+ #: ../inc/post-types.php:382 ../inc/post-types.php:402
682
+ #: ../inc/post-types.php:428 ../inc/post-types.php:460
683
+ #: ../inc/post-types.php:491 ../inc/post-types.php:511
684
+ #: ../inc/post-types.php:543 ../inc/post-types.php:563
685
+ #: ../inc/post-types.php:606 ../inc/taxonomies.php:344
686
+ #: ../inc/taxonomies.php:361 ../inc/taxonomies.php:378
687
+ #: ../inc/taxonomies.php:404 ../inc/taxonomies.php:430
688
+ #: ../inc/taxonomies.php:447 ../inc/taxonomies.php:464
689
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
690
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
691
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
693
  msgid "False"
694
  msgstr ""
695
 
696
+ #: ../inc/post-types.php:383 ../inc/post-types.php:403
697
+ #: ../inc/post-types.php:429 ../inc/post-types.php:461
698
+ #: ../inc/post-types.php:492 ../inc/post-types.php:512
699
+ #: ../inc/post-types.php:544 ../inc/post-types.php:564
700
+ #: ../inc/post-types.php:607 ../inc/taxonomies.php:345
701
+ #: ../inc/taxonomies.php:362 ../inc/taxonomies.php:379
702
+ #: ../inc/taxonomies.php:405 ../inc/taxonomies.php:431
703
+ #: ../inc/taxonomies.php:448 ../inc/taxonomies.php:465
704
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
705
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
706
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
708
  msgid "True"
709
  msgstr ""
710
 
711
+ #: ../inc/post-types.php:391 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
712
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
713
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
714
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
715
  msgid "Public"
716
  msgstr "一般公開"
717
 
718
+ #: ../inc/post-types.php:392 ../inc/post-types.php:412
719
+ #: ../inc/post-types.php:521 ../inc/post-types.php:553
720
+ #: ../inc/post-types.php:573 ../inc/post-types.php:615
721
+ #: ../inc/taxonomies.php:371 ../inc/taxonomies.php:388
722
+ #: ../inc/taxonomies.php:414 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
723
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
724
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
725
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
726
  msgid "(default: True)"
727
  msgstr ""
728
 
729
+ #: ../inc/post-types.php:411 ../inc/taxonomies.php:370
730
  msgid "Show UI"
731
  msgstr "UI を表示"
732
 
733
+ #: ../inc/post-types.php:421
734
  msgid "Has Archive"
735
  msgstr ""
736
 
737
+ #: ../inc/post-types.php:423
738
  msgid "If left blank, the archive slug will default to the post type slug."
739
  msgstr ""
740
 
741
+ #: ../inc/post-types.php:437 ../inc/post-types.php:470
742
+ #: ../inc/post-types.php:501 ../inc/taxonomies.php:354
743
+ #: ../inc/taxonomies.php:474
744
  msgid "(default: False)"
745
  msgstr ""
746
 
747
+ #: ../inc/post-types.php:469
748
  msgid "Exclude From Search"
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:482
752
  msgid "Capability Type"
753
  msgstr "利用タイプ"
754
 
755
+ #: ../inc/post-types.php:500 ../inc/taxonomies.php:353
756
  msgid "Hierarchical"
757
  msgstr "階層"
758
 
759
+ #: ../inc/post-types.php:520 ../inc/taxonomies.php:413
760
  msgid "Rewrite"
761
  msgstr "リライト"
762
 
763
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:424
764
  msgid "Custom Rewrite Slug"
765
  msgstr "カスタムリライトスラッグ"
766
 
767
+ #: ../inc/post-types.php:534
768
+ msgid "(default: post type slug)"
769
  msgstr ""
770
 
771
+ #: ../inc/post-types.php:552
772
  msgid "With Front"
773
  msgstr ""
774
 
775
+ #: ../inc/post-types.php:572 ../inc/taxonomies.php:387
776
  msgid "Query Var"
777
  msgstr "クエリーバージョン"
778
 
779
+ #: ../inc/post-types.php:582
780
  msgid "Menu Position"
781
  msgstr "メニューの位置"
782
 
783
+ #: ../inc/post-types.php:584
784
  msgid ""
785
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
786
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
787
  "\" section. Range of 5-100"
788
  msgstr ""
789
 
790
+ #: ../inc/post-types.php:599
791
  msgid "Show in Menu"
792
  msgstr ""
793
 
794
+ #: ../inc/post-types.php:601
795
  msgid ""
796
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
797
  "php\" is indicated for second input, post type will be sub menu of that."
798
  msgstr ""
799
 
800
+ #: ../inc/post-types.php:639
801
  #, fuzzy
802
  msgid "Menu Icon"
803
  msgstr "メニューの位置"
804
 
805
+ #: ../inc/post-types.php:640
806
  msgid "(Full URL for icon or Dashicon class)"
807
  msgstr ""
808
 
809
+ #: ../inc/post-types.php:654
810
  msgid "Title"
811
  msgstr ""
812
 
813
+ #: ../inc/post-types.php:669
814
  #, fuzzy
815
  msgid "Editor"
816
  msgstr "編集"
817
 
818
+ #: ../inc/post-types.php:684
819
  msgid "Excerpt"
820
  msgstr ""
821
 
822
+ #: ../inc/post-types.php:699
823
  msgid "Trackbacks"
824
  msgstr ""
825
 
826
+ #: ../inc/post-types.php:714
827
  #, fuzzy
828
  msgid "Custom Fields"
829
  msgstr "カスタムリライトスラッグ"
830
 
831
+ #: ../inc/post-types.php:729
832
  msgid "Comments"
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:744
836
  msgid "Revisions"
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:759
840
  msgid "Featured Image"
841
  msgstr ""
842
 
843
+ #: ../inc/post-types.php:774
844
  msgid "Author"
845
  msgstr ""
846
 
847
+ #: ../inc/post-types.php:789
848
  msgid "Page Attributes"
849
  msgstr ""
850
 
851
+ #: ../inc/post-types.php:804
852
  msgid "Post Formats"
853
  msgstr ""
854
 
855
+ #: ../inc/post-types.php:810
856
  msgid "Use the option below to explicitly set \"supports\" to false."
857
  msgstr ""
858
 
859
+ #: ../inc/post-types.php:818
860
  msgid "None"
861
  msgstr ""
862
 
863
+ #: ../inc/post-types.php:825
864
+ #, fuzzy
865
+ msgid "Custom \"Supports\""
866
+ msgstr "サポート"
 
 
 
 
 
 
 
 
 
 
 
 
867
 
868
+ #: ../inc/post-types.php:826
 
869
  msgid ""
870
+ "Use this input to register custom \"supports\" values, separated by commas."
 
 
 
871
  msgstr ""
872
 
873
+ #: ../inc/post-types.php:838
874
+ msgid "Built-in Taxonomies"
875
+ msgstr "ビルトイン分類"
 
 
 
 
 
 
 
876
 
877
+ #: ../inc/post-types.php:966
878
  msgid "Please provide a post type to delete"
879
  msgstr ""
880
 
881
+ #: ../inc/post-types.php:1026
882
  msgid "Please provide a post type name"
883
  msgstr ""
884
 
885
+ #: ../inc/post-types.php:1050
886
  msgid "Please do not use quotes in post type names or rewrite slugs"
887
  msgstr ""
888
 
889
+ #: ../inc/post-types.php:1057
890
  #, php-format
891
  msgid "Please choose a different post type name. %s is already registered."
892
  msgstr ""
893
 
894
+ #: ../inc/support.php:41
895
  #, fuzzy
896
  msgid "Custom Post Type UI Support"
897
  msgstr "Custom Post Types UI"
898
 
899
+ #: ../inc/support.php:43
900
  #, php-format
901
  msgid ""
902
  "Please note that this plugin will NOT handle display of registered post "
904
  "you. If all else fails, visit us on the %s"
905
  msgstr ""
906
 
907
+ #: ../inc/support.php:44
908
  #, fuzzy
909
  msgid "Support Forums"
910
  msgstr "サポート"
911
 
912
+ #: ../inc/support.php:50
913
  msgid "General"
914
  msgstr ""
915
 
916
+ #: ../inc/support.php:53
917
  msgid ""
918
  "I changed my custom post type name and now I can not get to my posts. How do "
919
  "I get them back?"
920
  msgstr ""
921
 
922
+ #: ../inc/support.php:54
923
  msgid ""
924
  "You can either change the custom post type name back to the original name or "
925
  "try the Post Type Switcher plugin"
926
  msgstr ""
927
 
928
+ #: ../inc/support.php:59
929
  msgid ""
930
  "I changed my custom post type or taxonomy slug and now I have duplicates "
931
  "shown. How do I remove the duplicate?"
932
  msgstr ""
933
 
934
+ #: ../inc/support.php:60
935
  msgid ""
936
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
937
  "saved option which gets registered as its own post type or taxonomy. Since "
939
  "delete the previous version's entry."
940
  msgstr ""
941
 
942
+ #: ../inc/support.php:63
943
  msgid ""
944
  "I have added post thumbnail and/or post format support to my post type, but "
945
  "those do not appear when adding a post type post."
946
  msgstr ""
947
 
948
+ #: ../inc/support.php:64
949
  msgid ""
950
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
951
  msgstr ""
952
 
953
+ #: ../inc/support.php:69
954
  msgid "Front-end Display"
955
  msgstr ""
956
 
957
+ #: ../inc/support.php:72
958
  msgid "What template files should I edit to alter my post type display?"
959
  msgstr ""
960
 
961
+ #: ../inc/support.php:73
962
  #, php-format
963
  msgid ""
964
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
965
  "details about available templates."
966
  msgstr ""
967
 
968
+ #: ../inc/support.php:80
969
  msgid "How do I display my custom post type on my site?"
970
  msgstr ""
971
 
972
+ #: ../inc/support.php:81
973
  #, php-format
974
  msgid ""
975
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
977
  "should be something like \"http://www.mysite.com/post-type-slug\""
978
  msgstr ""
979
 
980
+ #: ../inc/support.php:87
981
  msgid ""
982
  "I have added categories and tags to my custom post type, but they do not "
983
  "appear in the archives."
984
  msgstr ""
985
 
986
+ #: ../inc/support.php:88
987
  #, php-format
988
  msgid ""
989
  "You will need to add your newly created post type to the types that the "
991
  "that at %s"
992
  msgstr ""
993
 
994
+ #: ../inc/support.php:97
995
  msgid "Advanced"
996
  msgstr ""
997
 
998
+ #: ../inc/support.php:100
999
  msgid "How do I add custom metaboxes to my post type?"
1000
  msgstr ""
1001
 
1002
+ #: ../inc/support.php:102
1003
  #, php-format
1004
  msgid ""
1005
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1006
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1007
  msgstr ""
1008
 
1009
+ #: ../inc/support.php:108
1010
  msgid ""
1011
  "How do I add a newly registered taxonomy to a post type that already exists?"
1012
  msgstr ""
1013
 
1014
+ #: ../inc/support.php:110
1015
  #, php-format
1016
  msgid "Check out the %s function for documentation and usage examples."
1017
  msgstr ""
1018
 
1019
+ #: ../inc/support.php:116
1020
  #, fuzzy
1021
  msgid "Post relationships?"
1022
  msgstr "利用する投稿タイプ"
1023
 
1024
+ #: ../inc/support.php:117
1025
  #, php-format
1026
  msgid ""
1027
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1028
  "plugin that should be a good start."
1029
  msgstr ""
1030
 
1031
+ #: ../inc/support.php:126
1032
+ msgid "Is there any function reference list?"
1033
+ msgstr ""
1034
+
1035
+ #: ../inc/support.php:127
1036
+ #, php-format
1037
+ msgid ""
1038
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1039
+ "will be useful as they are attached to hooks."
1040
+ msgstr ""
1041
+
1042
+ #: ../inc/support.php:131
1043
  msgid ""
1044
  "How do I filter the \"enter title here\" text in the post editor screen?"
1045
  msgstr ""
1046
 
1047
+ #: ../inc/support.php:132
1048
  msgid ""
1049
  "Change text inside the post/page editor title field. Should be able to adapt "
1050
  "as necessary."
1051
  msgstr ""
1052
 
1053
+ #: ../inc/taxonomies.php:82
1054
  msgid ""
1055
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1056
+ "registers a new taxonomy entry for your install."
1057
  msgstr ""
1058
 
1059
+ #: ../inc/taxonomies.php:113
1060
  #, fuzzy
1061
  msgid "Taxonomy Slug"
1062
  msgstr "分類名"
1063
 
1064
+ #: ../inc/taxonomies.php:114
1065
+ #, fuzzy
1066
+ msgid "(e.g. actor)"
1067
+ msgstr "項目の追加もしくは削除"
1068
 
1069
+ #: ../inc/taxonomies.php:123 ../inc/taxonomies.php:205
1070
  msgid "(e.g. Actors)"
1071
  msgstr ""
1072
 
1073
+ #: ../inc/taxonomies.php:132
1074
  msgid "(e.g. Actor)"
1075
  msgstr ""
1076
 
1077
+ #: ../inc/taxonomies.php:137
1078
  msgid "Attach to Post Type"
1079
  msgstr "利用する投稿タイプ"
1080
 
1081
+ #: ../inc/taxonomies.php:176
1082
  #, fuzzy
1083
+ msgid "Save Taxonomy"
1084
+ msgstr "分類名"
1085
 
1086
+ #: ../inc/taxonomies.php:177
1087
  #, fuzzy
1088
  msgid "Delete Taxonomy"
1089
  msgstr "カスタム分類作成"
1090
 
1091
+ #: ../inc/taxonomies.php:179
1092
  #, fuzzy
1093
  msgid "Add Taxonomy"
1094
  msgstr "分類名"
1095
 
1096
+ #: ../inc/taxonomies.php:188
1097
+ #, php-format
1098
+ msgid ""
1099
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1100
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1101
+ "letters that do not have accents."
1102
+ msgstr ""
1103
+
1104
+ #: ../inc/taxonomies.php:189
1105
+ #, php-format
1106
+ msgid ""
1107
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1108
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1109
+ "settings will use default values. Labels, if left blank, will be "
1110
+ "automatically created based on the taxonomy name. Hover over the question "
1111
+ "marks for more details."
1112
+ msgstr ""
1113
+
1114
+ #: ../inc/taxonomies.php:190
1115
+ #, fuzzy, php-format
1116
+ msgid ""
1117
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1118
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1119
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1120
+ "terms in the database."
1121
+ msgstr ""
1122
+ "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1123
+ "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1124
+
1125
+ #: ../inc/taxonomies.php:214
1126
  msgid "(e.g. All Actors)"
1127
  msgstr ""
1128
 
1129
+ #: ../inc/taxonomies.php:223
1130
  msgid "(e.g. Edit Actor)"
1131
  msgstr ""
1132
 
1133
+ #: ../inc/taxonomies.php:232
1134
  msgid "(e.g. View Actor)"
1135
  msgstr ""
1136
 
1137
+ #: ../inc/taxonomies.php:241
1138
  msgid "(e.g. Update Actor Name)"
1139
  msgstr ""
1140
 
1141
+ #: ../inc/taxonomies.php:242
1142
  #, fuzzy
1143
  msgid "Update Item Name"
1144
  msgstr "項目をアップデート"
1145
 
1146
+ #: ../inc/taxonomies.php:250
1147
  msgid "(e.g. Add New Actor)"
1148
  msgstr ""
1149
 
1150
+ #: ../inc/taxonomies.php:259
1151
  msgid "(e.g. New Actor Name)"
1152
  msgstr ""
1153
 
1154
+ #: ../inc/taxonomies.php:260
1155
  msgid "New Item Name"
1156
  msgstr "新規項目名"
1157
 
1158
+ #: ../inc/taxonomies.php:268
1159
  msgid "(e.g. Parent Actor)"
1160
  msgstr ""
1161
 
1162
+ #: ../inc/taxonomies.php:269
1163
  msgid "Parent Item"
1164
  msgstr "親項目"
1165
 
1166
+ #: ../inc/taxonomies.php:277
1167
  msgid "(e.g. Parent Actor:)"
1168
  msgstr ""
1169
 
1170
+ #: ../inc/taxonomies.php:278
1171
  msgid "Parent Item Colon"
1172
  msgstr "親項目コロン"
1173
 
1174
+ #: ../inc/taxonomies.php:286
1175
  msgid "(e.g. Search Actors)"
1176
  msgstr ""
1177
 
1178
+ #: ../inc/taxonomies.php:287
1179
  msgid "Search Items"
1180
  msgstr "項目検索"
1181
 
1182
+ #: ../inc/taxonomies.php:295
1183
  msgid "(e.g. Popular Actors)"
1184
  msgstr ""
1185
 
1186
+ #: ../inc/taxonomies.php:296
1187
  msgid "Popular Items"
1188
  msgstr "よく利用されている項目"
1189
 
1190
+ #: ../inc/taxonomies.php:304
1191
  #, fuzzy
1192
  msgid "(e.g. Separate actors with commas)"
1193
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1194
 
1195
+ #: ../inc/taxonomies.php:305
1196
  msgid "Separate Items with Commas"
1197
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1198
 
1199
+ #: ../inc/taxonomies.php:313
1200
  #, fuzzy
1201
  msgid "(e.g. Add or remove actors)"
1202
  msgstr "項目の追加もしくは削除"
1203
 
1204
+ #: ../inc/taxonomies.php:314
1205
  msgid "Add or Remove Items"
1206
  msgstr "項目の追加もしくは削除"
1207
 
1208
+ #: ../inc/taxonomies.php:322
1209
  #, fuzzy
1210
  msgid "(e.g. Choose from the most used actors)"
1211
  msgstr "最もよく使われているものから選択"
1212
 
1213
+ #: ../inc/taxonomies.php:323
1214
  msgid "Choose From Most Used"
1215
  msgstr "最もよく使われているものから選択"
1216
 
1217
+ #: ../inc/taxonomies.php:331
1218
  msgid "(e.g. No actors found)"
1219
  msgstr ""
1220
 
1221
+ #: ../inc/taxonomies.php:332
1222
  #, fuzzy
1223
  msgid "Not found"
1224
  msgstr "見つかりません"
1225
 
1226
+ #: ../inc/taxonomies.php:397
1227
  msgid "(default: none). Query Var needs to be true to use."
1228
  msgstr ""
1229
 
1230
+ #: ../inc/taxonomies.php:398
1231
  msgid "Custom Query Var String"
1232
  msgstr ""
1233
 
1234
+ #: ../inc/taxonomies.php:423
1235
  #, fuzzy
1236
  msgid "(default: taxonomy name)"
1237
  msgstr "新規項目名"
1238
 
1239
+ #: ../inc/taxonomies.php:439
1240
  msgid "Rewrite With Front"
1241
  msgstr ""
1242
 
1243
+ #: ../inc/taxonomies.php:440
1244
  msgid "(default: true)"
1245
  msgstr ""
1246
 
1247
+ #: ../inc/taxonomies.php:456
1248
  #, fuzzy
1249
  msgid "Rewrite Hierarchical"
1250
  msgstr "階層"
1251
 
1252
+ #: ../inc/taxonomies.php:457
1253
  msgid "(default: false)"
1254
  msgstr ""
1255
 
 
 
 
 
1256
  #: ../inc/taxonomies.php:473
1257
+ msgid "Show Admin Column"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1258
  msgstr ""
 
 
1259
 
1260
+ #: ../inc/taxonomies.php:573
1261
  msgid "Please provide a taxonomy to delete"
1262
  msgstr ""
1263
 
1264
+ #: ../inc/taxonomies.php:624
1265
  msgid "Please provide a taxonomy name"
1266
  msgstr ""
1267
 
1268
+ #: ../inc/taxonomies.php:640
1269
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1270
  msgstr ""
1271
 
1272
+ #: ../inc/taxonomies.php:646
1273
  #, php-format
1274
  msgid "Please choose a different taxonomy name. %s is already used."
1275
  msgstr ""
1276
 
1277
+ #, fuzzy
1278
+ #~ msgid "Edit Post Type"
1279
+ #~ msgstr "利用する投稿タイプ"
1280
+
1281
+ #, fuzzy
1282
+ #~ msgid "Edit Taxonomy"
1283
+ #~ msgstr "カスタム分類の編集"
1284
+
1285
  #, fuzzy
1286
  #~ msgid "Show In Menu"
1287
  #~ msgstr "UI を表示"
languages/cpt-plugin-pt_PT.mo ADDED
Binary file
languages/cpt-plugin-pt_PT.po ADDED
@@ -0,0 +1,2009 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI\n"
4
+ "POT-Creation-Date: 2015-06-12 21:16-0600\n"
5
+ "PO-Revision-Date: 2015-06-12 21:16-0600\n"
6
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
+ "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
+ "Language: pt_PT\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.1\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
14
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
15
+ "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+ "X-Poedit-SearchPathExcluded-1: /tests/*\n"
22
+ "X-Poedit-SearchPathExcluded-2: tests/*\n"
23
+ "X-Poedit-SearchPathExcluded-3: tests\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
+ #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
62
+ msgid "Custom Post Type UI"
63
+ msgstr "Custom Post Type UI"
64
+
65
+ #: custom-post-type-ui.php:342
66
+ msgid ""
67
+ "Thank you for choosing Custom Post Type UI. We hope that your experience "
68
+ "with our plugin provides efficiency and speed in creating post types and "
69
+ "taxonomies, to better organize your content, without having to touch code."
70
+ msgstr ""
71
+ "Obrigado por escolher o Custom Post Type UI. Esperamos que a sua experiência "
72
+ "com o nosso plugin proporcione eficiência e rapidez na criação de tipos de "
73
+ "artigo e de taxonomias, para melhor organizar os seus conteúdos sem ter que "
74
+ "mexer em código."
75
+
76
+ #: custom-post-type-ui.php:348
77
+ msgid "Post type migration"
78
+ msgstr "Migração de tipo de artigo"
79
+
80
+ #: custom-post-type-ui.php:349
81
+ msgid ""
82
+ "In the past, if you changed your post type slug, you would lose immediate "
83
+ "access to the posts in the post type and need to recover another way. We "
84
+ "have now added support for migrating all posts within the old post type to "
85
+ "the new post type you renamed it to."
86
+ msgstr ""
87
+ "No passado, se alterasse o URL do seu tipo de artigo, perderia de imediato o "
88
+ "acesso aos artigos desse tipo e precisaria de os recuperar de outro modo. "
89
+ "Actualmente adicionámos suporte para migrar todos os artigos do tipo de "
90
+ "artigo anterior para o recém nomeado tipo de artigo."
91
+
92
+ #: custom-post-type-ui.php:352
93
+ msgid "UI Refinement"
94
+ msgstr "Refinamento do interface do utilizador"
95
+
96
+ #: custom-post-type-ui.php:353
97
+ msgid ""
98
+ "After receiving feedback regarding the 1.0.x changes, we have further "
99
+ "simplified the UI to reduce the amount of clicking necessary to manage your "
100
+ "post types and taxonomies."
101
+ msgstr ""
102
+ "Depois de recebermos retorno sobre alterações nas versões 1.0.x, "
103
+ "simplificámos o interface do utilizador para reduzir a quantidade de cliques "
104
+ "necessários para gerir os tipos de artigos e taxonomias."
105
+
106
+ #: custom-post-type-ui.php:356
107
+ msgid "Registered Post Type and Taxonomy Listings"
108
+ msgstr "Listas de tipos de artigos e taxonomias registados"
109
+
110
+ #: custom-post-type-ui.php:357
111
+ msgid ""
112
+ "We are bringing back the listing of all CPTUI-registered post types and "
113
+ "taxonomies for easier quick view of what you have going."
114
+ msgstr ""
115
+ "Trouxémos de volta as listas de todos os tipos de artigos e taxonomias "
116
+ "registados pelo CPTUI para uma visualização facilitada do que tem em "
117
+ "funcionamento."
118
+
119
+ #: custom-post-type-ui.php:362
120
+ msgid "Help Support This Plugin!"
121
+ msgstr "Ajude a apoiar este plugin!"
122
+
123
+ #: custom-post-type-ui.php:366
124
+ msgid "Professional WordPress<br />Third Edition"
125
+ msgstr "Professional WordPress<br />Terceira edição"
126
+
127
+ #: custom-post-type-ui.php:371
128
+ msgid ""
129
+ "The leading book on WordPress design and development! Brand new third "
130
+ "edition!"
131
+ msgstr ""
132
+ "O principal livro sobre design e desenvolvimento em WordPress! Nova edição!"
133
+
134
+ #: custom-post-type-ui.php:374
135
+ msgid "Professional WordPress<br />Plugin Development"
136
+ msgstr "Professional WordPress<br />Plugin Development"
137
+
138
+ #: custom-post-type-ui.php:379
139
+ msgid "Highest rated WordPress development book on Amazon!"
140
+ msgstr "Livro de desenvolvimento WordPress mais votado na Amazon!"
141
+
142
+ #: custom-post-type-ui.php:382
143
+ msgid "PayPal Donation"
144
+ msgstr "Donativo PayPal"
145
+
146
+ #: custom-post-type-ui.php:386
147
+ msgid "PayPal - The safer, easier way to pay online!"
148
+ msgstr "Paypal - o modo mais fácil e seguro de fazer pagamentos online!"
149
+
150
+ #: custom-post-type-ui.php:389
151
+ msgid "Please donate to the development of Custom Post Type UI:"
152
+ msgstr ""
153
+ "Por favor faça um donativo para o desenvolvimento do Custom Port Type UI:"
154
+
155
+ #: custom-post-type-ui.php:415
156
+ #, php-format
157
+ msgid "%s version %s by %s"
158
+ msgstr "%s versão %s por %s"
159
+
160
+ #: custom-post-type-ui.php:426
161
+ msgid "Please Report Bugs"
162
+ msgstr "Por favor reporte erros"
163
+
164
+ #: custom-post-type-ui.php:429
165
+ msgid "Follow on Twitter:"
166
+ msgstr "Seguir no Twitter:"
167
+
168
+ #: custom-post-type-ui.php:493
169
+ msgid "Manage Taxonomies"
170
+ msgstr "Gerir taxonomias"
171
+
172
+ #: custom-post-type-ui.php:497
173
+ msgid "Manage Post Types"
174
+ msgstr "Gerir tipos de artigo"
175
+
176
+ #: custom-post-type-ui.php:523
177
+ msgid "Add New Post Type"
178
+ msgstr "Adicionar novo tipo de artigo"
179
+
180
+ #: custom-post-type-ui.php:526
181
+ msgid "Edit Post Types"
182
+ msgstr "Editar tipos de artigo"
183
+
184
+ #: custom-post-type-ui.php:530
185
+ msgid "Add New Taxonomy"
186
+ msgstr "Adicionar nova taxonomia"
187
+
188
+ #: custom-post-type-ui.php:533
189
+ msgid "Edit Taxonomies"
190
+ msgstr "Editar taxonomias"
191
+
192
+ #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
193
+ #: inc/listings.php:224
194
+ msgid "Post Types"
195
+ msgstr "Tipos de Artigo"
196
+
197
+ #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
198
+ #: inc/listings.php:122 inc/listings.php:132
199
+ msgid "Taxonomies"
200
+ msgstr "Taxonomias"
201
+
202
+ #: custom-post-type-ui.php:539
203
+ msgid "Get Code"
204
+ msgstr "Obter código"
205
+
206
+ #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
207
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:373
208
+ #: inc/taxonomies.php:338
209
+ msgid "Settings"
210
+ msgstr "Definições"
211
+
212
+ #: custom-post-type-ui.php:622
213
+ msgid "Help"
214
+ msgstr "Ajuda"
215
+
216
+ #: custom-post-type-ui.php:650
217
+ #, php-format
218
+ msgid "%s has been successfully added"
219
+ msgstr "%s foi adicionado com sucesso"
220
+
221
+ #: custom-post-type-ui.php:652
222
+ #, php-format
223
+ msgid "%s has failed to be added"
224
+ msgstr "%s falhou ao ser adicionado"
225
+
226
+ #: custom-post-type-ui.php:656
227
+ #, php-format
228
+ msgid "%s has been successfully updated"
229
+ msgstr "%s foi actualizado com sucesso"
230
+
231
+ #: custom-post-type-ui.php:658
232
+ #, php-format
233
+ msgid "%s has failed to be updated"
234
+ msgstr "%s falhou ao ser actualizado"
235
+
236
+ #: custom-post-type-ui.php:662
237
+ #, php-format
238
+ msgid "%s has been successfully deleted"
239
+ msgstr "%s foi apagado com sucesso"
240
+
241
+ #: custom-post-type-ui.php:664
242
+ #, php-format
243
+ msgid "%s has failed to be deleted"
244
+ msgstr "%s falhou ao ser apagado"
245
+
246
+ #: custom-post-type-ui.php:668
247
+ #, php-format
248
+ msgid "%s has been successfully imported"
249
+ msgstr "%s foi importado com sucesso"
250
+
251
+ #: custom-post-type-ui.php:670
252
+ #, php-format
253
+ msgid "%s has failed to be imported"
254
+ msgstr "%s falhou ao ser importado"
255
+
256
+ #: custom-post-type-ui.php:753 custom-post-type-ui.php:770
257
+ #, php-format
258
+ msgid "Add new %s"
259
+ msgstr "Adicionar novo %s"
260
+
261
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:768
262
+ #, php-format
263
+ msgid "Edit %s"
264
+ msgstr "Editar %s"
265
+
266
+ #: custom-post-type-ui.php:755
267
+ #, php-format
268
+ msgid "New %s"
269
+ msgstr "Novo %s"
270
+
271
+ #: custom-post-type-ui.php:756
272
+ #, php-format
273
+ msgid "View %s"
274
+ msgstr "Ver %s"
275
+
276
+ #: custom-post-type-ui.php:757 custom-post-type-ui.php:765
277
+ #, php-format
278
+ msgid "All %s"
279
+ msgstr "Todos(as) os(as) %s"
280
+
281
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:763
282
+ #, php-format
283
+ msgid "Search %s"
284
+ msgstr "Pesquisar %s"
285
+
286
+ #: custom-post-type-ui.php:759
287
+ #, php-format
288
+ msgid "No %s found."
289
+ msgstr "%s não encontrados(as)."
290
+
291
+ #: custom-post-type-ui.php:760
292
+ #, php-format
293
+ msgid "No %s found in trash."
294
+ msgstr "%s não encontrados(as) no lixo."
295
+
296
+ #: custom-post-type-ui.php:764
297
+ #, php-format
298
+ msgid "Popular %s"
299
+ msgstr "%s mais populares"
300
+
301
+ #: custom-post-type-ui.php:766
302
+ #, php-format
303
+ msgid "Parent %s"
304
+ msgstr "%s superior"
305
+
306
+ #: custom-post-type-ui.php:767
307
+ #, php-format
308
+ msgid "Parent %s:"
309
+ msgstr "%s superior:"
310
+
311
+ #: custom-post-type-ui.php:769
312
+ #, php-format
313
+ msgid "Update %s"
314
+ msgstr "Actualizar %s"
315
+
316
+ #: custom-post-type-ui.php:771
317
+ #, php-format
318
+ msgid "New %s name"
319
+ msgstr "Novo nome de %s"
320
+
321
+ #: custom-post-type-ui.php:772
322
+ #, php-format
323
+ msgid "Separate %s with commas"
324
+ msgstr "Separar %s por vírgulas"
325
+
326
+ #: custom-post-type-ui.php:773
327
+ #, php-format
328
+ msgid "Add or remove %s"
329
+ msgstr "Adicionar ou remover %s"
330
+
331
+ #: custom-post-type-ui.php:774
332
+ #, php-format
333
+ msgid "Choose from the most used %s"
334
+ msgstr "Escolher entre os(as) %s mais utilizados(as)"
335
+
336
+ #: inc/import_export.php:42
337
+ msgid ""
338
+ "If you are wanting to migrate registered post types or taxonomies from this "
339
+ "site to another, that will also use Custom Post Type UI, use the import and "
340
+ "export functionality. If you are moving away from Custom Post Type UI, use "
341
+ "the information in the \"Get Code\" tab."
342
+ msgstr ""
343
+ "Se pretende migrar tipos de artigos ou taxonomias registados para outro site "
344
+ "que também tem o Custom Post Type UI, utilize as funcionalidades de importar "
345
+ "e exportar. Se está a abandonar o Custom Post Type UI, utilize a informação "
346
+ "do separador \"Obter código\"."
347
+
348
+ #: inc/import_export.php:45
349
+ msgid "NOTE"
350
+ msgstr "NOTA"
351
+
352
+ #: inc/import_export.php:46
353
+ msgid "This will not export the associated posts, just the settings."
354
+ msgstr "Isto não exporta os artigos associados, apenas as definições."
355
+
356
+ #: inc/import_export.php:53
357
+ msgid "Import Post Types"
358
+ msgstr "Importar tipos de artigo"
359
+
360
+ #: inc/import_export.php:55 inc/import_export.php:80
361
+ msgid "Paste content here."
362
+ msgstr "Colar o conteúdo aqui."
363
+
364
+ #: inc/import_export.php:56 inc/import_export.php:81
365
+ msgid "Note:"
366
+ msgstr "Nota:"
367
+
368
+ #: inc/import_export.php:56 inc/import_export.php:81
369
+ msgid "Importing will overwrite previous registered settings."
370
+ msgstr "Ao importar irá sobrepor as definições registadas anteriormente."
371
+
372
+ #: inc/import_export.php:57
373
+ msgid ""
374
+ "To import post types from a different WordPress site, paste the exported "
375
+ "content from that site and click the \"Import\" button."
376
+ msgstr ""
377
+ "Para importar tipos de artigo de outro site WordPress, cole o conteúdo "
378
+ "exportado desse site e clique no botão \"Importar\"."
379
+
380
+ #: inc/import_export.php:58 inc/import_export.php:83
381
+ msgid "Import"
382
+ msgstr "Importar"
383
+
384
+ #: inc/import_export.php:62
385
+ msgid "Export Post Types"
386
+ msgstr "Exportar tipos de artigo"
387
+
388
+ #: inc/import_export.php:68
389
+ msgid "No post types registered yet."
390
+ msgstr "Nenhum tipo de artigo registado ainda."
391
+
392
+ #: inc/import_export.php:71 inc/import_export.php:96
393
+ msgid ""
394
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
395
+ "(Mac)."
396
+ msgstr ""
397
+ "Para copiar a informação do sistema, clique abaixo e prima Ctrl + C (PC) ou "
398
+ "Cmd + C (Mac)."
399
+
400
+ #: inc/import_export.php:72
401
+ msgid ""
402
+ "Use the content above to import current post types into a different "
403
+ "WordPress site. You can also use this to simply back up your post type "
404
+ "settings."
405
+ msgstr ""
406
+ "Utilize o conteúdo acima para importar os actuais tipos de artigo "
407
+ "personalizados para outro site WordPress. Também pode utilizar isto "
408
+ "simplesmente para fazer um backup das definições dos seus tipos de artigo."
409
+
410
+ #: inc/import_export.php:78
411
+ msgid "Import Taxonomies"
412
+ msgstr "Importar taxonomias"
413
+
414
+ #: inc/import_export.php:82
415
+ msgid ""
416
+ "To import taxonomies from a different WordPress site, paste the exported "
417
+ "content from that site and click the \"Import\" button."
418
+ msgstr ""
419
+ "Para importar taxonomias de outro site WordPress, cole o conteúdo exportado "
420
+ "desse site e clique no botão \"Importar\"."
421
+
422
+ #: inc/import_export.php:87
423
+ msgid "Export Taxonomies"
424
+ msgstr "Exportar taxonomias"
425
+
426
+ #: inc/import_export.php:93
427
+ msgid "No taxonomies registered yet."
428
+ msgstr "Nenhuma taxonomia registada ainda."
429
+
430
+ #: inc/import_export.php:97
431
+ msgid ""
432
+ "Use the content above to import current taxonomies into a different "
433
+ "WordPress site. You can also use this to simply back up your taxonomy "
434
+ "settings."
435
+ msgstr ""
436
+ "Utilize o conteúdo acima para importar as actuais taxonomias para outro site "
437
+ "WordPress. Também pode utilizar isto simplesmente para fazer um backup das "
438
+ "definições das suas taxonomias."
439
+
440
+ #: inc/import_export.php:105
441
+ msgid "Get Post Type and Taxonomy Code"
442
+ msgstr "Obter código do tipo de artigo e da taxonimia"
443
+
444
+ #: inc/import_export.php:107
445
+ msgid "All CPT UI Post Types"
446
+ msgstr "Todos os tipos de artigos do CPT UI"
447
+
448
+ #: inc/import_export.php:108 inc/import_export.php:112
449
+ msgid "Copy/paste the code below into your functions.php file."
450
+ msgstr "Copie/cole o código abaixo no seu ficheiro functions.php."
451
+
452
+ #: inc/import_export.php:111
453
+ msgid "All CPT UI Taxonomies"
454
+ msgstr "Todas as taxonomias do CPT UI"
455
+
456
+ #: inc/import_export.php:142
457
+ msgid "No taxonomies to display at this time"
458
+ msgstr "Nenhuma taxonomia para mostrar neste momento"
459
+
460
+ #: inc/import_export.php:241
461
+ msgid "No post types to display at this time"
462
+ msgstr "Nenhum tipo de artigo para mostrar neste momento"
463
+
464
+ #: inc/import_export.php:367
465
+ msgid "Post types"
466
+ msgstr "Tipos de artigo"
467
+
468
+ #: inc/listings.php:10
469
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
470
+ msgstr "Tipos de artigo e taxonomias registadas pelo Custom Post Type UI."
471
+
472
+ #: inc/listings.php:18 inc/listings.php:134
473
+ #, php-format
474
+ msgid "Total count: %d"
475
+ msgstr "Contagem total: %d"
476
+
477
+ #: inc/listings.php:31 inc/listings.php:119
478
+ msgid "Post Type"
479
+ msgstr "Tipo de artigo"
480
+
481
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
482
+ msgid "Supports"
483
+ msgstr "Suporte"
484
+
485
+ #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
486
+ #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
487
+ msgid "Labels"
488
+ msgstr "Legendas"
489
+
490
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
491
+ msgid "Edit"
492
+ msgstr "Editar"
493
+
494
+ #: inc/listings.php:75
495
+ msgid "View frontend archive"
496
+ msgstr "Ver arquivo na frente do site"
497
+
498
+ #: inc/listings.php:108 inc/listings.php:211
499
+ msgid "No custom labels to display"
500
+ msgstr "Nenhuma legenda personalizada para mostrar"
501
+
502
+ #: inc/listings.php:147 inc/listings.php:222
503
+ msgid "Taxonomy"
504
+ msgstr "Taxionomia"
505
+
506
+ #: inc/post-types.php:30 inc/taxonomies.php:25
507
+ msgid "Are you sure you want to delete this?"
508
+ msgstr "Tem a certeza que quer apagar isto?"
509
+
510
+ #: inc/post-types.php:86
511
+ msgid ""
512
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
513
+ "registers a new post type entry for your install."
514
+ msgstr ""
515
+ "NÃO EDITE o URL do tipo de artigo a não ser que estritamente necessário. "
516
+ "Alterar este valor regista um novo tipo de artigo na sua instalação."
517
+
518
+ #: inc/post-types.php:87
519
+ msgid ""
520
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
521
+ "slugs and update post types for existing posts."
522
+ msgstr ""
523
+ "Utilize a caixa de selecção apropriada acima dos botões guardar/apagar se "
524
+ "quiser alterar o URL e actualizar os tipos de artigo existentes."
525
+
526
+ #: inc/post-types.php:88 inc/taxonomies.php:84
527
+ msgid "Select: "
528
+ msgstr "Selecionar:"
529
+
530
+ #: inc/post-types.php:120
531
+ msgid "Post Type Slug"
532
+ msgstr "URL do tipo de artigo"
533
+
534
+ #: inc/post-types.php:121
535
+ msgid "(e.g. movie)"
536
+ msgstr "(p. ex. filme)"
537
+
538
+ #: inc/post-types.php:122
539
+ msgid ""
540
+ "The post type name. Used to retrieve custom post type content. Should be "
541
+ "short and unique"
542
+ msgstr ""
543
+ "O nome do tipo de artigo. Utilizado para obter o conteúdo do tipo de artigo "
544
+ "personalizado. Deverá ser curto e único."
545
+
546
+ #: inc/post-types.php:133 inc/taxonomies.php:124
547
+ msgid "Plural Label"
548
+ msgstr "Legenda no plural"
549
+
550
+ #: inc/post-types.php:134
551
+ msgid "(e.g. Movies)"
552
+ msgstr "(p. ex. Filmes)"
553
+
554
+ #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
555
+ #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
556
+ #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
557
+ #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
558
+ #: inc/post-types.php:364
559
+ msgid "Post type label. Used in the admin menu for displaying post types."
560
+ msgstr ""
561
+ "Legenda do tipo de artigo. Utilizada no menu de administração para mostrar "
562
+ "tipos de artigo."
563
+
564
+ #: inc/post-types.php:145 inc/taxonomies.php:133
565
+ msgid "Singular Label"
566
+ msgstr "Legenda no singular"
567
+
568
+ #: inc/post-types.php:146
569
+ msgid "(e.g. Movie)"
570
+ msgstr "(p. ex. Filme)"
571
+
572
+ #: inc/post-types.php:147
573
+ msgid ""
574
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
575
+ "needed."
576
+ msgstr ""
577
+ "Legenda no singular do tipo de artigo personalizado. Utilizada no WordPress "
578
+ "quando é necessária uma legenda no singular."
579
+
580
+ #: inc/post-types.php:163
581
+ msgid "Description"
582
+ msgstr "Descrição"
583
+
584
+ #: inc/post-types.php:164
585
+ msgid ""
586
+ "Custom Post Type Description. Describe what your custom post type is used "
587
+ "for."
588
+ msgstr ""
589
+ "Descrição do tipo de artigo personalizado. Descreva para que serve o seu "
590
+ "tipo de artigo personalizado."
591
+
592
+ #: inc/post-types.php:176
593
+ msgid "Migrate posts to newly renamed post type?"
594
+ msgstr "Migrar artigos para o recém renomeado tipo de artigo?"
595
+
596
+ #: inc/post-types.php:177
597
+ msgid "Check this to migrate posts if and when renaming your post type."
598
+ msgstr "Seleccione isto para migrar artigos ao renomear o seu tipo de artigo."
599
+
600
+ #: inc/post-types.php:186
601
+ msgid "Save Post Type"
602
+ msgstr "Guardar tipo de artigo"
603
+
604
+ #: inc/post-types.php:187
605
+ msgid "Delete Post Type"
606
+ msgstr "Apagar tipo de artigo"
607
+
608
+ #: inc/post-types.php:189
609
+ msgid "Add Post Type"
610
+ msgstr "Adicionar tipo de artigo"
611
+
612
+ #: inc/post-types.php:200 inc/taxonomies.php:185
613
+ msgid "Starter Notes"
614
+ msgstr "Notas para principiantes"
615
+
616
+ #: inc/post-types.php:203
617
+ #, php-format
618
+ msgid ""
619
+ "Post Type names should have %smax 20 characters%s, and only contain "
620
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
621
+ "letters that do not have accents. Reserved names: post, page, attachment, "
622
+ "revision, nav_menu_item."
623
+ msgstr ""
624
+ "Os nomes dos tipos de artigo deverão ter %sno máximo 20 caracteres%s, "
625
+ "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
626
+ "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
627
+
628
+ #: inc/post-types.php:204
629
+ #, php-format
630
+ msgid ""
631
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
632
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
633
+ "values. Labels, if left blank, will be automatically created based on the "
634
+ "post type name. Hover over the question mark for more details."
635
+ msgstr ""
636
+ "Se não estiver familiarizado com as definições avançadas dos artigos, "
637
+ "preencha apenas os campos %sNome do tipo de artigo%s e %sLegenda%s. Para as "
638
+ "restantes definições serão atribuídas as opções padrão. Se deixadas em "
639
+ "branco, as legendas serão automaticamente criadas com base no nome do tipo "
640
+ "de artigo. Ver o ponto de interrogação para mais detalhes."
641
+
642
+ #: inc/post-types.php:205
643
+ #, php-format
644
+ msgid ""
645
+ "Deleting custom post types will %sNOT%s delete any content into the database "
646
+ "or added to those post types. You can easily recreate your post types and "
647
+ "the content will still exist."
648
+ msgstr ""
649
+ "Apagar tipos de artigo personalizados %sNÃO%s apagará quaisquer conteúdos da "
650
+ "base de dados ou adicionados a esses tipos de artigo. Pode facilmente "
651
+ "recriar os seus tipos de artigo e o conteúdo continuará a existir."
652
+
653
+ #: inc/post-types.php:219 inc/taxonomies.php:206
654
+ msgid "Menu Name"
655
+ msgstr "Nome do menu"
656
+
657
+ #: inc/post-types.php:220
658
+ msgid "Custom menu name for your custom post type."
659
+ msgstr "Nome de menu personalizado para o seu tipo de artigo personalizado."
660
+
661
+ #: inc/post-types.php:224
662
+ msgid "(e.g. My Movies)"
663
+ msgstr "(p. ex. Os meus filmes)"
664
+
665
+ #: inc/post-types.php:231 inc/taxonomies.php:215
666
+ msgid "All Items"
667
+ msgstr "Todos os itens"
668
+
669
+ #: inc/post-types.php:236
670
+ msgid "(e.g. All Movies)"
671
+ msgstr "(p. ex. Todos os filmes)"
672
+
673
+ #: inc/post-types.php:243
674
+ msgid "Add New"
675
+ msgstr "Adicionar novo"
676
+
677
+ #: inc/post-types.php:248
678
+ msgid "(e.g. Add New)"
679
+ msgstr "(p. ex. Adicionar novo)"
680
+
681
+ #: inc/post-types.php:255 inc/taxonomies.php:251
682
+ msgid "Add New Item"
683
+ msgstr "Adicionar novo item"
684
+
685
+ #: inc/post-types.php:260
686
+ msgid "(e.g. Add New Movie)"
687
+ msgstr "(p. ex. Adicionar novo filme)"
688
+
689
+ #: inc/post-types.php:272
690
+ msgid "(e.g. Edit)"
691
+ msgstr "(p. ex. Editar)"
692
+
693
+ #: inc/post-types.php:279 inc/taxonomies.php:224
694
+ msgid "Edit Item"
695
+ msgstr "Editar item"
696
+
697
+ #: inc/post-types.php:284
698
+ msgid "(e.g. Edit Movie)"
699
+ msgstr "(p. ex. Editar filme)"
700
+
701
+ #: inc/post-types.php:291
702
+ msgid "New Item"
703
+ msgstr "Novo item"
704
+
705
+ #: inc/post-types.php:296
706
+ msgid "(e.g. New Movie)"
707
+ msgstr "(p. ex. Novo filme)"
708
+
709
+ #: inc/post-types.php:303
710
+ msgid "View"
711
+ msgstr "Ver"
712
+
713
+ #: inc/post-types.php:308
714
+ msgid "(e.g. View)"
715
+ msgstr "(p. ex. Ver)"
716
+
717
+ #: inc/post-types.php:315 inc/taxonomies.php:233
718
+ msgid "View Item"
719
+ msgstr "Ver item"
720
+
721
+ #: inc/post-types.php:320
722
+ msgid "(e.g. View Movie)"
723
+ msgstr "(p. ex. Ver filme)"
724
+
725
+ #: inc/post-types.php:327
726
+ msgid "Search Item"
727
+ msgstr "Pesquisar item"
728
+
729
+ #: inc/post-types.php:332
730
+ msgid "(e.g. Search Movie)"
731
+ msgstr "(p. ex. Pesquisar filme)"
732
+
733
+ #: inc/post-types.php:339
734
+ msgid "Not Found"
735
+ msgstr "Não encontrado"
736
+
737
+ #: inc/post-types.php:344
738
+ msgid "(e.g. No Movies found)"
739
+ msgstr "(p. ex. Nenhum filme encontrado)"
740
+
741
+ #: inc/post-types.php:351
742
+ msgid "Not Found in Trash"
743
+ msgstr "Não encontrado no lixo"
744
+
745
+ #: inc/post-types.php:356
746
+ msgid "(e.g. No Movies found in Trash)"
747
+ msgstr "(p. ex. Nenhum fime encontrado no lixo)"
748
+
749
+ #: inc/post-types.php:363
750
+ msgid "Parent"
751
+ msgstr "Superior"
752
+
753
+ #: inc/post-types.php:368
754
+ msgid "(e.g. Parent Movie)"
755
+ msgstr "(p. ex. Filme superior)"
756
+
757
+ #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
758
+ #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
759
+ #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
760
+ #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
761
+ #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
762
+ #: inc/taxonomies.php:464
763
+ msgid "False"
764
+ msgstr "Falso"
765
+
766
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
767
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
768
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
769
+ #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
770
+ #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
771
+ #: inc/taxonomies.php:465
772
+ msgid "True"
773
+ msgstr "Verdadeiro"
774
+
775
+ #: inc/post-types.php:391
776
+ msgid "Public"
777
+ msgstr "Público"
778
+
779
+ #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
780
+ #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
781
+ #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
782
+ msgid "(default: True)"
783
+ msgstr "(padrão: Verdadeiro)"
784
+
785
+ #: inc/post-types.php:393
786
+ msgid ""
787
+ "Whether posts of this type should be shown in the admin UI and is publicly "
788
+ "queryable."
789
+ msgstr ""
790
+ "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
791
+ "administração e pesquisáveis publicamente."
792
+
793
+ #: inc/post-types.php:411 inc/taxonomies.php:370
794
+ msgid "Show UI"
795
+ msgstr "Mostrar interface do utilizador"
796
+
797
+ #: inc/post-types.php:413
798
+ msgid "Whether to generate a default UI for managing this post type."
799
+ msgstr ""
800
+ "Se cria um interface de utilizador padrão para gerir este tipo de artigo."
801
+
802
+ #: inc/post-types.php:421
803
+ msgid "Has Archive"
804
+ msgstr "Tem arquivo"
805
+
806
+ #: inc/post-types.php:422
807
+ msgid "Whether the post type will have a post type archive URL."
808
+ msgstr "Se o tipo de artigo terá um URL para o arquivo deste tipo de artigo."
809
+
810
+ #: inc/post-types.php:423
811
+ msgid "If left blank, the archive slug will default to the post type slug."
812
+ msgstr ""
813
+ "Se deixar em branco, o URL do arquivo será o mesmo que o URL do tipo de "
814
+ "artigo."
815
+
816
+ #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
817
+ #: inc/taxonomies.php:354 inc/taxonomies.php:474
818
+ msgid "(default: False)"
819
+ msgstr "(padrão: Falso)"
820
+
821
+ #: inc/post-types.php:449
822
+ msgid "Slug to be used for archive URL."
823
+ msgstr "URL utilizado para a página de arquivo."
824
+
825
+ #: inc/post-types.php:469
826
+ msgid "Exclude From Search"
827
+ msgstr "Excluir da pesquisa"
828
+
829
+ #: inc/post-types.php:471
830
+ msgid ""
831
+ "Whether to exclude posts with this post type from front end search results."
832
+ msgstr ""
833
+ "Se exclui artigos deste tipo dos resultados de pesquisa na frente do site."
834
+
835
+ #: inc/post-types.php:482
836
+ msgid "Capability Type"
837
+ msgstr "Tipo de capacidade"
838
+
839
+ #: inc/post-types.php:483
840
+ msgid "The post type to use for checking read, edit, and delete capabilities"
841
+ msgstr ""
842
+ "O tipo de artigo a utilizar para verificar as capacidades de leitura, edição "
843
+ "e exclusão"
844
+
845
+ #: inc/post-types.php:500 inc/taxonomies.php:353
846
+ msgid "Hierarchical"
847
+ msgstr "Hierárquico"
848
+
849
+ #: inc/post-types.php:502
850
+ msgid "Whether the post type can have parent-child relationships"
851
+ msgstr "Se o tipo de artigo pode ter relações de superior/dependente"
852
+
853
+ #: inc/post-types.php:520 inc/taxonomies.php:413
854
+ msgid "Rewrite"
855
+ msgstr "Reescrever URL"
856
+
857
+ #: inc/post-types.php:522
858
+ msgid "Whether or not WordPress should use rewrites for this post type"
859
+ msgstr ""
860
+ "Se o WordPress deverão usar ou não a reescrita para este tipo de artigo"
861
+
862
+ #: inc/post-types.php:533 inc/taxonomies.php:424
863
+ msgid "Custom Rewrite Slug"
864
+ msgstr "Reescrever URL personalizado"
865
+
866
+ #: inc/post-types.php:534
867
+ msgid "(default: post type slug)"
868
+ msgstr "(padrão: URL do tipo de artigo)"
869
+
870
+ #: inc/post-types.php:535
871
+ msgid "Custom post type slug to use instead of the default."
872
+ msgstr "URL do tipo de artigo personalizado a utilizar em vez do valor padrão."
873
+
874
+ #: inc/post-types.php:552
875
+ msgid "With Front"
876
+ msgstr "Com superior"
877
+
878
+ #: inc/post-types.php:554 inc/taxonomies.php:441
879
+ msgid "Should the permastruct be prepended with the front base."
880
+ msgstr "Preceder as ligações permanentes com URL superior."
881
+
882
+ #: inc/post-types.php:572 inc/taxonomies.php:387
883
+ msgid "Query Var"
884
+ msgstr "Query Var"
885
+
886
+ #: inc/post-types.php:574
887
+ msgid "Sets the query_var key for this post type."
888
+ msgstr "Define a chave query_var para este tipo de artigo."
889
+
890
+ #: inc/post-types.php:582
891
+ msgid "Menu Position"
892
+ msgstr "Posição do menu"
893
+
894
+ #: inc/post-types.php:583
895
+ msgid ""
896
+ "The position in the menu order the post type should appear. show_in_menu "
897
+ "must be true."
898
+ msgstr ""
899
+ "A posição em que o tipo de artigo deverá aparecer no menu. \"Mostrar no menu"
900
+ "\" tem que ser \"Verdadeiro\"."
901
+
902
+ #: inc/post-types.php:584
903
+ msgid ""
904
+ "See <a href=\"http://codex.wordpress.org/Function_Reference/"
905
+ "register_post_type#Parameters\">Available options</a> in the \"menu_position"
906
+ "\" section. Range of 5-100"
907
+ msgstr ""
908
+ "Veja as <a href=\"http://codex.wordpress.org/Function_Reference/"
909
+ "register_post_type#Parameters\">opções disponíveis</a> na secção "
910
+ "\"menu_position\". Ordem de 5-100"
911
+
912
+ #: inc/post-types.php:599
913
+ msgid "Show in Menu"
914
+ msgstr "Mostrar no menu"
915
+
916
+ #: inc/post-types.php:600
917
+ msgid ""
918
+ "Whether to show the post type in the admin menu and where to show that menu."
919
+ msgstr ""
920
+ "Se mostra o tipo de artigo no menu de administração e onde mostra esse menu."
921
+
922
+ #: inc/post-types.php:601
923
+ msgid ""
924
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
925
+ "php\" is indicated for second input, post type will be sub menu of that."
926
+ msgstr ""
927
+ "\"Mostrar interface do utilizador\" tem que ser \"Verdadeiro\". Se uma "
928
+ "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
929
+ "o tipo de artigo será seu submenu."
930
+
931
+ #: inc/post-types.php:627
932
+ msgid "Top-level page file name to make post type a sub-menu of."
933
+ msgstr ""
934
+ "Nome da página de nível de topo para tornar o tipo de artigo seu submenu."
935
+
936
+ #: inc/post-types.php:639
937
+ msgid "Menu Icon"
938
+ msgstr "Ícone do menu"
939
+
940
+ #: inc/post-types.php:640
941
+ msgid "(Full URL for icon or Dashicon class)"
942
+ msgstr "(URL completo ou classe para o para o ícone do painel)"
943
+
944
+ #: inc/post-types.php:641
945
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
946
+ msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
947
+
948
+ #: inc/post-types.php:654
949
+ msgid "Title"
950
+ msgstr "Título"
951
+
952
+ #: inc/post-types.php:655
953
+ msgid "Adds the title meta box when creating content for this custom post type"
954
+ msgstr ""
955
+ "Adiciona a caixa de título ao criar conteúdo para este tipo de artigo "
956
+ "personalizado"
957
+
958
+ #: inc/post-types.php:669
959
+ msgid "Editor"
960
+ msgstr "Editor"
961
+
962
+ #: inc/post-types.php:670
963
+ msgid ""
964
+ "Adds the content editor meta box when creating content for this custom post "
965
+ "type"
966
+ msgstr ""
967
+ "Adiciona a caixa de editor de conteúdo ao criar conteúdo para este tipo de "
968
+ "artigo personalizado"
969
+
970
+ #: inc/post-types.php:684
971
+ msgid "Excerpt"
972
+ msgstr "Excerto"
973
+
974
+ #: inc/post-types.php:685
975
+ msgid ""
976
+ "Adds the excerpt meta box when creating content for this custom post type"
977
+ msgstr ""
978
+ "Adiciona a caixa de excerto ao criar conteúdo para este tipo de artigo "
979
+ "personalizado"
980
+
981
+ #: inc/post-types.php:699
982
+ msgid "Trackbacks"
983
+ msgstr "Trackbacks"
984
+
985
+ #: inc/post-types.php:700
986
+ msgid ""
987
+ "Adds the trackbacks meta box when creating content for this custom post type"
988
+ msgstr ""
989
+ "Adiciona a caixa de trackbacks ao criar conteúdo para este tipo de artigo "
990
+ "personalizado"
991
+
992
+ #: inc/post-types.php:714
993
+ msgid "Custom Fields"
994
+ msgstr "Campos personalizados"
995
+
996
+ #: inc/post-types.php:715
997
+ msgid ""
998
+ "Adds the custom fields meta box when creating content for this custom post "
999
+ "type"
1000
+ msgstr ""
1001
+ "Adiciona a caixa de campos personalizados ao criar conteúdo para este tipo "
1002
+ "de artigo personalizado"
1003
+
1004
+ #: inc/post-types.php:729
1005
+ msgid "Comments"
1006
+ msgstr "Comentários"
1007
+
1008
+ #: inc/post-types.php:730
1009
+ msgid ""
1010
+ "Adds the comments meta box when creating content for this custom post type"
1011
+ msgstr ""
1012
+ "Adiciona a caixa de comentários ao criar conteúdo para este tipo de artigo "
1013
+ "personalizado"
1014
+
1015
+ #: inc/post-types.php:744
1016
+ msgid "Revisions"
1017
+ msgstr "Revisões"
1018
+
1019
+ #: inc/post-types.php:745
1020
+ msgid ""
1021
+ "Adds the revisions meta box when creating content for this custom post type"
1022
+ msgstr ""
1023
+ "Adiciona a caixa de revisões ao criar conteúdo para este tipo de artigo "
1024
+ "personalizado"
1025
+
1026
+ #: inc/post-types.php:759
1027
+ msgid "Featured Image"
1028
+ msgstr "Imagem de destaque"
1029
+
1030
+ #: inc/post-types.php:760
1031
+ msgid ""
1032
+ "Adds the featured image meta box when creating content for this custom post "
1033
+ "type"
1034
+ msgstr ""
1035
+ "Adiciona a caixa de imagem de destaque ao criar conteúdo para este tipo de "
1036
+ "artigo personalizado"
1037
+
1038
+ #: inc/post-types.php:774
1039
+ msgid "Author"
1040
+ msgstr "Autor"
1041
+
1042
+ #: inc/post-types.php:775
1043
+ msgid ""
1044
+ "Adds the author meta box when creating content for this custom post type"
1045
+ msgstr ""
1046
+ "Adiciona a caixa de autor ao criar conteúdo para este tipo de artigo "
1047
+ "personalizado"
1048
+
1049
+ #: inc/post-types.php:789
1050
+ msgid "Page Attributes"
1051
+ msgstr "Atributos da página"
1052
+
1053
+ #: inc/post-types.php:790
1054
+ msgid ""
1055
+ "Adds the page attribute meta box when creating content for this custom post "
1056
+ "type"
1057
+ msgstr ""
1058
+ "Adiciona a caixa de atributos da página ao criar conteúdo para este tipo de "
1059
+ "artigo personalizado"
1060
+
1061
+ #: inc/post-types.php:804
1062
+ msgid "Post Formats"
1063
+ msgstr "Formatos de artigo"
1064
+
1065
+ #: inc/post-types.php:805
1066
+ msgid "Adds post format support"
1067
+ msgstr "Adiciona suporte para formato de artigo"
1068
+
1069
+ #: inc/post-types.php:810
1070
+ msgid "Use the option below to explicitly set \"supports\" to false."
1071
+ msgstr ""
1072
+ "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1073
+
1074
+ #: inc/post-types.php:818
1075
+ msgid "None"
1076
+ msgstr "Nenhum"
1077
+
1078
+ #: inc/post-types.php:819
1079
+ msgid "Remove all support features"
1080
+ msgstr "Remove suporte para todos os recursos"
1081
+
1082
+ #: inc/post-types.php:825
1083
+ msgid "Custom \"Supports\""
1084
+ msgstr "\"Suporte\" personalizado"
1085
+
1086
+ #: inc/post-types.php:826
1087
+ msgid ""
1088
+ "Use this input to register custom \"supports\" values, separated by commas."
1089
+ msgstr ""
1090
+ "Utilize este campo para registar \"suporte\" de valores personalizados, "
1091
+ "separados por vírgulas."
1092
+
1093
+ #: inc/post-types.php:832
1094
+ msgid "Provide custom support slugs here."
1095
+ msgstr "Insira aqui os valores personalizados a suportar."
1096
+
1097
+ #: inc/post-types.php:838
1098
+ msgid "Built-in Taxonomies"
1099
+ msgstr "Taxonomias incorporadas"
1100
+
1101
+ #: inc/post-types.php:867 inc/taxonomies.php:167
1102
+ #, php-format
1103
+ msgid "Adds %s support"
1104
+ msgstr "Adiciona suporte para %s"
1105
+
1106
+ #: inc/post-types.php:966
1107
+ msgid "Please provide a post type to delete"
1108
+ msgstr "Por favor introduza um tipo de artigo a apagar"
1109
+
1110
+ #: inc/post-types.php:1026
1111
+ msgid "Please provide a post type name"
1112
+ msgstr "Por favor introduza um nome de tipo de artigo"
1113
+
1114
+ #: inc/post-types.php:1050
1115
+ msgid "Please do not use quotes in post type names or rewrite slugs"
1116
+ msgstr ""
1117
+ "Por favor não utilize aspas nos nomes dos tipos de artigo ou nos URL "
1118
+ "reescritos"
1119
+
1120
+ #: inc/post-types.php:1057
1121
+ #, php-format
1122
+ msgid "Please choose a different post type name. %s is already registered."
1123
+ msgstr ""
1124
+ "Por favor escolha um nome de tipo de artigo diferente. %s já está registado."
1125
+
1126
+ #: inc/support.php:41
1127
+ msgid "Custom Post Type UI Support"
1128
+ msgstr "Suporte do Custom Post Type UI"
1129
+
1130
+ #: inc/support.php:43
1131
+ #, php-format
1132
+ msgid ""
1133
+ "Please note that this plugin will NOT handle display of registered post "
1134
+ "types or taxonomies in your current theme. It will simply register them for "
1135
+ "you. If all else fails, visit us on the %s"
1136
+ msgstr ""
1137
+ "Por favor note que este plugin NÃO controlará a exibição de tipos de artigo "
1138
+ "ou taxonomias registadas no seu tema actual. Simplesmente fará por si o "
1139
+ "respectivo registo. Se tudo o resto falhar, visite-nos no %s"
1140
+
1141
+ #: inc/support.php:44
1142
+ msgid "Support Forums"
1143
+ msgstr "Fórum de suporte"
1144
+
1145
+ #: inc/support.php:50
1146
+ msgid "General"
1147
+ msgstr "Geral"
1148
+
1149
+ #: inc/support.php:53
1150
+ msgid ""
1151
+ "I changed my custom post type name and now I can not get to my posts. How do "
1152
+ "I get them back?"
1153
+ msgstr ""
1154
+ "Modifiquei o nome do meu tipo de artigo personalizado e agora não consigo "
1155
+ "encontrar os meus artigos. Como faço para os recuperar?"
1156
+
1157
+ #: inc/support.php:54
1158
+ msgid ""
1159
+ "You can either change the custom post type name back to the original name or "
1160
+ "try the Post Type Switcher plugin"
1161
+ msgstr ""
1162
+ "Poderá voltar a alterar para o original o nome do tipo de artigo "
1163
+ "personalizado ou experimentar o plugin Post Type Switcher"
1164
+
1165
+ #: inc/support.php:59
1166
+ msgid ""
1167
+ "I changed my custom post type or taxonomy slug and now I have duplicates "
1168
+ "shown. How do I remove the duplicate?"
1169
+ msgstr ""
1170
+ "Modifiquei o meu tipo de artigo personalizado ou o URL da taxonomia e agora "
1171
+ "são mostrados em duplicado. Como removo os duplicados?"
1172
+
1173
+ #: inc/support.php:60
1174
+ msgid ""
1175
+ "Renaming the slug for a post type or taxonomy creates a new entry in our "
1176
+ "saved option which gets registered as its own post type or taxonomy. Since "
1177
+ "the settings will be mirrored from the previous slug, you will just need to "
1178
+ "delete the previous version's entry."
1179
+ msgstr ""
1180
+ "Renomear o URL de um tipo de artigo ou taxonomia cria uma nova entrada nas "
1181
+ "opções guardadas que será registada como um tipo de artigo ou taxonomia "
1182
+ "independente. Como as opções serão copiadas do URL anterior, apenas tem que "
1183
+ "apagar a entrada com a versão anterior."
1184
+
1185
+ #: inc/support.php:63
1186
+ msgid ""
1187
+ "I have added post thumbnail and/or post format support to my post type, but "
1188
+ "those do not appear when adding a post type post."
1189
+ msgstr ""
1190
+ "Eu adicionei suporte para imagem de destaque e/ou formato de artigo ao meu "
1191
+ "tipo de artigo, mas estes não aparecem quando adiciono um novo artigo."
1192
+
1193
+ #: inc/support.php:64
1194
+ msgid ""
1195
+ "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1196
+ msgstr ""
1197
+ "Verifique se o seu tema tem o suporte para \"Imagens de destaque\" activado."
1198
+
1199
+ #: inc/support.php:69
1200
+ msgid "Front-end Display"
1201
+ msgstr "Frente do site"
1202
+
1203
+ #: inc/support.php:72
1204
+ msgid "What template files should I edit to alter my post type display?"
1205
+ msgstr ""
1206
+ "Que ficheiros de modelo deverei editar para alterar a exibição do meu tipo "
1207
+ "de artigo?"
1208
+
1209
+ #: inc/support.php:73
1210
+ #, php-format
1211
+ msgid ""
1212
+ "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1213
+ "details about available templates."
1214
+ msgstr ""
1215
+ "Por favor visite a página %sHierarquia de modelos WordPress%s do WordPress "
1216
+ "Codex para detalhes sobre os modelos disponíveis."
1217
+
1218
+ #: inc/support.php:80
1219
+ msgid "How do I display my custom post type on my site?"
1220
+ msgstr "Como posso mostrar o meu tipo de artigo personalizado no meu site?"
1221
+
1222
+ #: inc/support.php:81
1223
+ #, php-format
1224
+ msgid ""
1225
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
1226
+ "locations. If you have set the post type to have archives, the archive url "
1227
+ "should be something like \"http://www.mysite.com/post-type-slug\""
1228
+ msgstr ""
1229
+ "Terá que utilizar a classe %sWP_Query%s para controlar a exibição em locais "
1230
+ "personalizados. Se definiu que o tipo de artigo terá arquivos, o URL do "
1231
+ "arquivo deverá ser algo como \"http://www.meusite.com/slug-tipo-de-artigo\""
1232
+
1233
+ #: inc/support.php:87
1234
+ msgid ""
1235
+ "I have added categories and tags to my custom post type, but they do not "
1236
+ "appear in the archives."
1237
+ msgstr ""
1238
+ "Adicionei categorias e etiquetas ao meu tipo de artigo personalizado, mas "
1239
+ "não aparecem nos arquivos."
1240
+
1241
+ #: inc/support.php:88
1242
+ #, php-format
1243
+ msgid ""
1244
+ "You will need to add your newly created post type to the types that the "
1245
+ "category and tag archives query for. You can see a tutorial on how to do "
1246
+ "that at %s"
1247
+ msgstr ""
1248
+ "Terá que adicionar o seu tipo de artigo recém criado aos tipos incluídos na "
1249
+ "pesquisa dos arquivos de categorias e etiquetas. Pode ver um tutorial sobre "
1250
+ "como fazer isto em %s"
1251
+
1252
+ #: inc/support.php:97
1253
+ msgid "Advanced"
1254
+ msgstr "Avançado"
1255
+
1256
+ #: inc/support.php:100
1257
+ msgid "How do I add custom metaboxes to my post type?"
1258
+ msgstr ""
1259
+ "Como posso adicionar caixas personalizadas de metadados ao meu tipo de "
1260
+ "artigo?"
1261
+
1262
+ #: inc/support.php:102
1263
+ #, php-format
1264
+ msgid ""
1265
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1266
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1267
+ msgstr ""
1268
+ "Recomendamos que conheça %s, a última iteração de \"Custom Metaboxes and "
1269
+ "Fields for WordPress\". Ambos são mantidos por WebDevStudios."
1270
+
1271
+ #: inc/support.php:108
1272
+ msgid ""
1273
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1274
+ msgstr ""
1275
+ "Como posso adicionar uma nova taxonomia a um tipo de artigo já existente?"
1276
+
1277
+ #: inc/support.php:110
1278
+ #, php-format
1279
+ msgid "Check out the %s function for documentation and usage examples."
1280
+ msgstr "Veja a documentação e exemplos da função %s."
1281
+
1282
+ #: inc/support.php:116
1283
+ msgid "Post relationships?"
1284
+ msgstr "Relações de artigos?"
1285
+
1286
+ #: inc/support.php:117
1287
+ #, php-format
1288
+ msgid ""
1289
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1290
+ "plugin that should be a good start."
1291
+ msgstr ""
1292
+ "%s tem um excelente %sartigo%s para introduzir utilizadores ao plugin "
1293
+ "%sPosts 2 Posts%s que deve ser um bom começo."
1294
+
1295
+ #: inc/support.php:126
1296
+ msgid "Is there any function reference list?"
1297
+ msgstr "Existe alguma lista de referência das funções?"
1298
+
1299
+ #: inc/support.php:127
1300
+ #, php-format
1301
+ msgid ""
1302
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1303
+ "will be useful as they are attached to hooks."
1304
+ msgstr ""
1305
+ "O %s compilou uma boa lista de funções utilizadas pelo nosso plugin. Note "
1306
+ "que nem todas serão úteis, uma vez que estão anexadas a hooks."
1307
+
1308
+ #: inc/support.php:131
1309
+ msgid ""
1310
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1311
+ msgstr ""
1312
+ "Como posso filtrar o texto \"Introduza o título aqui\" no ecrã de edição?"
1313
+
1314
+ #: inc/support.php:132
1315
+ msgid ""
1316
+ "Change text inside the post/page editor title field. Should be able to adapt "
1317
+ "as necessary."
1318
+ msgstr ""
1319
+ "Modifique o texto dentro do campo do título no editor de artigo/página. "
1320
+ "Deverá adaptar-se conforme necessário."
1321
+
1322
+ #: inc/taxonomies.php:82
1323
+ msgid ""
1324
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1325
+ "registers a new taxonomy entry for your install."
1326
+ msgstr ""
1327
+ "NÃO EDITE o URL da taxonomia a não ser que estritamente necessário. Alterar "
1328
+ "este valor regista uma nova taxonomia na sua instalação."
1329
+
1330
+ #: inc/taxonomies.php:113
1331
+ msgid "Taxonomy Slug"
1332
+ msgstr "URL da taxonomia"
1333
+
1334
+ #: inc/taxonomies.php:114
1335
+ #, fuzzy
1336
+ msgid "(e.g. actor)"
1337
+ msgstr "(p. ex. actores)"
1338
+
1339
+ #: inc/taxonomies.php:115
1340
+ msgid ""
1341
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1342
+ "and unique"
1343
+ msgstr ""
1344
+ "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1345
+ "personalizada. Deverá ser curto e único."
1346
+
1347
+ #: inc/taxonomies.php:123 inc/taxonomies.php:205
1348
+ msgid "(e.g. Actors)"
1349
+ msgstr "(p. ex. Actores)"
1350
+
1351
+ #: inc/taxonomies.php:125
1352
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1353
+ msgstr ""
1354
+ "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1355
+ "taxonomia personalizada."
1356
+
1357
+ #: inc/taxonomies.php:132
1358
+ msgid "(e.g. Actor)"
1359
+ msgstr "(p. ex. Actor)"
1360
+
1361
+ #: inc/taxonomies.php:134
1362
+ msgid ""
1363
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1364
+ msgstr ""
1365
+ "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1366
+ "quando é necessária uma legenda no singular."
1367
+
1368
+ #: inc/taxonomies.php:137
1369
+ msgid "Attach to Post Type"
1370
+ msgstr "Anexar ao tipo de artigo"
1371
+
1372
+ #: inc/taxonomies.php:176
1373
+ msgid "Save Taxonomy"
1374
+ msgstr "Guardar taxonomia"
1375
+
1376
+ #: inc/taxonomies.php:177
1377
+ msgid "Delete Taxonomy"
1378
+ msgstr "Apagar taxonomia"
1379
+
1380
+ #: inc/taxonomies.php:179
1381
+ msgid "Add Taxonomy"
1382
+ msgstr "Adicionar taxonomia"
1383
+
1384
+ #: inc/taxonomies.php:188
1385
+ #, php-format
1386
+ msgid ""
1387
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1388
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1389
+ "letters that do not have accents."
1390
+ msgstr ""
1391
+ "Nomes de taxonomias podem ter no %smáximo 32 caracteres%s, apenas pode "
1392
+ "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1393
+ "letras sem acentos."
1394
+
1395
+ #: inc/taxonomies.php:189
1396
+ #, php-format
1397
+ msgid ""
1398
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1399
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1400
+ "settings will use default values. Labels, if left blank, will be "
1401
+ "automatically created based on the taxonomy name. Hover over the question "
1402
+ "marks for more details."
1403
+ msgstr ""
1404
+ "Se não estiver familiarizado com as definições avançadas das taxonomias, "
1405
+ "preencha apenas os campos %sNome da taxonomia%s e %sAnexar ao tipo de artigo"
1406
+ "%s. Para as restantes definições serão atribuídas as opções padrão. Se "
1407
+ "deixadas em branco, as legendas serão automaticamente criadas com base no "
1408
+ "nome da taxonomia. Ver o ponto de interrogação para mais detalhes."
1409
+
1410
+ #: inc/taxonomies.php:190
1411
+ #, php-format
1412
+ msgid ""
1413
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1414
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1415
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1416
+ "terms in the database."
1417
+ msgstr ""
1418
+ "Apagar taxonomias personalizadas %sNÃO%s apagará quaisquer termos "
1419
+ "adicionados a essas taxonomias. Pode recriar as suas taxonomias e os termos "
1420
+ "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1421
+ "actualizará os termos na base de dados."
1422
+
1423
+ #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1424
+ #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1425
+ #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1426
+ #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1427
+ #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1428
+ msgid ""
1429
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1430
+ msgstr ""
1431
+ "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1432
+ "mostrar taxonomias."
1433
+
1434
+ #: inc/taxonomies.php:214
1435
+ msgid "(e.g. All Actors)"
1436
+ msgstr "(p. ex. Todos os actores)"
1437
+
1438
+ #: inc/taxonomies.php:223
1439
+ msgid "(e.g. Edit Actor)"
1440
+ msgstr "(p. ex. Editar actor)"
1441
+
1442
+ #: inc/taxonomies.php:232
1443
+ msgid "(e.g. View Actor)"
1444
+ msgstr "(p. ex. Ver actor)"
1445
+
1446
+ #: inc/taxonomies.php:241
1447
+ msgid "(e.g. Update Actor Name)"
1448
+ msgstr "(p. ex. Actualizar nome de actor)"
1449
+
1450
+ #: inc/taxonomies.php:242
1451
+ msgid "Update Item Name"
1452
+ msgstr "Actualizar nome do item"
1453
+
1454
+ #: inc/taxonomies.php:250
1455
+ msgid "(e.g. Add New Actor)"
1456
+ msgstr "(p. ex. Adicionar novo actor)"
1457
+
1458
+ #: inc/taxonomies.php:259
1459
+ msgid "(e.g. New Actor Name)"
1460
+ msgstr "(p. ex. Nome do novo actor)"
1461
+
1462
+ #: inc/taxonomies.php:260
1463
+ msgid "New Item Name"
1464
+ msgstr "Nome do novo item"
1465
+
1466
+ #: inc/taxonomies.php:268
1467
+ msgid "(e.g. Parent Actor)"
1468
+ msgstr "(p. ex. Actor superior)"
1469
+
1470
+ #: inc/taxonomies.php:269
1471
+ msgid "Parent Item"
1472
+ msgstr "Item superior"
1473
+
1474
+ #: inc/taxonomies.php:277
1475
+ msgid "(e.g. Parent Actor:)"
1476
+ msgstr "(p. ex. Actor superior:)"
1477
+
1478
+ #: inc/taxonomies.php:278
1479
+ msgid "Parent Item Colon"
1480
+ msgstr "Item superior com pontuação"
1481
+
1482
+ #: inc/taxonomies.php:286
1483
+ msgid "(e.g. Search Actors)"
1484
+ msgstr "(p. ex. Pesquisar actores)"
1485
+
1486
+ #: inc/taxonomies.php:287
1487
+ msgid "Search Items"
1488
+ msgstr "Pesquisar itens"
1489
+
1490
+ #: inc/taxonomies.php:295
1491
+ msgid "(e.g. Popular Actors)"
1492
+ msgstr "(p. ex. Actores populares)"
1493
+
1494
+ #: inc/taxonomies.php:296
1495
+ msgid "Popular Items"
1496
+ msgstr "Itens populares"
1497
+
1498
+ #: inc/taxonomies.php:304
1499
+ msgid "(e.g. Separate actors with commas)"
1500
+ msgstr "(p. ex. Actores separados por vírgulas)"
1501
+
1502
+ #: inc/taxonomies.php:305
1503
+ msgid "Separate Items with Commas"
1504
+ msgstr "Itens separados por vírgulas"
1505
+
1506
+ #: inc/taxonomies.php:313
1507
+ msgid "(e.g. Add or remove actors)"
1508
+ msgstr "(p. ex. Adicionar ou remover actores)"
1509
+
1510
+ #: inc/taxonomies.php:314
1511
+ msgid "Add or Remove Items"
1512
+ msgstr "Adicionar ou remover itens"
1513
+
1514
+ #: inc/taxonomies.php:322
1515
+ msgid "(e.g. Choose from the most used actors)"
1516
+ msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1517
+
1518
+ #: inc/taxonomies.php:323
1519
+ msgid "Choose From Most Used"
1520
+ msgstr "Escolher entre os mais utilizados"
1521
+
1522
+ #: inc/taxonomies.php:331
1523
+ msgid "(e.g. No actors found)"
1524
+ msgstr "(p. ex. Nenhum actor encontrado)"
1525
+
1526
+ #: inc/taxonomies.php:332
1527
+ msgid "Not found"
1528
+ msgstr "Não encontrado"
1529
+
1530
+ #: inc/taxonomies.php:355
1531
+ msgid "Whether the taxonomy can have parent-child relationships"
1532
+ msgstr "Se a taxonomia pode ter relações superior/dependente"
1533
+
1534
+ #: inc/taxonomies.php:372
1535
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1536
+ msgstr ""
1537
+ "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1538
+ "personalizada."
1539
+
1540
+ #: inc/taxonomies.php:389
1541
+ msgid "Sets the query_var key for this taxonomy."
1542
+ msgstr "Define a chave query_var para esta taxonomia."
1543
+
1544
+ #: inc/taxonomies.php:397
1545
+ msgid "(default: none). Query Var needs to be true to use."
1546
+ msgstr ""
1547
+ "(padrão: nenhum). Na opção Query var tem que estar verdadeiro para ser "
1548
+ "utilizada."
1549
+
1550
+ #: inc/taxonomies.php:398
1551
+ msgid "Custom Query Var String"
1552
+ msgstr "Valor personalizado da Query Var"
1553
+
1554
+ #: inc/taxonomies.php:399
1555
+ msgid "Sets a custom query_var slug for this taxonomy."
1556
+ msgstr "Define um URL personalizado para a query_var desta taxonomia."
1557
+
1558
+ #: inc/taxonomies.php:415
1559
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1560
+ msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1561
+
1562
+ #: inc/taxonomies.php:423
1563
+ msgid "(default: taxonomy name)"
1564
+ msgstr "(padrão: nome da taxonomia)"
1565
+
1566
+ #: inc/taxonomies.php:425
1567
+ msgid "Custom taxonomy rewrite slug."
1568
+ msgstr "Reescrever URL da taxonomia personalizada."
1569
+
1570
+ #: inc/taxonomies.php:439
1571
+ msgid "Rewrite With Front"
1572
+ msgstr "Reescrever URL com base"
1573
+
1574
+ #: inc/taxonomies.php:440
1575
+ msgid "(default: true)"
1576
+ msgstr "(padrão: verdadeiro)"
1577
+
1578
+ #: inc/taxonomies.php:456
1579
+ msgid "Rewrite Hierarchical"
1580
+ msgstr "Reescrever URL hierarquicamente"
1581
+
1582
+ #: inc/taxonomies.php:457
1583
+ msgid "(default: false)"
1584
+ msgstr "(Default: false)"
1585
+
1586
+ #: inc/taxonomies.php:458
1587
+ msgid "Should the permastruct allow hierarchical urls."
1588
+ msgstr "Permitir URL hierárquicos nas ligações permanentes."
1589
+
1590
+ #: inc/taxonomies.php:473
1591
+ msgid "Show Admin Column"
1592
+ msgstr "Mostrar coluna de administração"
1593
+
1594
+ #: inc/taxonomies.php:475
1595
+ msgid ""
1596
+ "Whether to allow automatic creation of taxonomy columns on associated post-"
1597
+ "types."
1598
+ msgstr ""
1599
+ "Se permite a criação automática de colunas de taxonomias em tipos de artigos "
1600
+ "associados."
1601
+
1602
+ #: inc/taxonomies.php:573
1603
+ msgid "Please provide a taxonomy to delete"
1604
+ msgstr "Por favor introduza uma taxonomia a apagar"
1605
+
1606
+ #: inc/taxonomies.php:624
1607
+ msgid "Please provide a taxonomy name"
1608
+ msgstr "Por favor introduza um nome de taxonomia"
1609
+
1610
+ #: inc/taxonomies.php:640
1611
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1612
+ msgstr ""
1613
+ "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1614
+
1615
+ #: inc/taxonomies.php:646
1616
+ #, php-format
1617
+ msgid "Please choose a different taxonomy name. %s is already used."
1618
+ msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1619
+
1620
+ #~ msgid "Custom Post Type UI Registered Types and Taxonomies."
1621
+ #~ msgstr "Tipos e taxonomias registados pelo Custom Post Type UI"
1622
+
1623
+ #~ msgid "View on front"
1624
+ #~ msgstr "Ver na frente do site"
1625
+
1626
+ #~ msgid ""
1627
+ #~ "Select a post type to edit. DO NOT EDIT the post type slug unless "
1628
+ #~ "necessary. Changing that value registers a new post type entry for your "
1629
+ #~ "install."
1630
+ #~ msgstr ""
1631
+ #~ "Seleccione um tipo de artifo para editar. NÃO EDITE o URL do tipo de "
1632
+ #~ "artigo a não ser que seja mesmo necessário. Alterar este valor regista um "
1633
+ #~ "novo tipo de artigo na sua instalação."
1634
+
1635
+ #~ msgid "Select"
1636
+ #~ msgstr "Seleccionar"
1637
+
1638
+ #~ msgid "Click headings to reveal available options."
1639
+ #~ msgstr "Clique nos títulos para mostrar opções disponíveis."
1640
+
1641
+ #~ msgid "Click to expand"
1642
+ #~ msgstr "Clique para expandir"
1643
+
1644
+ #~ msgid "Whether posts of this type should be shown in the admin UI."
1645
+ #~ msgstr ""
1646
+ #~ "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
1647
+ #~ "administração."
1648
+
1649
+ #~ msgid "Whether the post type will have a post type archive page."
1650
+ #~ msgstr ""
1651
+ #~ "Se o tipo de artigo terá uma página de arquivo para o tipo de artigo."
1652
+
1653
+ #~ msgid "Slug to be used for archive page."
1654
+ #~ msgstr "URL utilizado para a página de arquivo."
1655
+
1656
+ #~ msgid "Whether the post type will be searchable"
1657
+ #~ msgstr "Se o tipo de artigo será pesquisável"
1658
+
1659
+ #~ msgid "Triggers the handling of rewrites for this post type"
1660
+ #~ msgstr "Acciona o controlo de reescrita do URL para este tipo de artigo"
1661
+
1662
+ #~ msgid "(default: post type name)"
1663
+ #~ msgstr "(padrão: nome do tipo de artigo)"
1664
+
1665
+ #~ msgid "Custom slug to use instead of the default."
1666
+ #~ msgstr "Utilizar URL personalizado em vez do padrão."
1667
+
1668
+ #~ msgid "URL to image to be used as menu icon."
1669
+ #~ msgstr "URL da imagem a ser utilizada como ícone do menu."
1670
+
1671
+ #~ msgid "Whether to generate a default UI for managing this custom taxonomy"
1672
+ #~ msgstr ""
1673
+ #~ "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1674
+ #~ "personalizada"
1675
+
1676
+ #~ msgid "Triggers the handling of rewrites for this taxonomy"
1677
+ #~ msgstr "Acciona o controlo de reescrita do URL para esta taxonomia"
1678
+
1679
+ #, fuzzy
1680
+ #~ msgid "Custom Taxonomy Rewrite Slug"
1681
+ #~ msgstr "Reescrever URL personalizado"
1682
+
1683
+ #~ msgid "Whether posts of this type should be shown in the admin UI"
1684
+ #~ msgstr ""
1685
+ #~ "Se os artigos deste tipo deverão ser mostrados no painel de administração"
1686
+
1687
+ #~ msgid ""
1688
+ #~ "To get started with creating some post types, please visit %s and for "
1689
+ #~ "taxonomies, visit %s. If you need some help, check the %s page. If "
1690
+ #~ "nothing there fits your issue, visit our %s and we will try to get to "
1691
+ #~ "your question as soon as possible."
1692
+ #~ msgstr ""
1693
+ #~ "Para começar a criar alguns tipos de artigo, por favor visite %s e para "
1694
+ #~ "as taxonomias visite %s. Se precisar de ajuda, veja a página de %s. Se "
1695
+ #~ "nada se ajuste à sua situação, visite o nosso %s e tentaremos responder à "
1696
+ #~ "sua questão o mais rápido possível."
1697
+
1698
+ #~ msgid "CPT UI Support Forum"
1699
+ #~ msgstr "Fórum de suporte de CPT UI"
1700
+
1701
+ #~ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
1702
+ #~ msgstr "%s versão %s por %s - %s %s %s &middot; %s &middot; %s"
1703
+
1704
+ #~ msgid "Edit Post Type"
1705
+ #~ msgstr "Editar tipo de artigo"
1706
+
1707
+ #~ msgid "Edit Taxonomy"
1708
+ #~ msgstr "Editar taxonomia"
1709
+
1710
+ #~ msgid "About Custom Post Type UI"
1711
+ #~ msgstr "Sobre o Custom Post Type UI"
1712
+
1713
+ #~ msgid "Whether to generate a default UI for managing this post type"
1714
+ #~ msgstr ""
1715
+ #~ "Se cria um interface de utilizador padrão para gerir este tipo de artigo"
1716
+
1717
+ #~ msgid "Whether the post type will have a post type archive page"
1718
+ #~ msgstr "Se o tipo de artigo terá uma página de arquivo do tipo de artigo"
1719
+
1720
+ #~ msgid "Show In Menu"
1721
+ #~ msgstr "Mostrar no Menu"
1722
+
1723
+ #~ msgid ""
1724
+ #~ "Whether to show the post type in the admin menu and where to show that "
1725
+ #~ "menu. Note that show_ui must be true"
1726
+ #~ msgstr ""
1727
+ #~ "Se mostra o tipo de artigo no menu de administração e onde deverá ficar "
1728
+ #~ "esse menu. Note que \"Mostrar UI\" tem que ser \"Verdadeiro\""
1729
+
1730
+ #~ msgid "version"
1731
+ #~ msgstr "versão"
1732
+
1733
+ #~ msgid "Frequently Asked Questions"
1734
+ #~ msgstr "Perguntas frequentes"
1735
+
1736
+ #~ msgid ""
1737
+ #~ "Please note that this plugin will NOT handle display of registered post "
1738
+ #~ "types or taxonomies in your current theme. It will simply register them "
1739
+ #~ "for you."
1740
+ #~ msgstr ""
1741
+ #~ "Note que este plugin NÃO controla que tipos de artigos registados ou "
1742
+ #~ "taxonomias registadas serão mostrados no seu tema. Apenas efectuará o seu "
1743
+ #~ "registo por si."
1744
+
1745
+ #~ msgid ""
1746
+ #~ "Q: <strong>How can I display content from a custom post type on my "
1747
+ #~ "website?</strong>"
1748
+ #~ msgstr ""
1749
+ #~ "P: <strong>Como posso mostrar o conteúdo de um tipo de artigo "
1750
+ #~ "personalizado no meu site?</strong>"
1751
+
1752
+ #~ msgid "A: Justin Tadlock has written some great posts on the topic:"
1753
+ #~ msgstr ""
1754
+ #~ "R: Justin Tadlock escreveu alguns óptimos artigos sobre este tópico:"
1755
+
1756
+ #~ msgid "Showing Custom Post Types on your Home Page"
1757
+ #~ msgstr "Showing Custom Post Types on your Home Page"
1758
+
1759
+ #~ msgid "Custom Post Types in WordPress"
1760
+ #~ msgstr "Custom Post Types in WordPress"
1761
+
1762
+ #~ msgid ""
1763
+ #~ "A: You can either change the custom post type name back to the original "
1764
+ #~ "name or try the Post Type Switcher plugin: "
1765
+ #~ msgstr ""
1766
+ #~ "R: Pode mudar novamente o nome do tipo de artigo personalizado para o "
1767
+ #~ "original ou tentar o plugin Post Type Switcher:"
1768
+
1769
+ #~ msgid "Professional WordPress<br />Second Edition"
1770
+ #~ msgstr "Professional WordPress<br />Segunda edição"
1771
+
1772
+ #~ msgid "Please donate to the development<br />of Custom Post Type UI:"
1773
+ #~ msgstr ""
1774
+ #~ "Faça um donativo para o desenvolvimento <br />do Custom Post Type UI:"
1775
+
1776
+ #~ msgid ""
1777
+ #~ "The leading book on WordPress design and development!<br /><strong>Brand "
1778
+ #~ "new second edition!"
1779
+ #~ msgstr ""
1780
+ #~ "O principal livro de design e desenvolvimento em WordPress!<br /"
1781
+ #~ "><strong>Segunda edição!"
1782
+
1783
+ #~ msgid "WebDevStudios.com Recent News"
1784
+ #~ msgstr "Notícias recentes de WebDevStudios.com"
1785
+
1786
+ #~ msgid "WebDevStudios.com News"
1787
+ #~ msgstr "Notícias de WebDevStudios.com"
1788
+
1789
+ #~ msgid "Custom post type deleted successfully"
1790
+ #~ msgstr "Tipo de artigo personalizado apagado com sucesso"
1791
+
1792
+ #~ msgid "Manage Custom Post Types"
1793
+ #~ msgstr "Gerir tipos de artigo personalizados"
1794
+
1795
+ #~ msgid ""
1796
+ #~ "Deleting custom post types will <strong>NOT</strong> delete any content "
1797
+ #~ "into the database or added to those post types. You can easily recreate "
1798
+ #~ "your post types and the content will still exist."
1799
+ #~ msgstr ""
1800
+ #~ "Apagar tipos de artigo personalizados <strong>NÃO</strong> apagará "
1801
+ #~ "quaisquer conteúdos da base de dados ou adicionados a esses tipos de "
1802
+ #~ "artigo. Pode facilmente recriar os seus tipos de artigo e o conteúdo "
1803
+ #~ "continuará a existir."
1804
+
1805
+ #~ msgid "Action"
1806
+ #~ msgstr "Acção"
1807
+
1808
+ #~ msgid "Name"
1809
+ #~ msgstr "Nome"
1810
+
1811
+ #~ msgid "Label"
1812
+ #~ msgstr "Texto a mostrar"
1813
+
1814
+ #~ msgid "Rewrite Slug"
1815
+ #~ msgstr "Reescrever URL"
1816
+
1817
+ #, fuzzy
1818
+ #~ msgid "Total Published"
1819
+ #~ msgstr "Total de publicados"
1820
+
1821
+ #, fuzzy
1822
+ #~ msgid "Total Drafts"
1823
+ #~ msgstr "Total de rascunhos"
1824
+
1825
+ #~ msgid "Delete"
1826
+ #~ msgstr "Apagar"
1827
+
1828
+ #~ msgid ""
1829
+ #~ "Place the below code in your themes functions.php file to manually create "
1830
+ #~ "this custom post type."
1831
+ #~ msgstr ""
1832
+ #~ "Insira o código abaixo no ficheiro functions.php dos seus temas para "
1833
+ #~ "criar manualmente este tipo de artigo personalizado."
1834
+
1835
+ #~ msgid ""
1836
+ #~ "This is a <strong>BETA</strong> feature. Please <a href=\"https://github."
1837
+ #~ "com/WebDevStudios/custom-post-type-ui\">report bugs</a>."
1838
+ #~ msgstr ""
1839
+ #~ "Isto é um recurso <strong>BETA</strong>. Por favor <a href=\"https://"
1840
+ #~ "github.com/WebDevStudios/custom-post-type-ui\">reporte erros</a>."
1841
+
1842
+ #~ msgid "Additional Custom Post Types"
1843
+ #~ msgstr "Tipos de artigo personalizados adicionais"
1844
+
1845
+ #~ msgid "No additional post types found"
1846
+ #~ msgstr "Nenhum tipo de artigo adicional encontrado"
1847
+
1848
+ #~ msgid "Custom taxonomy deleted successfully"
1849
+ #~ msgstr "Taxonomia personalizada apagada com sucesso"
1850
+
1851
+ #~ msgid "Manage Custom Taxonomies"
1852
+ #~ msgstr "Gerir taxonomias personalizadas"
1853
+
1854
+ #~ msgid ""
1855
+ #~ "Deleting custom taxonomies does <strong>NOT</strong> delete any content "
1856
+ #~ "added to those taxonomies. You can easily recreate your taxonomies and "
1857
+ #~ "the content will still exist."
1858
+ #~ msgstr ""
1859
+ #~ "Apagar taxonomias personalizadas <strong>NÃO</strong> apagará quaisquer "
1860
+ #~ "conteúdos adicionados a essas taxonomias. Pode facilmente recriar as suas "
1861
+ #~ "taxonomias e o conteúdo continuará a existir."
1862
+
1863
+ #~ msgid "Attached Post Types"
1864
+ #~ msgstr "Tipos de artigos anexados"
1865
+
1866
+ #~ msgid ""
1867
+ #~ "Place the below code in your themes functions.php file to manually create "
1868
+ #~ "this custom taxonomy"
1869
+ #~ msgstr ""
1870
+ #~ "Insira o código abaixo no ficheiro functions.php dos seus temas para "
1871
+ #~ "criar manualmente esta taxonomia personalizada."
1872
+
1873
+ #~ msgid ""
1874
+ #~ "This is a <strong>BETA</strong> feature. Please <a href=\"http://"
1875
+ #~ "webdevstudios.com/support/forum/custom-post-type-ui/\">report bugs</a>."
1876
+ #~ msgstr ""
1877
+ #~ "Isto é um recurso <strong>BETA</strong>. Por favor <a href=\"http://"
1878
+ #~ "webdevstudios.com/support/forum/custom-post-type-ui/\">reporte erros</a>."
1879
+
1880
+ #~ msgid "Save Custom Post Type"
1881
+ #~ msgstr "Guardar tipo de artigo personalizado"
1882
+
1883
+ #~ msgid "Create Custom Post Type"
1884
+ #~ msgstr "Criar tipo de artigo personalizado"
1885
+
1886
+ #~ msgid "Save Custom Taxonomy"
1887
+ #~ msgstr "Guardar taxonomia personalizada"
1888
+
1889
+ #~ msgid "Create Custom Taxonomy"
1890
+ #~ msgstr "Criar taxonomia personalizada"
1891
+
1892
+ #~ msgid "Manage custom post types"
1893
+ #~ msgstr "Gerir tipos de artigo personalizados"
1894
+
1895
+ #~ msgid "Manage custom taxonomies"
1896
+ #~ msgstr "Gerir taxonomias personalizadas"
1897
+
1898
+ #~ msgid "Post type name is a required field."
1899
+ #~ msgstr "Nome do tipo de artigo é um campo obrigatório"
1900
+
1901
+ #~ msgid "Taxonomy name is a required field."
1902
+ #~ msgstr "Nome da taxonomia é um campo obrigatório."
1903
+
1904
+ #~ msgid "You must assign your custom taxonomy to at least one post type."
1905
+ #~ msgstr ""
1906
+ #~ "Tem que atribuir a sua taxonomia personalizada a pelo menos um tipo de "
1907
+ #~ "artigo."
1908
+
1909
+ #, fuzzy
1910
+ #~ msgid "Please doe not use quotes in your taxonomy slug or rewrite slug."
1911
+ #~ msgstr "Por favor não utilize aspas no URL da taxonomia ou "
1912
+
1913
+ #~ msgid "Edit Custom Post Type or Taxonomy"
1914
+ #~ msgstr "Editar tipo de artigo personalizado ou taxonomia"
1915
+
1916
+ #~ msgid "Reset"
1917
+ #~ msgstr "Repor"
1918
+
1919
+ #~ msgid "Create New Custom Post Type or Taxonomy"
1920
+ #~ msgstr "Criar novo tipo de artigo personalizado ou taxonomia"
1921
+
1922
+ #~ msgid ""
1923
+ #~ "If you are unfamiliar with the options below only fill out the "
1924
+ #~ "<strong>Post Type Name</strong> and <strong>Label</strong> fields and "
1925
+ #~ "check which meta boxes to support. The other settings are set to the "
1926
+ #~ "most common defaults for custom post types. Hover over the question mark "
1927
+ #~ "for more details."
1928
+ #~ msgstr ""
1929
+ #~ "Se não estiver familiarizado com as opções abaixo, preencha apenas os "
1930
+ #~ "campos <strong>Nome do tipo de artigo</strong> e <strong>Texto a mostrar</"
1931
+ #~ "strong> e seleccione as opções a suportar. Para as restantes definições "
1932
+ #~ "serão atribuídas as opções padrão para tipos de artigo personalizados. "
1933
+ #~ "Veja o ponto de interrogação para mais detalhes."
1934
+
1935
+ #~ msgid "Post Type Name"
1936
+ #~ msgstr "Nome do tipo de artigo"
1937
+
1938
+ #~ msgid ""
1939
+ #~ "Max 20 characters, can not contain capital letters or spaces. Reserved "
1940
+ #~ "post types: post, page, attachment, revision, nav_menu_item."
1941
+ #~ msgstr ""
1942
+ #~ "Máximo 20 caracteres, não pode conter maiúsculas ou espaços. Tipos de "
1943
+ #~ "artigos reservados: post, page, attachment, revision, nav_menu_item."
1944
+
1945
+ #~ msgid "Post type label. Used in the admin menu for displaying post types."
1946
+ #~ msgstr ""
1947
+ #~ "Texto a mostrar para o tipo de artigo. Utilizado no menu de administração "
1948
+ #~ "para mostrar os tipos de artigo."
1949
+
1950
+ #~ msgid "Advanced Label Options"
1951
+ #~ msgstr "Opções avançadas do texto a mostrar"
1952
+
1953
+ #~ msgid "Advanced Options"
1954
+ #~ msgstr "Opções avançadas"
1955
+
1956
+ #~ msgid "(e.g. Search Movies)"
1957
+ #~ msgstr "(p. ex. Pesquisar filmes)"
1958
+
1959
+ #~ msgid "(e.g. No Movies Found)"
1960
+ #~ msgstr "(p. ex. Nenhum fime encontrado)"
1961
+
1962
+ #~ msgid ""
1963
+ #~ "If you are unfamiliar with the options below only fill out the "
1964
+ #~ "<strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> "
1965
+ #~ "fields. The other settings are set to the most common defaults for "
1966
+ #~ "custom taxonomies. Hover over the question mark for more details."
1967
+ #~ msgstr ""
1968
+ #~ "Se não estiver familiarizado com as opções abaixo, preencha apenas os "
1969
+ #~ "campos <strong>Nome da taxonomia</strong> e <strong>Nome do tipo de "
1970
+ #~ "artigo</strong>. Para as restantes definições serão atribuídas as opções "
1971
+ #~ "padrão para taxonomias personalizadas. Veja o ponto de interrogação para "
1972
+ #~ "mais detalhes."
1973
+
1974
+ #~ msgid "Taxonomy Name"
1975
+ #~ msgstr "Nome da taxonomia"
1976
+
1977
+ #~ msgid ""
1978
+ #~ "Note: Changing the name, after adding terms to the taxonomy, will not "
1979
+ #~ "update the terms in the database."
1980
+ #~ msgstr ""
1981
+ #~ "Nota: alterar o nome depois de adicionar termos à taxonomia, não "
1982
+ #~ "actualizará os termos na base de dados."
1983
+
1984
+ #~ msgid ""
1985
+ #~ "Max 32 characters, should only contain alphanumeric lowercase characters "
1986
+ #~ "and underscores in place of spaces."
1987
+ #~ msgstr ""
1988
+ #~ "Máximo 32 caracteres, apenas pode conter caracteres alfanuméricos "
1989
+ #~ "minúsculos e underscores em vez de espaços."
1990
+
1991
+ #~ msgid ""
1992
+ #~ "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1993
+ #~ msgstr ""
1994
+ #~ "Texto a mostrar para a taxonomia. Utilizado no menu de administração para "
1995
+ #~ "mostrar a taxonomia personalizada."
1996
+
1997
+ #~ msgid "(e.g. movies)"
1998
+ #~ msgstr "(p. ex. filmes)"
1999
+
2000
+ #~ msgid "Update Item"
2001
+ #~ msgstr "Actualizar item"
2002
+
2003
+ #~ msgid "(e.g. Update Actor)"
2004
+ #~ msgstr "(p. ex. Actualizar actor)"
2005
+
2006
+ #~ msgid "\"Use the option below to explicitly set \"supports\" to false."
2007
+ #~ msgstr ""
2008
+ #~ "\"Utilize a opção abaixo para explicitamente definir \"suporte\" como "
2009
+ #~ "falso."
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,78 +1,117 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2015-04-09 23:51-0600\n"
5
- "PO-Revision-Date: 2015-04-09 23:51-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.5\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../custom-post-type-ui.php:58
20
  msgid "Custom Post Types"
21
  msgstr "Özel Yazı Türleri"
22
 
23
- #: ../custom-post-type-ui.php:58
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
- #: ../custom-post-type-ui.php:323
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:325
39
- #, php-format
 
 
 
 
40
  msgid ""
41
- "To get started with creating some post types, please visit %s and for "
42
- "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
43
- "there fits your issue, visit our %s and we will try to get to your question "
44
- "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
48
- #, fuzzy
49
- msgid "Add/Edit Post Types"
50
- msgstr "Ek Yazı Türleri"
51
 
52
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
53
- #, fuzzy
54
- msgid "Add/Edit Taxonomies"
55
- msgstr "Dahili Sınıflandırmalar"
 
 
56
 
57
- #: ../custom-post-type-ui.php:328 ../inc/support.php:30
58
  #, fuzzy
59
- msgid "Help/Support"
60
- msgstr "Eklentiye Destek, Yardım!"
61
 
62
- #: ../custom-post-type-ui.php:329
63
- msgid "CPT UI Support Forum"
 
 
64
  msgstr ""
65
 
66
- #: ../custom-post-type-ui.php:345
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
- #: ../custom-post-type-ui.php:349
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
- #: ../custom-post-type-ui.php:354
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
@@ -81,219 +120,215 @@ msgstr ""
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
- #: ../custom-post-type-ui.php:357
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
- #: ../custom-post-type-ui.php:362
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
- #: ../custom-post-type-ui.php:365
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
- #: ../custom-post-type-ui.php:366
 
 
 
 
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
- #: ../custom-post-type-ui.php:370
102
- msgid "PayPal - The safer, easier way to pay online!"
103
- msgstr ""
104
-
105
- #: ../custom-post-type-ui.php:407
106
  #, php-format
107
- msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:416
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
- #: ../custom-post-type-ui.php:418
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
119
- msgid "Import/Export"
120
- msgstr ""
121
-
122
- #: ../custom-post-type-ui.php:480
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
- #: ../custom-post-type-ui.php:484
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
- #: ../custom-post-type-ui.php:510
131
  #, fuzzy
132
  msgid "Add New Post Type"
133
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
134
 
135
- #: ../custom-post-type-ui.php:513
136
  #, fuzzy
137
  msgid "Edit Post Types"
138
  msgstr "Özel Yazı Türleri"
139
 
140
- #: ../custom-post-type-ui.php:517
141
  #, fuzzy
142
  msgid "Add New Taxonomy"
143
  msgstr "Sınıflandırma Adı"
144
 
145
- #: ../custom-post-type-ui.php:520
146
  #, fuzzy
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
- #: ../custom-post-type-ui.php:524 ../inc/listings.php:19
151
- #: ../inc/listings.php:123 ../inc/listings.php:196
152
  #, fuzzy
153
  msgid "Post Types"
154
  msgstr "Özel Yazı Türleri"
155
 
156
- #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
157
- #: ../inc/listings.php:26 ../inc/listings.php:107 ../inc/listings.php:117
158
  #, fuzzy
159
  msgid "Taxonomies"
160
  msgstr "Sınıflandırmaları Yönet"
161
 
162
- #: ../custom-post-type-ui.php:526
163
  msgid "Get Code"
164
  msgstr "Kodu Alın"
165
 
166
- #: ../custom-post-type-ui.php:610 ../inc/listings.php:24
167
- #: ../inc/listings.php:105 ../inc/listings.php:122 ../inc/listings.php:195
168
- #: ../inc/post-types.php:334 ../inc/taxonomies.php:326
169
  msgid "Settings"
170
  msgstr ""
171
 
172
- #: ../custom-post-type-ui.php:610
173
  msgid "Help"
174
  msgstr ""
175
 
176
- #: ../custom-post-type-ui.php:638
177
  #, php-format
178
  msgid "%s has been successfully added"
179
  msgstr ""
180
 
181
- #: ../custom-post-type-ui.php:640
182
  #, php-format
183
  msgid "%s has failed to be added"
184
  msgstr ""
185
 
186
- #: ../custom-post-type-ui.php:644
187
  #, php-format
188
  msgid "%s has been successfully updated"
189
  msgstr ""
190
 
191
- #: ../custom-post-type-ui.php:646
192
  #, php-format
193
  msgid "%s has failed to be updated"
194
  msgstr ""
195
 
196
- #: ../custom-post-type-ui.php:650
197
  #, php-format
198
  msgid "%s has been successfully deleted"
199
  msgstr ""
200
 
201
- #: ../custom-post-type-ui.php:652
202
  #, php-format
203
  msgid "%s has failed to be deleted"
204
  msgstr ""
205
 
206
- #: ../custom-post-type-ui.php:656
207
  #, php-format
208
  msgid "%s has been successfully imported"
209
  msgstr ""
210
 
211
- #: ../custom-post-type-ui.php:658
212
  #, php-format
213
  msgid "%s has failed to be imported"
214
  msgstr ""
215
 
216
- #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
217
  #, fuzzy, php-format
218
  msgid "Add new %s"
219
  msgstr "Yeni Ekle"
220
 
221
- #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
222
  #, fuzzy, php-format
223
  msgid "Edit %s"
224
  msgstr "Düzenle"
225
 
226
- #: ../custom-post-type-ui.php:743
227
  #, php-format
228
  msgid "New %s"
229
  msgstr ""
230
 
231
- #: ../custom-post-type-ui.php:744
232
  #, fuzzy, php-format
233
  msgid "View %s"
234
  msgstr "Göster"
235
 
236
- #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
237
  #, fuzzy, php-format
238
  msgid "All %s"
239
  msgstr "Bütün Elemanlar"
240
 
241
- #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
242
  #, fuzzy, php-format
243
  msgid "Search %s"
244
  msgstr "Eleman Ara"
245
 
246
- #: ../custom-post-type-ui.php:747
247
  #, fuzzy, php-format
248
  msgid "No %s found."
249
  msgstr "Bulunamadı"
250
 
251
- #: ../custom-post-type-ui.php:748
252
  #, fuzzy, php-format
253
  msgid "No %s found in trash."
254
  msgstr "Çöpte Bulunamadı"
255
 
256
- #: ../custom-post-type-ui.php:752
257
  #, fuzzy, php-format
258
  msgid "Popular %s"
259
  msgstr "Popüler Elemanlar"
260
 
261
- #: ../custom-post-type-ui.php:754
262
  #, fuzzy, php-format
263
  msgid "Parent %s"
264
  msgstr "Temel"
265
 
266
- #: ../custom-post-type-ui.php:755
267
  #, fuzzy, php-format
268
  msgid "Parent %s:"
269
  msgstr "Temel"
270
 
271
- #: ../custom-post-type-ui.php:757
272
  #, php-format
273
  msgid "Update %s"
274
  msgstr ""
275
 
276
- #: ../custom-post-type-ui.php:759
277
  #, fuzzy, php-format
278
  msgid "New %s name"
279
  msgstr "Yeni Eleman Adı"
280
 
281
- #: ../custom-post-type-ui.php:760
282
  #, fuzzy, php-format
283
  msgid "Separate %s with commas"
284
  msgstr "Elemanları virgül ile ayır"
285
 
286
- #: ../custom-post-type-ui.php:761
287
  #, fuzzy, php-format
288
  msgid "Add or remove %s"
289
  msgstr "Elemanları Ekle veya Çıkar "
290
 
291
- #: ../custom-post-type-ui.php:762
292
  #, fuzzy, php-format
293
  msgid "Choose from the most used %s"
294
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
295
 
296
- #: ../inc/import_export.php:52
297
  msgid ""
298
  "If you are wanting to migrate registered post types or taxonomies from this "
299
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -301,179 +336,194 @@ msgid ""
301
  "the information in the \"Get Code\" tab."
302
  msgstr ""
303
 
304
- #: ../inc/import_export.php:55
305
  msgid "NOTE"
306
  msgstr ""
307
 
308
- #: ../inc/import_export.php:56
309
  msgid "This will not export the associated posts, just the settings."
310
  msgstr ""
311
 
312
- #: ../inc/import_export.php:63
313
  #, fuzzy
314
  msgid "Import Post Types"
315
  msgstr "Özel Yazı Türleri"
316
 
317
- #: ../inc/import_export.php:65 ../inc/import_export.php:90
318
  msgid "Paste content here."
319
  msgstr ""
320
 
321
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
322
  msgid "Note:"
323
  msgstr ""
324
 
325
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
326
  msgid "Importing will overwrite previous registered settings."
327
  msgstr ""
328
 
329
- #: ../inc/import_export.php:67
330
  msgid ""
331
  "To import post types from a different WordPress site, paste the exported "
332
  "content from that site and click the \"Import\" button."
333
  msgstr ""
334
 
335
- #: ../inc/import_export.php:68 ../inc/import_export.php:93
336
  msgid "Import"
337
  msgstr ""
338
 
339
- #: ../inc/import_export.php:72
340
  #, fuzzy
341
  msgid "Export Post Types"
342
  msgstr "Özel Yazı Türleri"
343
 
344
- #: ../inc/import_export.php:78
345
  msgid "No post types registered yet."
346
  msgstr ""
347
 
348
- #: ../inc/import_export.php:81 ../inc/import_export.php:106
349
  msgid ""
350
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
351
  "(Mac)."
352
  msgstr ""
353
 
354
- #: ../inc/import_export.php:82
355
  msgid ""
356
  "Use the content above to import current post types into a different "
357
  "WordPress site. You can also use this to simply back up your post type "
358
  "settings."
359
  msgstr ""
360
 
361
- #: ../inc/import_export.php:88
362
  #, fuzzy
363
  msgid "Import Taxonomies"
364
  msgstr "Sınıflandırmaları Yönet"
365
 
366
- #: ../inc/import_export.php:92
367
  msgid ""
368
  "To import taxonomies from a different WordPress site, paste the exported "
369
  "content from that site and click the \"Import\" button."
370
  msgstr ""
371
 
372
- #: ../inc/import_export.php:97
373
  #, fuzzy
374
  msgid "Export Taxonomies"
375
  msgstr "Sınıflandırmaları Yönet"
376
 
377
- #: ../inc/import_export.php:103
378
  msgid "No taxonomies registered yet."
379
  msgstr ""
380
 
381
- #: ../inc/import_export.php:107
382
  msgid ""
383
  "Use the content above to import current taxonomies into a different "
384
  "WordPress site. You can also use this to simply back up your taxonomy "
385
  "settings."
386
  msgstr ""
387
 
388
- #: ../inc/import_export.php:115
389
  #, fuzzy
390
  msgid "Get Post Type and Taxonomy Code"
391
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
392
 
393
- #: ../inc/import_export.php:117
394
  #, fuzzy
395
  msgid "All CPT UI Post Types"
396
  msgstr "Özel Yazı Türleri"
397
 
398
- #: ../inc/import_export.php:118 ../inc/import_export.php:122
399
  msgid "Copy/paste the code below into your functions.php file."
400
  msgstr ""
401
 
402
- #: ../inc/import_export.php:121
403
  #, fuzzy
404
  msgid "All CPT UI Taxonomies"
405
  msgstr "Dahili Sınıflandırmalar"
406
 
407
- #: ../inc/import_export.php:152
408
  msgid "No taxonomies to display at this time"
409
  msgstr ""
410
 
411
- #: ../inc/import_export.php:252
412
  msgid "No post types to display at this time"
413
  msgstr ""
414
 
415
- #: ../inc/import_export.php:379
416
  #, fuzzy
417
  msgid "Post types"
418
  msgstr "Özel Yazı Türleri"
419
 
420
- #: ../inc/listings.php:7
421
- msgid "Registered Types and Taxes"
422
  msgstr ""
423
 
424
- #: ../inc/listings.php:7
425
- msgid "Registered Types/Taxes"
 
426
  msgstr ""
427
 
428
- #: ../inc/listings.php:23 ../inc/listings.php:104
429
  #, fuzzy
430
  msgid "Post Type"
431
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
432
 
433
- #: ../inc/listings.php:25 ../inc/listings.php:106 ../inc/post-types.php:605
434
  msgid "Supports"
435
  msgstr "Destekler"
436
 
437
- #: ../inc/listings.php:27 ../inc/listings.php:108 ../inc/listings.php:124
438
- #: ../inc/listings.php:197 ../inc/post-types.php:172 ../inc/taxonomies.php:184
439
  #, fuzzy
440
  msgid "Labels"
441
  msgstr "Etiket"
442
 
443
- #: ../inc/listings.php:93 ../inc/listings.php:183
 
 
 
 
 
 
 
 
444
  #, fuzzy
445
  msgid "No custom labels to display"
446
  msgstr "Özel Yazı Türleri"
447
 
448
- #: ../inc/listings.php:121 ../inc/listings.php:194
449
  #, fuzzy
450
  msgid "Taxonomy"
451
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
452
 
453
- #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
454
  msgid "Are you sure you want to delete this?"
455
  msgstr ""
456
 
457
- #: ../inc/post-types.php:85
 
 
 
 
 
 
458
  msgid ""
459
- "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
460
- "Changing that value registers a new post type entry for your install."
461
  msgstr ""
462
 
463
- #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
464
- msgid "Select"
465
  msgstr ""
466
 
467
- #: ../inc/post-types.php:110
468
  #, fuzzy
469
  msgid "Post Type Slug"
470
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
471
 
472
- #: ../inc/post-types.php:111
473
  msgid "(e.g. movie)"
474
  msgstr "(örnek: film)"
475
 
476
- #: ../inc/post-types.php:112
477
  #, fuzzy
478
  msgid ""
479
  "The post type name. Used to retrieve custom post type content. Should be "
@@ -482,37 +532,37 @@ msgstr ""
482
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
483
  "kullanılacaktır."
484
 
485
- #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
486
  #, fuzzy
487
  msgid "Plural Label"
488
  msgstr "Tekil Etiket"
489
 
490
- #: ../inc/post-types.php:124
491
  msgid "(e.g. Movies)"
492
  msgstr "(örneğin: Filmler)"
493
 
494
- #: ../inc/post-types.php:125 ../inc/post-types.php:193
495
- #: ../inc/post-types.php:205 ../inc/post-types.php:217
496
- #: ../inc/post-types.php:229 ../inc/post-types.php:241
497
- #: ../inc/post-types.php:253 ../inc/post-types.php:265
498
- #: ../inc/post-types.php:277 ../inc/post-types.php:289
499
- #: ../inc/post-types.php:301 ../inc/post-types.php:313
500
- #: ../inc/post-types.php:325
501
  #, fuzzy
502
  msgid "Post type label. Used in the admin menu for displaying post types."
503
  msgstr ""
504
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
505
  "kullanılacak."
506
 
507
- #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
508
  msgid "Singular Label"
509
  msgstr "Tekil Etiket"
510
 
511
- #: ../inc/post-types.php:136
512
  msgid "(e.g. Movie)"
513
  msgstr "(örneğin: Film)"
514
 
515
- #: ../inc/post-types.php:137
516
  #, fuzzy
517
  msgid ""
518
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
@@ -521,11 +571,11 @@ msgstr ""
521
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
522
  "kullanacak."
523
 
524
- #: ../inc/post-types.php:152
525
  msgid "Description"
526
  msgstr "Açıklama"
527
 
528
- #: ../inc/post-types.php:153
529
  #, fuzzy
530
  msgid ""
531
  "Custom Post Type Description. Describe what your custom post type is used "
@@ -533,152 +583,184 @@ msgid ""
533
  msgstr ""
534
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
535
 
536
- #: ../inc/post-types.php:160
 
 
 
 
 
 
 
 
537
  #, fuzzy
538
- msgid "Edit Post Type"
539
- msgstr "Özel Yazı Türleri"
540
 
541
- #: ../inc/post-types.php:161
542
  #, fuzzy
543
  msgid "Delete Post Type"
544
  msgstr "Ek Yazı Türleri"
545
 
546
- #: ../inc/post-types.php:163
547
  #, fuzzy
548
  msgid "Add Post Type"
549
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
550
 
551
- #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
552
- msgid "Click headings to reveal available options."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  msgstr ""
 
 
 
554
 
555
- #: ../inc/post-types.php:172 ../inc/post-types.php:334
556
- #: ../inc/post-types.php:825 ../inc/taxonomies.php:184
557
- #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
558
- msgid "Click to expand"
 
 
559
  msgstr ""
 
 
 
560
 
561
- #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
562
  msgid "Menu Name"
563
  msgstr "Menü Adı"
564
 
565
- #: ../inc/post-types.php:181
566
  msgid "Custom menu name for your custom post type."
567
  msgstr "Özel yazı türü için özel menü adı."
568
 
569
- #: ../inc/post-types.php:185
570
  msgid "(e.g. My Movies)"
571
  msgstr "(örneğin: Benim Filmlerim)"
572
 
573
- #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
574
  msgid "All Items"
575
  msgstr "Bütün Elemanlar"
576
 
577
- #: ../inc/post-types.php:197
578
  #, fuzzy
579
  msgid "(e.g. All Movies)"
580
  msgstr "(örneğin: Filmler)"
581
 
582
- #: ../inc/post-types.php:204
583
  msgid "Add New"
584
  msgstr "Yeni Ekle"
585
 
586
- #: ../inc/post-types.php:209
587
  msgid "(e.g. Add New)"
588
  msgstr "(örneğin: Yeni Ekle)"
589
 
590
- #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
591
  msgid "Add New Item"
592
  msgstr "Yeni Eleman Ekle"
593
 
594
- #: ../inc/post-types.php:221
595
  msgid "(e.g. Add New Movie)"
596
  msgstr "(örneğin: Yeni Film ekle)"
597
 
598
- #: ../inc/post-types.php:228
599
- msgid "Edit"
600
- msgstr "Düzenle"
601
-
602
- #: ../inc/post-types.php:233
603
  msgid "(e.g. Edit)"
604
  msgstr "(örneğin: Düzenle)"
605
 
606
- #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
607
  msgid "Edit Item"
608
  msgstr "Eleman Düzenle"
609
 
610
- #: ../inc/post-types.php:245
611
  msgid "(e.g. Edit Movie)"
612
  msgstr "(örneğin: Film Düzenle)"
613
 
614
- #: ../inc/post-types.php:252
615
  msgid "New Item"
616
  msgstr "Yeni Eleman"
617
 
618
- #: ../inc/post-types.php:257
619
  msgid "(e.g. New Movie)"
620
  msgstr "(örneğin: Yeni Film)"
621
 
622
- #: ../inc/post-types.php:264
623
  msgid "View"
624
  msgstr "Göster"
625
 
626
- #: ../inc/post-types.php:269
627
  #, fuzzy
628
  msgid "(e.g. View)"
629
  msgstr "(örneğin: Film Göster)"
630
 
631
- #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
632
  msgid "View Item"
633
  msgstr "Elemanı Göster"
634
 
635
- #: ../inc/post-types.php:281
636
  msgid "(e.g. View Movie)"
637
  msgstr "(örneğin: Film Göster)"
638
 
639
- #: ../inc/post-types.php:288
640
  #, fuzzy
641
  msgid "Search Item"
642
  msgstr "Eleman Düzenle"
643
 
644
- #: ../inc/post-types.php:293
645
  #, fuzzy
646
  msgid "(e.g. Search Movie)"
647
  msgstr "(örneğin: Filmleri Ara)"
648
 
649
- #: ../inc/post-types.php:300
650
  msgid "Not Found"
651
  msgstr "Bulunamadı"
652
 
653
- #: ../inc/post-types.php:305
654
  #, fuzzy
655
  msgid "(e.g. No Movies found)"
656
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
657
 
658
- #: ../inc/post-types.php:312
659
  msgid "Not Found in Trash"
660
  msgstr "Çöpte Bulunamadı"
661
 
662
- #: ../inc/post-types.php:317
663
  msgid "(e.g. No Movies found in Trash)"
664
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
665
 
666
- #: ../inc/post-types.php:324
667
  msgid "Parent"
668
  msgstr "Temel"
669
 
670
- #: ../inc/post-types.php:329
671
  msgid "(e.g. Parent Movie)"
672
  msgstr "(örneğin: Temel Film)"
673
 
674
- #: ../inc/post-types.php:343 ../inc/post-types.php:363
675
- #: ../inc/post-types.php:389 ../inc/post-types.php:421
676
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
677
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
678
- #: ../inc/post-types.php:567 ../inc/taxonomies.php:332
679
- #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
680
- #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
681
- #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
682
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
683
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
684
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -686,14 +768,14 @@ msgstr "(örneğin: Temel Film)"
686
  msgid "False"
687
  msgstr "False"
688
 
689
- #: ../inc/post-types.php:344 ../inc/post-types.php:364
690
- #: ../inc/post-types.php:390 ../inc/post-types.php:422
691
- #: ../inc/post-types.php:453 ../inc/post-types.php:473
692
- #: ../inc/post-types.php:505 ../inc/post-types.php:525
693
- #: ../inc/post-types.php:568 ../inc/taxonomies.php:333
694
- #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
695
- #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
696
- #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
697
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
698
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
699
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -701,125 +783,135 @@ msgstr "False"
701
  msgid "True"
702
  msgstr "True"
703
 
704
- #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
705
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
706
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
707
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
708
  msgid "Public"
709
  msgstr "Genel"
710
 
711
- #: ../inc/post-types.php:353 ../inc/post-types.php:373
712
- #: ../inc/post-types.php:482 ../inc/post-types.php:514
713
- #: ../inc/post-types.php:534 ../inc/post-types.php:576
714
- #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
715
- #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
716
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
717
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
718
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
719
  msgid "(default: True)"
720
  msgstr "(varsayılan: Doğru)"
721
 
722
- #: ../inc/post-types.php:354
723
  #, fuzzy
724
- msgid "Whether posts of this type should be shown in the admin UI."
 
 
725
  msgstr ""
726
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
727
 
728
- #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
729
  msgid "Show UI"
730
  msgstr "KA Göster"
731
 
732
- #: ../inc/post-types.php:374
733
  #, fuzzy
734
  msgid "Whether to generate a default UI for managing this post type."
735
  msgstr ""
736
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
737
 
738
- #: ../inc/post-types.php:382
739
  msgid "Has Archive"
740
  msgstr "Arşivlenebilir mi?"
741
 
742
- #: ../inc/post-types.php:383
743
  #, fuzzy
744
- msgid "Whether the post type will have a post type archive page."
745
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
746
 
747
- #: ../inc/post-types.php:384
748
  msgid "If left blank, the archive slug will default to the post type slug."
749
  msgstr ""
750
 
751
- #: ../inc/post-types.php:398 ../inc/post-types.php:431
752
- #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
753
- #: ../inc/taxonomies.php:461
754
  msgid "(default: False)"
755
  msgstr "(varsayılan:Yanlış)"
756
 
757
- #: ../inc/post-types.php:410
758
- msgid "Slug to be used for archive page."
759
  msgstr ""
760
 
761
- #: ../inc/post-types.php:430
762
  msgid "Exclude From Search"
763
  msgstr "Arama Dışında Bırak"
764
 
765
- #: ../inc/post-types.php:432
766
- msgid "Whether the post type will be searchable"
767
- msgstr "Yazı türünün aranabilir olup olmadığı"
 
768
 
769
- #: ../inc/post-types.php:443
770
  msgid "Capability Type"
771
  msgstr "Yetenek Türü"
772
 
773
- #: ../inc/post-types.php:444
774
  msgid "The post type to use for checking read, edit, and delete capabilities"
775
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
776
 
777
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
778
  msgid "Hierarchical"
779
  msgstr "Hiyerarşik"
780
 
781
- #: ../inc/post-types.php:463
782
  msgid "Whether the post type can have parent-child relationships"
783
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
784
 
785
- #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
786
  msgid "Rewrite"
787
  msgstr "Rewrite"
788
 
789
- #: ../inc/post-types.php:483
790
- msgid "Triggers the handling of rewrites for this post type"
 
791
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
792
 
793
- #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
794
  msgid "Custom Rewrite Slug"
795
  msgstr "Özel Rewrite Slug"
796
 
797
- #: ../inc/post-types.php:495
798
- msgid "(default: post type name)"
 
799
  msgstr "(varsayılan: yazı türü adı)"
800
 
801
- #: ../inc/post-types.php:496
802
- msgid "Custom slug to use instead of the default."
 
803
  msgstr "Özel slug yerine varsayılan kullanmak için."
804
 
805
- #: ../inc/post-types.php:513
806
  msgid "With Front"
807
  msgstr "Cephesinden"
808
 
809
- #: ../inc/post-types.php:515 ../inc/post-types.php:535
810
- #: ../inc/taxonomies.php:428
811
  msgid "Should the permastruct be prepended with the front base."
812
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
813
 
814
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
815
  msgid "Query Var"
816
  msgstr "Sorgu Tanımı"
817
 
818
- #: ../inc/post-types.php:543
 
 
 
 
 
819
  msgid "Menu Position"
820
  msgstr "Menü Pozisyonu"
821
 
822
- #: ../inc/post-types.php:544
823
  msgid ""
824
  "The position in the menu order the post type should appear. show_in_menu "
825
  "must be true."
@@ -827,7 +919,7 @@ msgstr ""
827
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
828
  "gerekir."
829
 
830
- #: ../inc/post-types.php:545
831
  msgid ""
832
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
833
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -837,18 +929,17 @@ msgstr ""
837
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
838
  "bölümü\". Aralık 5 ile 100"
839
 
840
- #: ../inc/post-types.php:560
841
  msgid "Show in Menu"
842
  msgstr "Menüde Göster"
843
 
844
- #: ../inc/post-types.php:561
845
  #, fuzzy
846
  msgid ""
847
- "Whether to show the post type in the admin menu and where to show that menu. "
848
- "Note that show_ui must be true."
849
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
850
 
851
- #: ../inc/post-types.php:562
852
  msgid ""
853
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
854
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -857,95 +948,95 @@ msgstr ""
857
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
858
  "olacaktır."
859
 
860
- #: ../inc/post-types.php:588
861
- msgid "URL to image to be used as menu icon."
862
- msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
863
 
864
- #: ../inc/post-types.php:600
865
  msgid "Menu Icon"
866
  msgstr "Menü Simgesi"
867
 
868
- #: ../inc/post-types.php:601
869
  msgid "(Full URL for icon or Dashicon class)"
870
  msgstr ""
871
 
872
- #: ../inc/post-types.php:602
873
  #, fuzzy
874
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
875
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
876
 
877
- #: ../inc/post-types.php:615
878
  msgid "Title"
879
  msgstr "Başlık"
880
 
881
- #: ../inc/post-types.php:616
882
  msgid "Adds the title meta box when creating content for this custom post type"
883
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
884
 
885
- #: ../inc/post-types.php:630
886
  msgid "Editor"
887
  msgstr "Editör"
888
 
889
- #: ../inc/post-types.php:631
890
  msgid ""
891
  "Adds the content editor meta box when creating content for this custom post "
892
  "type"
893
  msgstr ""
894
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
895
 
896
- #: ../inc/post-types.php:645
897
  msgid "Excerpt"
898
  msgstr "Alıntı"
899
 
900
- #: ../inc/post-types.php:646
901
  msgid ""
902
  "Adds the excerpt meta box when creating content for this custom post type"
903
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
904
 
905
- #: ../inc/post-types.php:660
906
  msgid "Trackbacks"
907
  msgstr "Parçagönderimi"
908
 
909
- #: ../inc/post-types.php:661
910
  msgid ""
911
  "Adds the trackbacks meta box when creating content for this custom post type"
912
  msgstr ""
913
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
914
 
915
- #: ../inc/post-types.php:675
916
  msgid "Custom Fields"
917
  msgstr "Özel Alanlar"
918
 
919
- #: ../inc/post-types.php:676
920
  msgid ""
921
  "Adds the custom fields meta box when creating content for this custom post "
922
  "type"
923
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
924
 
925
- #: ../inc/post-types.php:690
926
  msgid "Comments"
927
  msgstr "Yorumlar"
928
 
929
- #: ../inc/post-types.php:691
930
  msgid ""
931
  "Adds the comments meta box when creating content for this custom post type"
932
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
933
 
934
- #: ../inc/post-types.php:705
935
  msgid "Revisions"
936
  msgstr "Düzenlemeler"
937
 
938
- #: ../inc/post-types.php:706
939
  msgid ""
940
  "Adds the revisions meta box when creating content for this custom post type"
941
  msgstr ""
942
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
943
 
944
- #: ../inc/post-types.php:720
945
  msgid "Featured Image"
946
  msgstr "Öne Çıkan Görüntü"
947
 
948
- #: ../inc/post-types.php:721
949
  msgid ""
950
  "Adds the featured image meta box when creating content for this custom post "
951
  "type"
@@ -953,20 +1044,20 @@ msgstr ""
953
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
954
  "ekler"
955
 
956
- #: ../inc/post-types.php:735
957
  msgid "Author"
958
  msgstr "Yazar"
959
 
960
- #: ../inc/post-types.php:736
961
  msgid ""
962
  "Adds the author meta box when creating content for this custom post type"
963
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
964
 
965
- #: ../inc/post-types.php:750
966
  msgid "Page Attributes"
967
  msgstr "Sayfa Öznitelikleri"
968
 
969
- #: ../inc/post-types.php:751
970
  msgid ""
971
  "Adds the page attribute meta box when creating content for this custom post "
972
  "type"
@@ -974,99 +1065,75 @@ msgstr ""
974
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
975
  "ekler "
976
 
977
- #: ../inc/post-types.php:765
978
  msgid "Post Formats"
979
  msgstr "Yazı Formatları"
980
 
981
- #: ../inc/post-types.php:766
982
  msgid "Adds post format support"
983
  msgstr "Bu Yazı format desteği ekler"
984
 
985
- #: ../inc/post-types.php:771
986
  msgid "Use the option below to explicitly set \"supports\" to false."
987
  msgstr ""
988
 
989
- #: ../inc/post-types.php:779
990
  msgid "None"
991
  msgstr ""
992
 
993
- #: ../inc/post-types.php:780
994
  msgid "Remove all support features"
995
  msgstr ""
996
 
997
- #: ../inc/post-types.php:787
998
- msgid "Built-in Taxonomies"
999
- msgstr "Dahili Sınıflandırmalar"
1000
-
1001
- #: ../inc/post-types.php:816 ../inc/taxonomies.php:163
1002
- #, fuzzy, php-format
1003
- msgid "Adds %s support"
1004
- msgstr "Bu Yazı format desteği ekler"
1005
-
1006
- #: ../inc/post-types.php:825 ../inc/taxonomies.php:470
1007
- msgid "Starter Notes"
1008
- msgstr ""
1009
 
1010
- #: ../inc/post-types.php:828
1011
- #, fuzzy, php-format
1012
  msgid ""
1013
- "Post Type names should have %smax 20 characters%s, and only contain "
1014
- "alphanumeric, lowercase characters, underscores in place of spaces and "
1015
- "letters that do not have accents. Reserved names: post, page, attachment, "
1016
- "revision, nav_menu_item."
1017
  msgstr ""
1018
- "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
1019
- "post, sayfa, ek, revizyon, nav_menu_item."
1020
 
1021
- #: ../inc/post-types.php:829
1022
- #, fuzzy, php-format
1023
- msgid ""
1024
- "If you are unfamiliar with the advanced post type settings, just fill in the "
1025
- "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
1026
- "values. Labels, if left blank, will be automatically created based on the "
1027
- "post type name. Hover over the question mark for more details."
1028
  msgstr ""
1029
- "Sadece Adı ve Etiket alanlarını doldurun kullanıyorsanız diğer kutuları da "
1030
- "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
1031
- "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1032
 
1033
- #: ../inc/post-types.php:830
 
 
 
 
1034
  #, fuzzy, php-format
1035
- msgid ""
1036
- "Deleting custom post types will %sNOT%s delete any content into the database "
1037
- "or added to those post types. You can easily recreate your post types and "
1038
- "the content will still exist."
1039
- msgstr ""
1040
- "Özel yazı türlerini silmek veritabanında herhangi bir içeriği silmek veya bu "
1041
- "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
1042
- "veritabanında olacaktır."
1043
 
1044
- #: ../inc/post-types.php:910
1045
  msgid "Please provide a post type to delete"
1046
  msgstr ""
1047
 
1048
- #: ../inc/post-types.php:970
1049
  #, fuzzy
1050
  msgid "Please provide a post type name"
1051
  msgstr "(varsayılan: yazı türü adı)"
1052
 
1053
- #: ../inc/post-types.php:988
1054
  #, fuzzy
1055
  msgid "Please do not use quotes in post type names or rewrite slugs"
1056
  msgstr ""
1057
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1058
 
1059
- #: ../inc/post-types.php:995
1060
  #, php-format
1061
  msgid "Please choose a different post type name. %s is already registered."
1062
  msgstr ""
1063
 
1064
- #: ../inc/support.php:51
1065
  #, fuzzy
1066
  msgid "Custom Post Type UI Support"
1067
  msgstr "Özel Yazı Türleri KA"
1068
 
1069
- #: ../inc/support.php:53
1070
  #, fuzzy, php-format
1071
  msgid ""
1072
  "Please note that this plugin will NOT handle display of registered post "
@@ -1076,16 +1143,16 @@ msgstr ""
1076
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1077
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1078
 
1079
- #: ../inc/support.php:54
1080
  #, fuzzy
1081
  msgid "Support Forums"
1082
  msgstr "Destekler"
1083
 
1084
- #: ../inc/support.php:60
1085
  msgid "General"
1086
  msgstr ""
1087
 
1088
- #: ../inc/support.php:63
1089
  #, fuzzy
1090
  msgid ""
1091
  "I changed my custom post type name and now I can not get to my posts. How do "
@@ -1094,7 +1161,7 @@ msgstr ""
1094
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1095
  "gösterilmiyor</strong>"
1096
 
1097
- #: ../inc/support.php:64
1098
  #, fuzzy
1099
  msgid ""
1100
  "You can either change the custom post type name back to the original name or "
@@ -1103,13 +1170,13 @@ msgstr ""
1103
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1104
  "deneyebilirsiniz:"
1105
 
1106
- #: ../inc/support.php:69
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:70
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,40 +1184,40 @@ msgid ""
1117
  "delete the previous version's entry."
1118
  msgstr ""
1119
 
1120
- #: ../inc/support.php:73
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:74
1127
  msgid ""
1128
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1129
  msgstr ""
1130
 
1131
- #: ../inc/support.php:79
1132
  msgid "Front-end Display"
1133
  msgstr ""
1134
 
1135
- #: ../inc/support.php:82
1136
  msgid "What template files should I edit to alter my post type display?"
1137
  msgstr ""
1138
 
1139
- #: ../inc/support.php:83
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:90
1147
  #, fuzzy
1148
  msgid "How do I display my custom post type on my site?"
1149
  msgstr ""
1150
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1151
  "strong>"
1152
 
1153
- #: ../inc/support.php:91
1154
  #, php-format
1155
  msgid ""
1156
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1158,13 +1225,13 @@ msgid ""
1158
  "should be something like \"http://www.mysite.com/post-type-slug\""
1159
  msgstr ""
1160
 
1161
- #: ../inc/support.php:97
1162
  msgid ""
1163
  "I have added categories and tags to my custom post type, but they do not "
1164
  "appear in the archives."
1165
  msgstr ""
1166
 
1167
- #: ../inc/support.php:98
1168
  #, php-format
1169
  msgid ""
1170
  "You will need to add your newly created post type to the types that the "
@@ -1172,73 +1239,85 @@ msgid ""
1172
  "that at %s"
1173
  msgstr ""
1174
 
1175
- #: ../inc/support.php:107
1176
  #, fuzzy
1177
  msgid "Advanced"
1178
  msgstr "Gelişmiş Ayarlar"
1179
 
1180
- #: ../inc/support.php:110
1181
  #, fuzzy
1182
  msgid "How do I add custom metaboxes to my post type?"
1183
  msgstr ""
1184
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1185
  "ekleyebilirsiniz?</strong>"
1186
 
1187
- #: ../inc/support.php:112
1188
  #, php-format
1189
  msgid ""
1190
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1191
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1192
  msgstr ""
1193
 
1194
- #: ../inc/support.php:118
1195
  msgid ""
1196
  "How do I add a newly registered taxonomy to a post type that already exists?"
1197
  msgstr ""
1198
 
1199
- #: ../inc/support.php:120
1200
  #, php-format
1201
  msgid "Check out the %s function for documentation and usage examples."
1202
  msgstr ""
1203
 
1204
- #: ../inc/support.php:126
1205
  msgid "Post relationships?"
1206
  msgstr ""
1207
 
1208
- #: ../inc/support.php:127
1209
  #, php-format
1210
  msgid ""
1211
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1212
  "plugin that should be a good start."
1213
  msgstr ""
1214
 
1215
- #: ../inc/support.php:136
 
 
 
 
 
 
 
 
 
 
 
1216
  msgid ""
1217
  "How do I filter the \"enter title here\" text in the post editor screen?"
1218
  msgstr ""
1219
 
1220
- #: ../inc/support.php:137
1221
  msgid ""
1222
  "Change text inside the post/page editor title field. Should be able to adapt "
1223
  "as necessary."
1224
  msgstr ""
1225
 
1226
- #: ../inc/taxonomies.php:87
1227
  msgid ""
1228
- "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1229
- "Changing that value registers a new taxonomy entry for your install."
1230
  msgstr ""
1231
 
1232
- #: ../inc/taxonomies.php:109
1233
  #, fuzzy
1234
  msgid "Taxonomy Slug"
1235
  msgstr "Sınıflandırma Adı"
1236
 
1237
- #: ../inc/taxonomies.php:110
1238
- msgid "(e.g. actors)"
1239
- msgstr "(örneğin: aktörler)"
 
1240
 
1241
- #: ../inc/taxonomies.php:111
1242
  #, fuzzy
1243
  msgid ""
1244
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
@@ -1247,55 +1326,88 @@ msgstr ""
1247
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1248
  "tatlı olmalıdır"
1249
 
1250
- #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1251
  msgid "(e.g. Actors)"
1252
  msgstr "(örneğin: Aktörler)"
1253
 
1254
- #: ../inc/taxonomies.php:121
1255
  #, fuzzy
1256
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1257
  msgstr ""
1258
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1259
  "menüsünde kullanılan."
1260
 
1261
- #: ../inc/taxonomies.php:128
1262
  msgid "(e.g. Actor)"
1263
  msgstr "(örneğin: Aktör)"
1264
 
1265
- #: ../inc/taxonomies.php:130
1266
  msgid ""
1267
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1268
  msgstr ""
1269
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1270
  "kullanır."
1271
 
1272
- #: ../inc/taxonomies.php:133
1273
  msgid "Attach to Post Type"
1274
  msgstr "Yazı Türüne ekle"
1275
 
1276
- #: ../inc/taxonomies.php:172
1277
  #, fuzzy
1278
- msgid "Edit Taxonomy"
1279
- msgstr "Dahili Sınıflandırmalar"
1280
 
1281
- #: ../inc/taxonomies.php:173
1282
  #, fuzzy
1283
  msgid "Delete Taxonomy"
1284
  msgstr "Özel Sınıflandırma Oluştur"
1285
 
1286
- #: ../inc/taxonomies.php:175
1287
  #, fuzzy
1288
  msgid "Add Taxonomy"
1289
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1290
 
1291
- #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1292
- #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1293
- #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1294
- #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1295
- #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1296
- #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1297
- #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1298
- #: ../inc/taxonomies.php:321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1299
  #, fuzzy
1300
  msgid ""
1301
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
@@ -1303,226 +1415,200 @@ msgstr ""
1303
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1304
  "menüsünde kullanılan."
1305
 
1306
- #: ../inc/taxonomies.php:202
1307
  msgid "(e.g. All Actors)"
1308
  msgstr "(örneğin: Bütün Aktörler)"
1309
 
1310
- #: ../inc/taxonomies.php:211
1311
  msgid "(e.g. Edit Actor)"
1312
  msgstr "(örneğin: Aktör Düzenle)"
1313
 
1314
- #: ../inc/taxonomies.php:220
1315
  #, fuzzy
1316
  msgid "(e.g. View Actor)"
1317
  msgstr "(örneğin: Aktör)"
1318
 
1319
- #: ../inc/taxonomies.php:229
1320
  #, fuzzy
1321
  msgid "(e.g. Update Actor Name)"
1322
  msgstr "(örneğin: Aktörü Güncelle)"
1323
 
1324
- #: ../inc/taxonomies.php:230
1325
  #, fuzzy
1326
  msgid "Update Item Name"
1327
  msgstr "Eleman Güncelle"
1328
 
1329
- #: ../inc/taxonomies.php:238
1330
  msgid "(e.g. Add New Actor)"
1331
  msgstr "(örneğin: Yeni Aktör Ekle)"
1332
 
1333
- #: ../inc/taxonomies.php:247
1334
  msgid "(e.g. New Actor Name)"
1335
  msgstr "(örneğin: Yeni Aktör Adı)"
1336
 
1337
- #: ../inc/taxonomies.php:248
1338
  msgid "New Item Name"
1339
  msgstr "Yeni Eleman Adı"
1340
 
1341
- #: ../inc/taxonomies.php:256
1342
  msgid "(e.g. Parent Actor)"
1343
  msgstr "(örneğin: Temel Aktör)"
1344
 
1345
- #: ../inc/taxonomies.php:257
1346
  msgid "Parent Item"
1347
  msgstr "Temel Eleman"
1348
 
1349
- #: ../inc/taxonomies.php:265
1350
  msgid "(e.g. Parent Actor:)"
1351
  msgstr "(örneğin: Temel Aktör:)"
1352
 
1353
- #: ../inc/taxonomies.php:266
1354
  msgid "Parent Item Colon"
1355
  msgstr "Temel Eleman Kolon"
1356
 
1357
- #: ../inc/taxonomies.php:274
1358
  msgid "(e.g. Search Actors)"
1359
  msgstr "(örneğin: Aktörleri Ara)"
1360
 
1361
- #: ../inc/taxonomies.php:275
1362
  msgid "Search Items"
1363
  msgstr "Eleman Ara"
1364
 
1365
- #: ../inc/taxonomies.php:283
1366
  msgid "(e.g. Popular Actors)"
1367
  msgstr "(örneğin: Popüler Aktörler)"
1368
 
1369
- #: ../inc/taxonomies.php:284
1370
  msgid "Popular Items"
1371
  msgstr "Popüler Elemanlar"
1372
 
1373
- #: ../inc/taxonomies.php:292
1374
  msgid "(e.g. Separate actors with commas)"
1375
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1376
 
1377
- #: ../inc/taxonomies.php:293
1378
  msgid "Separate Items with Commas"
1379
  msgstr "Elemanları virgül ile ayır"
1380
 
1381
- #: ../inc/taxonomies.php:301
1382
  msgid "(e.g. Add or remove actors)"
1383
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1384
 
1385
- #: ../inc/taxonomies.php:302
1386
  msgid "Add or Remove Items"
1387
  msgstr "Elemanları Ekle veya Çıkar "
1388
 
1389
- #: ../inc/taxonomies.php:310
1390
  msgid "(e.g. Choose from the most used actors)"
1391
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1392
 
1393
- #: ../inc/taxonomies.php:311
1394
  msgid "Choose From Most Used"
1395
  msgstr "Çok Kullanılandan Seç"
1396
 
1397
- #: ../inc/taxonomies.php:319
1398
  #, fuzzy
1399
  msgid "(e.g. No actors found)"
1400
  msgstr "(örneğin: Filmler bulunamadı)"
1401
 
1402
- #: ../inc/taxonomies.php:320
1403
  #, fuzzy
1404
  msgid "Not found"
1405
  msgstr "Bulunamadı"
1406
 
1407
- #: ../inc/taxonomies.php:343
1408
  msgid "Whether the taxonomy can have parent-child relationships"
1409
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1410
 
1411
- #: ../inc/taxonomies.php:360
1412
- msgid "Whether to generate a default UI for managing this custom taxonomy"
 
1413
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1414
 
1415
- #: ../inc/taxonomies.php:384
 
 
 
 
 
1416
  msgid "(default: none). Query Var needs to be true to use."
1417
  msgstr ""
1418
 
1419
- #: ../inc/taxonomies.php:385
1420
  msgid "Custom Query Var String"
1421
  msgstr ""
1422
 
1423
- #: ../inc/taxonomies.php:386
1424
- #, fuzzy
1425
- msgid "Custom Query Var Slug"
1426
- msgstr "Özel Rewrite Slug"
1427
 
1428
- #: ../inc/taxonomies.php:402
1429
- msgid "Triggers the handling of rewrites for this taxonomy"
 
1430
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1431
 
1432
- #: ../inc/taxonomies.php:410
1433
  msgid "(default: taxonomy name)"
1434
  msgstr "(varsayılan: sınıflandırma adı)"
1435
 
1436
- #: ../inc/taxonomies.php:412
1437
- msgid "Custom Taxonomy Rewrite Slug"
 
1438
  msgstr "Özel Sınıflandırma Rewrite Slug"
1439
 
1440
- #: ../inc/taxonomies.php:426
1441
  #, fuzzy
1442
  msgid "Rewrite With Front"
1443
  msgstr "Cephesinden"
1444
 
1445
- #: ../inc/taxonomies.php:427
1446
  #, fuzzy
1447
  msgid "(default: true)"
1448
  msgstr "(varsayılan: Doğru)"
1449
 
1450
- #: ../inc/taxonomies.php:443
1451
  #, fuzzy
1452
  msgid "Rewrite Hierarchical"
1453
  msgstr "Hiyerarşik"
1454
 
1455
- #: ../inc/taxonomies.php:444
1456
  #, fuzzy
1457
  msgid "(default: false)"
1458
  msgstr "(varsayılan:Yanlış)"
1459
 
1460
- #: ../inc/taxonomies.php:445
1461
  #, fuzzy
1462
  msgid "Should the permastruct allow hierarchical urls."
1463
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1464
 
1465
- #: ../inc/taxonomies.php:460
1466
  msgid "Show Admin Column"
1467
  msgstr "Yönetici Sütunu Göster"
1468
 
1469
- #: ../inc/taxonomies.php:462
1470
  msgid ""
1471
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1472
  "types."
1473
  msgstr ""
1474
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1475
 
1476
- #: ../inc/taxonomies.php:473
1477
- #, fuzzy, php-format
1478
- msgid ""
1479
- "Taxonomy names should have %smax 32 characters%s, and only contain "
1480
- "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1481
- "letters that do not have accents."
1482
- msgstr ""
1483
- "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1484
- "boşluk yerine alt çizgi olmalıdır."
1485
-
1486
- #: ../inc/taxonomies.php:474
1487
- #, fuzzy, php-format
1488
- msgid ""
1489
- "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1490
- "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1491
- "settings will use default values. Labels, if left blank, will be "
1492
- "automatically created based on the taxonomy name. Hover over the question "
1493
- "marks for more details."
1494
- msgstr ""
1495
- "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1496
- "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1497
-
1498
- #: ../inc/taxonomies.php:475
1499
- #, fuzzy, php-format
1500
- msgid ""
1501
- "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1502
- "taxonomies. You can recreate your taxonomies and the terms will return. "
1503
- "Changing the name, after adding terms to the taxonomy, will not update the "
1504
- "terms in the database."
1505
- msgstr ""
1506
- "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1507
- "içerikleri kalacaktır."
1508
-
1509
- #: ../inc/taxonomies.php:564
1510
  msgid "Please provide a taxonomy to delete"
1511
  msgstr ""
1512
 
1513
- #: ../inc/taxonomies.php:615
1514
  #, fuzzy
1515
  msgid "Please provide a taxonomy name"
1516
  msgstr "(varsayılan: sınıflandırma adı)"
1517
 
1518
- #: ../inc/taxonomies.php:631
1519
  #, fuzzy
1520
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1521
  msgstr ""
1522
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1523
  "kullanmayınız."
1524
 
1525
- #: ../inc/taxonomies.php:637
1526
  #, php-format
1527
  msgid "Please choose a different taxonomy name. %s is already used."
1528
  msgstr ""
@@ -1535,6 +1621,24 @@ msgid "Whether posts of this type should be shown in the admin UI"
1535
  msgstr ""
1536
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
1537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1538
  #, fuzzy
1539
  #~ msgid "URL or Dashicon value for image to be used as menu icon."
1540
  #~ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
@@ -1642,15 +1746,9 @@ msgstr ""
1642
  #~ "Bu<strong> BETA</strong> özelliğidir. Lütfen <a href=\"http://"
1643
  #~ "webdevstudios.com/support/forum/custom-post-type-ui/\"> hata raporu </a>"
1644
 
1645
- #~ msgid "Save Custom Post Type"
1646
- #~ msgstr "Özel Yazı Türü Kaydet"
1647
-
1648
  #~ msgid "Create Custom Post Type"
1649
  #~ msgstr "Özel Yazı Türü Oluştur"
1650
 
1651
- #~ msgid "Save Custom Taxonomy"
1652
- #~ msgstr "Özel Sınıflandırma Kaydet"
1653
-
1654
  #~ msgid ""
1655
  #~ "Custom post type created successfully. You may need to refresh to view "
1656
  #~ "the new post type in the admin menu."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-06-12 21:16-0600\n"
5
+ "PO-Revision-Date: 2015-06-12 21:16-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.1\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../custom-post-type-ui.php:60
20
  msgid "Custom Post Types"
21
  msgstr "Özel Yazı Türleri"
22
 
23
+ #: ../custom-post-type-ui.php:60
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
+ #: ../custom-post-type-ui.php:61
28
+ #, fuzzy
29
+ msgid "Add/Edit Post Types"
30
+ msgstr "Ek Yazı Türleri"
31
+
32
+ #: ../custom-post-type-ui.php:62
33
+ #, fuzzy
34
+ msgid "Add/Edit Taxonomies"
35
+ msgstr "Dahili Sınıflandırmalar"
36
+
37
+ #: ../custom-post-type-ui.php:63
38
+ msgid "Registered Types and Taxes"
39
+ msgstr ""
40
+
41
+ #: ../custom-post-type-ui.php:63
42
+ msgid "Registered Types/Taxes"
43
+ msgstr ""
44
+
45
+ #: ../custom-post-type-ui.php:64 ../custom-post-type-ui.php:491
46
+ msgid "Import/Export"
47
+ msgstr ""
48
+
49
+ #: ../custom-post-type-ui.php:65
50
+ #, fuzzy
51
+ msgid "Help/Support"
52
+ msgstr "Eklentiye Destek, Yardım!"
53
+
54
+ #: ../custom-post-type-ui.php:69
55
+ #, fuzzy
56
+ msgid "About CPT UI"
57
+ msgstr "CPT KA"
58
+
59
+ #: ../custom-post-type-ui.php:339 ../custom-post-type-ui.php:418
60
  msgid "Custom Post Type UI"
61
  msgstr "Özel Yazı Türleri KA"
62
 
63
+ #: ../custom-post-type-ui.php:342
64
  msgid ""
65
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
66
  "with our plugin provides efficiency and speed in creating post types and "
67
  "taxonomies, to better organize your content, without having to touch code."
68
  msgstr ""
69
 
70
+ #: ../custom-post-type-ui.php:348
71
+ #, fuzzy
72
+ msgid "Post type migration"
73
+ msgstr "Özel Yazı Türleri"
74
+
75
+ #: ../custom-post-type-ui.php:349
76
  msgid ""
77
+ "In the past, if you changed your post type slug, you would lose immediate "
78
+ "access to the posts in the post type and need to recover another way. We "
79
+ "have now added support for migrating all posts within the old post type to "
80
+ "the new post type you renamed it to."
81
  msgstr ""
82
 
83
+ #: ../custom-post-type-ui.php:352
84
+ msgid "UI Refinement"
85
+ msgstr ""
 
86
 
87
+ #: ../custom-post-type-ui.php:353
88
+ msgid ""
89
+ "After receiving feedback regarding the 1.0.x changes, we have further "
90
+ "simplified the UI to reduce the amount of clicking necessary to manage your "
91
+ "post types and taxonomies."
92
+ msgstr ""
93
 
94
+ #: ../custom-post-type-ui.php:356
95
  #, fuzzy
96
+ msgid "Registered Post Type and Taxonomy Listings"
97
+ msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
98
 
99
+ #: ../custom-post-type-ui.php:357
100
+ msgid ""
101
+ "We are bringing back the listing of all CPTUI-registered post types and "
102
+ "taxonomies for easier quick view of what you have going."
103
  msgstr ""
104
 
105
+ #: ../custom-post-type-ui.php:362
106
  msgid "Help Support This Plugin!"
107
  msgstr "Eklentiye Destek, Yardım!"
108
 
109
+ #: ../custom-post-type-ui.php:366
110
  #, fuzzy
111
  msgid "Professional WordPress<br />Third Edition"
112
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
113
 
114
+ #: ../custom-post-type-ui.php:371
115
  #, fuzzy
116
  msgid ""
117
  "The leading book on WordPress design and development! Brand new third "
120
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
121
  "sürüm !"
122
 
123
+ #: ../custom-post-type-ui.php:374
124
  msgid "Professional WordPress<br />Plugin Development"
125
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
126
 
127
+ #: ../custom-post-type-ui.php:379
128
  msgid "Highest rated WordPress development book on Amazon!"
129
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
130
 
131
+ #: ../custom-post-type-ui.php:382
132
  msgid "PayPal Donation"
133
  msgstr "PayPal Bağış"
134
 
135
+ #: ../custom-post-type-ui.php:386
136
+ msgid "PayPal - The safer, easier way to pay online!"
137
+ msgstr ""
138
+
139
+ #: ../custom-post-type-ui.php:389
140
  #, fuzzy
141
  msgid "Please donate to the development of Custom Post Type UI:"
142
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
143
 
144
+ #: ../custom-post-type-ui.php:415
 
 
 
 
145
  #, php-format
146
+ msgid "%s version %s by %s"
147
  msgstr ""
148
 
149
+ #: ../custom-post-type-ui.php:426
150
  msgid "Please Report Bugs"
151
  msgstr "Lütfen Hataları Bildirin"
152
 
153
+ #: ../custom-post-type-ui.php:429
154
  msgid "Follow on Twitter:"
155
  msgstr "Twitterden takip et:"
156
 
157
+ #: ../custom-post-type-ui.php:493
 
 
 
 
158
  msgid "Manage Taxonomies"
159
  msgstr "Sınıflandırmaları Yönet"
160
 
161
+ #: ../custom-post-type-ui.php:497
162
  msgid "Manage Post Types"
163
  msgstr "Yazı Türlerini Yönet"
164
 
165
+ #: ../custom-post-type-ui.php:523
166
  #, fuzzy
167
  msgid "Add New Post Type"
168
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
169
 
170
+ #: ../custom-post-type-ui.php:526
171
  #, fuzzy
172
  msgid "Edit Post Types"
173
  msgstr "Özel Yazı Türleri"
174
 
175
+ #: ../custom-post-type-ui.php:530
176
  #, fuzzy
177
  msgid "Add New Taxonomy"
178
  msgstr "Sınıflandırma Adı"
179
 
180
+ #: ../custom-post-type-ui.php:533
181
  #, fuzzy
182
  msgid "Edit Taxonomies"
183
  msgstr "Dahili Sınıflandırmalar"
184
 
185
+ #: ../custom-post-type-ui.php:537 ../inc/listings.php:16
186
+ #: ../inc/listings.php:149 ../inc/listings.php:224
187
  #, fuzzy
188
  msgid "Post Types"
189
  msgstr "Özel Yazı Türleri"
190
 
191
+ #: ../custom-post-type-ui.php:538 ../inc/import_export.php:380
192
+ #: ../inc/listings.php:34 ../inc/listings.php:122 ../inc/listings.php:132
193
  #, fuzzy
194
  msgid "Taxonomies"
195
  msgstr "Sınıflandırmaları Yönet"
196
 
197
+ #: ../custom-post-type-ui.php:539
198
  msgid "Get Code"
199
  msgstr "Kodu Alın"
200
 
201
+ #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
202
+ #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
203
+ #: ../inc/post-types.php:373 ../inc/taxonomies.php:338
204
  msgid "Settings"
205
  msgstr ""
206
 
207
+ #: ../custom-post-type-ui.php:622
208
  msgid "Help"
209
  msgstr ""
210
 
211
+ #: ../custom-post-type-ui.php:650
212
  #, php-format
213
  msgid "%s has been successfully added"
214
  msgstr ""
215
 
216
+ #: ../custom-post-type-ui.php:652
217
  #, php-format
218
  msgid "%s has failed to be added"
219
  msgstr ""
220
 
221
+ #: ../custom-post-type-ui.php:656
222
  #, php-format
223
  msgid "%s has been successfully updated"
224
  msgstr ""
225
 
226
+ #: ../custom-post-type-ui.php:658
227
  #, php-format
228
  msgid "%s has failed to be updated"
229
  msgstr ""
230
 
231
+ #: ../custom-post-type-ui.php:662
232
  #, php-format
233
  msgid "%s has been successfully deleted"
234
  msgstr ""
235
 
236
+ #: ../custom-post-type-ui.php:664
237
  #, php-format
238
  msgid "%s has failed to be deleted"
239
  msgstr ""
240
 
241
+ #: ../custom-post-type-ui.php:668
242
  #, php-format
243
  msgid "%s has been successfully imported"
244
  msgstr ""
245
 
246
+ #: ../custom-post-type-ui.php:670
247
  #, php-format
248
  msgid "%s has failed to be imported"
249
  msgstr ""
250
 
251
+ #: ../custom-post-type-ui.php:753 ../custom-post-type-ui.php:770
252
  #, fuzzy, php-format
253
  msgid "Add new %s"
254
  msgstr "Yeni Ekle"
255
 
256
+ #: ../custom-post-type-ui.php:754 ../custom-post-type-ui.php:768
257
  #, fuzzy, php-format
258
  msgid "Edit %s"
259
  msgstr "Düzenle"
260
 
261
+ #: ../custom-post-type-ui.php:755
262
  #, php-format
263
  msgid "New %s"
264
  msgstr ""
265
 
266
+ #: ../custom-post-type-ui.php:756
267
  #, fuzzy, php-format
268
  msgid "View %s"
269
  msgstr "Göster"
270
 
271
+ #: ../custom-post-type-ui.php:757 ../custom-post-type-ui.php:765
272
  #, fuzzy, php-format
273
  msgid "All %s"
274
  msgstr "Bütün Elemanlar"
275
 
276
+ #: ../custom-post-type-ui.php:758 ../custom-post-type-ui.php:763
277
  #, fuzzy, php-format
278
  msgid "Search %s"
279
  msgstr "Eleman Ara"
280
 
281
+ #: ../custom-post-type-ui.php:759
282
  #, fuzzy, php-format
283
  msgid "No %s found."
284
  msgstr "Bulunamadı"
285
 
286
+ #: ../custom-post-type-ui.php:760
287
  #, fuzzy, php-format
288
  msgid "No %s found in trash."
289
  msgstr "Çöpte Bulunamadı"
290
 
291
+ #: ../custom-post-type-ui.php:764
292
  #, fuzzy, php-format
293
  msgid "Popular %s"
294
  msgstr "Popüler Elemanlar"
295
 
296
+ #: ../custom-post-type-ui.php:766
297
  #, fuzzy, php-format
298
  msgid "Parent %s"
299
  msgstr "Temel"
300
 
301
+ #: ../custom-post-type-ui.php:767
302
  #, fuzzy, php-format
303
  msgid "Parent %s:"
304
  msgstr "Temel"
305
 
306
+ #: ../custom-post-type-ui.php:769
307
  #, php-format
308
  msgid "Update %s"
309
  msgstr ""
310
 
311
+ #: ../custom-post-type-ui.php:771
312
  #, fuzzy, php-format
313
  msgid "New %s name"
314
  msgstr "Yeni Eleman Adı"
315
 
316
+ #: ../custom-post-type-ui.php:772
317
  #, fuzzy, php-format
318
  msgid "Separate %s with commas"
319
  msgstr "Elemanları virgül ile ayır"
320
 
321
+ #: ../custom-post-type-ui.php:773
322
  #, fuzzy, php-format
323
  msgid "Add or remove %s"
324
  msgstr "Elemanları Ekle veya Çıkar "
325
 
326
+ #: ../custom-post-type-ui.php:774
327
  #, fuzzy, php-format
328
  msgid "Choose from the most used %s"
329
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
330
 
331
+ #: ../inc/import_export.php:42
332
  msgid ""
333
  "If you are wanting to migrate registered post types or taxonomies from this "
334
  "site to another, that will also use Custom Post Type UI, use the import and "
336
  "the information in the \"Get Code\" tab."
337
  msgstr ""
338
 
339
+ #: ../inc/import_export.php:45
340
  msgid "NOTE"
341
  msgstr ""
342
 
343
+ #: ../inc/import_export.php:46
344
  msgid "This will not export the associated posts, just the settings."
345
  msgstr ""
346
 
347
+ #: ../inc/import_export.php:53
348
  #, fuzzy
349
  msgid "Import Post Types"
350
  msgstr "Özel Yazı Türleri"
351
 
352
+ #: ../inc/import_export.php:55 ../inc/import_export.php:80
353
  msgid "Paste content here."
354
  msgstr ""
355
 
356
+ #: ../inc/import_export.php:56 ../inc/import_export.php:81
357
  msgid "Note:"
358
  msgstr ""
359
 
360
+ #: ../inc/import_export.php:56 ../inc/import_export.php:81
361
  msgid "Importing will overwrite previous registered settings."
362
  msgstr ""
363
 
364
+ #: ../inc/import_export.php:57
365
  msgid ""
366
  "To import post types from a different WordPress site, paste the exported "
367
  "content from that site and click the \"Import\" button."
368
  msgstr ""
369
 
370
+ #: ../inc/import_export.php:58 ../inc/import_export.php:83
371
  msgid "Import"
372
  msgstr ""
373
 
374
+ #: ../inc/import_export.php:62
375
  #, fuzzy
376
  msgid "Export Post Types"
377
  msgstr "Özel Yazı Türleri"
378
 
379
+ #: ../inc/import_export.php:68
380
  msgid "No post types registered yet."
381
  msgstr ""
382
 
383
+ #: ../inc/import_export.php:71 ../inc/import_export.php:96
384
  msgid ""
385
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
386
  "(Mac)."
387
  msgstr ""
388
 
389
+ #: ../inc/import_export.php:72
390
  msgid ""
391
  "Use the content above to import current post types into a different "
392
  "WordPress site. You can also use this to simply back up your post type "
393
  "settings."
394
  msgstr ""
395
 
396
+ #: ../inc/import_export.php:78
397
  #, fuzzy
398
  msgid "Import Taxonomies"
399
  msgstr "Sınıflandırmaları Yönet"
400
 
401
+ #: ../inc/import_export.php:82
402
  msgid ""
403
  "To import taxonomies from a different WordPress site, paste the exported "
404
  "content from that site and click the \"Import\" button."
405
  msgstr ""
406
 
407
+ #: ../inc/import_export.php:87
408
  #, fuzzy
409
  msgid "Export Taxonomies"
410
  msgstr "Sınıflandırmaları Yönet"
411
 
412
+ #: ../inc/import_export.php:93
413
  msgid "No taxonomies registered yet."
414
  msgstr ""
415
 
416
+ #: ../inc/import_export.php:97
417
  msgid ""
418
  "Use the content above to import current taxonomies into a different "
419
  "WordPress site. You can also use this to simply back up your taxonomy "
420
  "settings."
421
  msgstr ""
422
 
423
+ #: ../inc/import_export.php:105
424
  #, fuzzy
425
  msgid "Get Post Type and Taxonomy Code"
426
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
427
 
428
+ #: ../inc/import_export.php:107
429
  #, fuzzy
430
  msgid "All CPT UI Post Types"
431
  msgstr "Özel Yazı Türleri"
432
 
433
+ #: ../inc/import_export.php:108 ../inc/import_export.php:112
434
  msgid "Copy/paste the code below into your functions.php file."
435
  msgstr ""
436
 
437
+ #: ../inc/import_export.php:111
438
  #, fuzzy
439
  msgid "All CPT UI Taxonomies"
440
  msgstr "Dahili Sınıflandırmalar"
441
 
442
+ #: ../inc/import_export.php:142
443
  msgid "No taxonomies to display at this time"
444
  msgstr ""
445
 
446
+ #: ../inc/import_export.php:241
447
  msgid "No post types to display at this time"
448
  msgstr ""
449
 
450
+ #: ../inc/import_export.php:367
451
  #, fuzzy
452
  msgid "Post types"
453
  msgstr "Özel Yazı Türleri"
454
 
455
+ #: ../inc/listings.php:10
456
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
457
  msgstr ""
458
 
459
+ #: ../inc/listings.php:18 ../inc/listings.php:134
460
+ #, php-format
461
+ msgid "Total count: %d"
462
  msgstr ""
463
 
464
+ #: ../inc/listings.php:31 ../inc/listings.php:119
465
  #, fuzzy
466
  msgid "Post Type"
467
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
468
 
469
+ #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:644
470
  msgid "Supports"
471
  msgstr "Destekler"
472
 
473
+ #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
474
+ #: ../inc/listings.php:225 ../inc/post-types.php:211 ../inc/taxonomies.php:196
475
  #, fuzzy
476
  msgid "Labels"
477
  msgstr "Etiket"
478
 
479
+ #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:267
480
+ msgid "Edit"
481
+ msgstr "Düzenle"
482
+
483
+ #: ../inc/listings.php:75
484
+ msgid "View frontend archive"
485
+ msgstr ""
486
+
487
+ #: ../inc/listings.php:108 ../inc/listings.php:211
488
  #, fuzzy
489
  msgid "No custom labels to display"
490
  msgstr "Özel Yazı Türleri"
491
 
492
+ #: ../inc/listings.php:147 ../inc/listings.php:222
493
  #, fuzzy
494
  msgid "Taxonomy"
495
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
496
 
497
+ #: ../inc/post-types.php:30 ../inc/taxonomies.php:25
498
  msgid "Are you sure you want to delete this?"
499
  msgstr ""
500
 
501
+ #: ../inc/post-types.php:86
502
+ msgid ""
503
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
504
+ "registers a new post type entry for your install."
505
+ msgstr ""
506
+
507
+ #: ../inc/post-types.php:87
508
  msgid ""
509
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
510
+ "slugs and update post types for existing posts."
511
  msgstr ""
512
 
513
+ #: ../inc/post-types.php:88 ../inc/taxonomies.php:84
514
+ msgid "Select: "
515
  msgstr ""
516
 
517
+ #: ../inc/post-types.php:120
518
  #, fuzzy
519
  msgid "Post Type Slug"
520
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
521
 
522
+ #: ../inc/post-types.php:121
523
  msgid "(e.g. movie)"
524
  msgstr "(örnek: film)"
525
 
526
+ #: ../inc/post-types.php:122
527
  #, fuzzy
528
  msgid ""
529
  "The post type name. Used to retrieve custom post type content. Should be "
532
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
533
  "kullanılacaktır."
534
 
535
+ #: ../inc/post-types.php:133 ../inc/taxonomies.php:124
536
  #, fuzzy
537
  msgid "Plural Label"
538
  msgstr "Tekil Etiket"
539
 
540
+ #: ../inc/post-types.php:134
541
  msgid "(e.g. Movies)"
542
  msgstr "(örneğin: Filmler)"
543
 
544
+ #: ../inc/post-types.php:135 ../inc/post-types.php:232
545
+ #: ../inc/post-types.php:244 ../inc/post-types.php:256
546
+ #: ../inc/post-types.php:268 ../inc/post-types.php:280
547
+ #: ../inc/post-types.php:292 ../inc/post-types.php:304
548
+ #: ../inc/post-types.php:316 ../inc/post-types.php:328
549
+ #: ../inc/post-types.php:340 ../inc/post-types.php:352
550
+ #: ../inc/post-types.php:364
551
  #, fuzzy
552
  msgid "Post type label. Used in the admin menu for displaying post types."
553
  msgstr ""
554
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
555
  "kullanılacak."
556
 
557
+ #: ../inc/post-types.php:145 ../inc/taxonomies.php:133
558
  msgid "Singular Label"
559
  msgstr "Tekil Etiket"
560
 
561
+ #: ../inc/post-types.php:146
562
  msgid "(e.g. Movie)"
563
  msgstr "(örneğin: Film)"
564
 
565
+ #: ../inc/post-types.php:147
566
  #, fuzzy
567
  msgid ""
568
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
571
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
572
  "kullanacak."
573
 
574
+ #: ../inc/post-types.php:163
575
  msgid "Description"
576
  msgstr "Açıklama"
577
 
578
+ #: ../inc/post-types.php:164
579
  #, fuzzy
580
  msgid ""
581
  "Custom Post Type Description. Describe what your custom post type is used "
583
  msgstr ""
584
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
585
 
586
+ #: ../inc/post-types.php:176
587
+ msgid "Migrate posts to newly renamed post type?"
588
+ msgstr ""
589
+
590
+ #: ../inc/post-types.php:177
591
+ msgid "Check this to migrate posts if and when renaming your post type."
592
+ msgstr ""
593
+
594
+ #: ../inc/post-types.php:186
595
  #, fuzzy
596
+ msgid "Save Post Type"
597
+ msgstr "Özel Yazı Türü Kaydet"
598
 
599
+ #: ../inc/post-types.php:187
600
  #, fuzzy
601
  msgid "Delete Post Type"
602
  msgstr "Ek Yazı Türleri"
603
 
604
+ #: ../inc/post-types.php:189
605
  #, fuzzy
606
  msgid "Add Post Type"
607
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
608
 
609
+ #: ../inc/post-types.php:200 ../inc/taxonomies.php:185
610
+ msgid "Starter Notes"
611
+ msgstr ""
612
+
613
+ #: ../inc/post-types.php:203
614
+ #, fuzzy, php-format
615
+ msgid ""
616
+ "Post Type names should have %smax 20 characters%s, and only contain "
617
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
618
+ "letters that do not have accents. Reserved names: post, page, attachment, "
619
+ "revision, nav_menu_item."
620
+ msgstr ""
621
+ "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
622
+ "post, sayfa, ek, revizyon, nav_menu_item."
623
+
624
+ #: ../inc/post-types.php:204
625
+ #, fuzzy, php-format
626
+ msgid ""
627
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
628
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
629
+ "values. Labels, if left blank, will be automatically created based on the "
630
+ "post type name. Hover over the question mark for more details."
631
  msgstr ""
632
+ "Sadece Adı ve Etiket alanlarını doldurun kullanıyorsanız diğer kutuları da "
633
+ "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
634
+ "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
635
 
636
+ #: ../inc/post-types.php:205
637
+ #, fuzzy, php-format
638
+ msgid ""
639
+ "Deleting custom post types will %sNOT%s delete any content into the database "
640
+ "or added to those post types. You can easily recreate your post types and "
641
+ "the content will still exist."
642
  msgstr ""
643
+ "Özel yazı türlerini silmek veritabanında herhangi bir içeriği silmek veya bu "
644
+ "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
645
+ "veritabanında olacaktır."
646
 
647
+ #: ../inc/post-types.php:219 ../inc/taxonomies.php:206
648
  msgid "Menu Name"
649
  msgstr "Menü Adı"
650
 
651
+ #: ../inc/post-types.php:220
652
  msgid "Custom menu name for your custom post type."
653
  msgstr "Özel yazı türü için özel menü adı."
654
 
655
+ #: ../inc/post-types.php:224
656
  msgid "(e.g. My Movies)"
657
  msgstr "(örneğin: Benim Filmlerim)"
658
 
659
+ #: ../inc/post-types.php:231 ../inc/taxonomies.php:215
660
  msgid "All Items"
661
  msgstr "Bütün Elemanlar"
662
 
663
+ #: ../inc/post-types.php:236
664
  #, fuzzy
665
  msgid "(e.g. All Movies)"
666
  msgstr "(örneğin: Filmler)"
667
 
668
+ #: ../inc/post-types.php:243
669
  msgid "Add New"
670
  msgstr "Yeni Ekle"
671
 
672
+ #: ../inc/post-types.php:248
673
  msgid "(e.g. Add New)"
674
  msgstr "(örneğin: Yeni Ekle)"
675
 
676
+ #: ../inc/post-types.php:255 ../inc/taxonomies.php:251
677
  msgid "Add New Item"
678
  msgstr "Yeni Eleman Ekle"
679
 
680
+ #: ../inc/post-types.php:260
681
  msgid "(e.g. Add New Movie)"
682
  msgstr "(örneğin: Yeni Film ekle)"
683
 
684
+ #: ../inc/post-types.php:272
 
 
 
 
685
  msgid "(e.g. Edit)"
686
  msgstr "(örneğin: Düzenle)"
687
 
688
+ #: ../inc/post-types.php:279 ../inc/taxonomies.php:224
689
  msgid "Edit Item"
690
  msgstr "Eleman Düzenle"
691
 
692
+ #: ../inc/post-types.php:284
693
  msgid "(e.g. Edit Movie)"
694
  msgstr "(örneğin: Film Düzenle)"
695
 
696
+ #: ../inc/post-types.php:291
697
  msgid "New Item"
698
  msgstr "Yeni Eleman"
699
 
700
+ #: ../inc/post-types.php:296
701
  msgid "(e.g. New Movie)"
702
  msgstr "(örneğin: Yeni Film)"
703
 
704
+ #: ../inc/post-types.php:303
705
  msgid "View"
706
  msgstr "Göster"
707
 
708
+ #: ../inc/post-types.php:308
709
  #, fuzzy
710
  msgid "(e.g. View)"
711
  msgstr "(örneğin: Film Göster)"
712
 
713
+ #: ../inc/post-types.php:315 ../inc/taxonomies.php:233
714
  msgid "View Item"
715
  msgstr "Elemanı Göster"
716
 
717
+ #: ../inc/post-types.php:320
718
  msgid "(e.g. View Movie)"
719
  msgstr "(örneğin: Film Göster)"
720
 
721
+ #: ../inc/post-types.php:327
722
  #, fuzzy
723
  msgid "Search Item"
724
  msgstr "Eleman Düzenle"
725
 
726
+ #: ../inc/post-types.php:332
727
  #, fuzzy
728
  msgid "(e.g. Search Movie)"
729
  msgstr "(örneğin: Filmleri Ara)"
730
 
731
+ #: ../inc/post-types.php:339
732
  msgid "Not Found"
733
  msgstr "Bulunamadı"
734
 
735
+ #: ../inc/post-types.php:344
736
  #, fuzzy
737
  msgid "(e.g. No Movies found)"
738
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
739
 
740
+ #: ../inc/post-types.php:351
741
  msgid "Not Found in Trash"
742
  msgstr "Çöpte Bulunamadı"
743
 
744
+ #: ../inc/post-types.php:356
745
  msgid "(e.g. No Movies found in Trash)"
746
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
747
 
748
+ #: ../inc/post-types.php:363
749
  msgid "Parent"
750
  msgstr "Temel"
751
 
752
+ #: ../inc/post-types.php:368
753
  msgid "(e.g. Parent Movie)"
754
  msgstr "(örneğin: Temel Film)"
755
 
756
+ #: ../inc/post-types.php:382 ../inc/post-types.php:402
757
+ #: ../inc/post-types.php:428 ../inc/post-types.php:460
758
+ #: ../inc/post-types.php:491 ../inc/post-types.php:511
759
+ #: ../inc/post-types.php:543 ../inc/post-types.php:563
760
+ #: ../inc/post-types.php:606 ../inc/taxonomies.php:344
761
+ #: ../inc/taxonomies.php:361 ../inc/taxonomies.php:378
762
+ #: ../inc/taxonomies.php:404 ../inc/taxonomies.php:430
763
+ #: ../inc/taxonomies.php:447 ../inc/taxonomies.php:464
764
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
765
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
766
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
768
  msgid "False"
769
  msgstr "False"
770
 
771
+ #: ../inc/post-types.php:383 ../inc/post-types.php:403
772
+ #: ../inc/post-types.php:429 ../inc/post-types.php:461
773
+ #: ../inc/post-types.php:492 ../inc/post-types.php:512
774
+ #: ../inc/post-types.php:544 ../inc/post-types.php:564
775
+ #: ../inc/post-types.php:607 ../inc/taxonomies.php:345
776
+ #: ../inc/taxonomies.php:362 ../inc/taxonomies.php:379
777
+ #: ../inc/taxonomies.php:405 ../inc/taxonomies.php:431
778
+ #: ../inc/taxonomies.php:448 ../inc/taxonomies.php:465
779
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
780
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
781
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
783
  msgid "True"
784
  msgstr "True"
785
 
786
+ #: ../inc/post-types.php:391 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
787
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
788
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
789
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
790
  msgid "Public"
791
  msgstr "Genel"
792
 
793
+ #: ../inc/post-types.php:392 ../inc/post-types.php:412
794
+ #: ../inc/post-types.php:521 ../inc/post-types.php:553
795
+ #: ../inc/post-types.php:573 ../inc/post-types.php:615
796
+ #: ../inc/taxonomies.php:371 ../inc/taxonomies.php:388
797
+ #: ../inc/taxonomies.php:414 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
798
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
799
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
800
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
801
  msgid "(default: True)"
802
  msgstr "(varsayılan: Doğru)"
803
 
804
+ #: ../inc/post-types.php:393
805
  #, fuzzy
806
+ msgid ""
807
+ "Whether posts of this type should be shown in the admin UI and is publicly "
808
+ "queryable."
809
  msgstr ""
810
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
811
 
812
+ #: ../inc/post-types.php:411 ../inc/taxonomies.php:370
813
  msgid "Show UI"
814
  msgstr "KA Göster"
815
 
816
+ #: ../inc/post-types.php:413
817
  #, fuzzy
818
  msgid "Whether to generate a default UI for managing this post type."
819
  msgstr ""
820
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
821
 
822
+ #: ../inc/post-types.php:421
823
  msgid "Has Archive"
824
  msgstr "Arşivlenebilir mi?"
825
 
826
+ #: ../inc/post-types.php:422
827
  #, fuzzy
828
+ msgid "Whether the post type will have a post type archive URL."
829
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
830
 
831
+ #: ../inc/post-types.php:423
832
  msgid "If left blank, the archive slug will default to the post type slug."
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:437 ../inc/post-types.php:470
836
+ #: ../inc/post-types.php:501 ../inc/taxonomies.php:354
837
+ #: ../inc/taxonomies.php:474
838
  msgid "(default: False)"
839
  msgstr "(varsayılan:Yanlış)"
840
 
841
+ #: ../inc/post-types.php:449
842
+ msgid "Slug to be used for archive URL."
843
  msgstr ""
844
 
845
+ #: ../inc/post-types.php:469
846
  msgid "Exclude From Search"
847
  msgstr "Arama Dışında Bırak"
848
 
849
+ #: ../inc/post-types.php:471
850
+ msgid ""
851
+ "Whether to exclude posts with this post type from front end search results."
852
+ msgstr ""
853
 
854
+ #: ../inc/post-types.php:482
855
  msgid "Capability Type"
856
  msgstr "Yetenek Türü"
857
 
858
+ #: ../inc/post-types.php:483
859
  msgid "The post type to use for checking read, edit, and delete capabilities"
860
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
861
 
862
+ #: ../inc/post-types.php:500 ../inc/taxonomies.php:353
863
  msgid "Hierarchical"
864
  msgstr "Hiyerarşik"
865
 
866
+ #: ../inc/post-types.php:502
867
  msgid "Whether the post type can have parent-child relationships"
868
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
869
 
870
+ #: ../inc/post-types.php:520 ../inc/taxonomies.php:413
871
  msgid "Rewrite"
872
  msgstr "Rewrite"
873
 
874
+ #: ../inc/post-types.php:522
875
+ #, fuzzy
876
+ msgid "Whether or not WordPress should use rewrites for this post type"
877
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
878
 
879
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:424
880
  msgid "Custom Rewrite Slug"
881
  msgstr "Özel Rewrite Slug"
882
 
883
+ #: ../inc/post-types.php:534
884
+ #, fuzzy
885
+ msgid "(default: post type slug)"
886
  msgstr "(varsayılan: yazı türü adı)"
887
 
888
+ #: ../inc/post-types.php:535
889
+ #, fuzzy
890
+ msgid "Custom post type slug to use instead of the default."
891
  msgstr "Özel slug yerine varsayılan kullanmak için."
892
 
893
+ #: ../inc/post-types.php:552
894
  msgid "With Front"
895
  msgstr "Cephesinden"
896
 
897
+ #: ../inc/post-types.php:554 ../inc/taxonomies.php:441
 
898
  msgid "Should the permastruct be prepended with the front base."
899
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
900
 
901
+ #: ../inc/post-types.php:572 ../inc/taxonomies.php:387
902
  msgid "Query Var"
903
  msgstr "Sorgu Tanımı"
904
 
905
+ #: ../inc/post-types.php:574
906
+ #, fuzzy
907
+ msgid "Sets the query_var key for this post type."
908
+ msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
909
+
910
+ #: ../inc/post-types.php:582
911
  msgid "Menu Position"
912
  msgstr "Menü Pozisyonu"
913
 
914
+ #: ../inc/post-types.php:583
915
  msgid ""
916
  "The position in the menu order the post type should appear. show_in_menu "
917
  "must be true."
919
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
920
  "gerekir."
921
 
922
+ #: ../inc/post-types.php:584
923
  msgid ""
924
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
925
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
929
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
930
  "bölümü\". Aralık 5 ile 100"
931
 
932
+ #: ../inc/post-types.php:599
933
  msgid "Show in Menu"
934
  msgstr "Menüde Göster"
935
 
936
+ #: ../inc/post-types.php:600
937
  #, fuzzy
938
  msgid ""
939
+ "Whether to show the post type in the admin menu and where to show that menu."
 
940
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
941
 
942
+ #: ../inc/post-types.php:601
943
  msgid ""
944
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
945
  "php\" is indicated for second input, post type will be sub menu of that."
948
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
949
  "olacaktır."
950
 
951
+ #: ../inc/post-types.php:627
952
+ msgid "Top-level page file name to make post type a sub-menu of."
953
+ msgstr ""
954
 
955
+ #: ../inc/post-types.php:639
956
  msgid "Menu Icon"
957
  msgstr "Menü Simgesi"
958
 
959
+ #: ../inc/post-types.php:640
960
  msgid "(Full URL for icon or Dashicon class)"
961
  msgstr ""
962
 
963
+ #: ../inc/post-types.php:641
964
  #, fuzzy
965
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
966
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
967
 
968
+ #: ../inc/post-types.php:654
969
  msgid "Title"
970
  msgstr "Başlık"
971
 
972
+ #: ../inc/post-types.php:655
973
  msgid "Adds the title meta box when creating content for this custom post type"
974
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
975
 
976
+ #: ../inc/post-types.php:669
977
  msgid "Editor"
978
  msgstr "Editör"
979
 
980
+ #: ../inc/post-types.php:670
981
  msgid ""
982
  "Adds the content editor meta box when creating content for this custom post "
983
  "type"
984
  msgstr ""
985
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
986
 
987
+ #: ../inc/post-types.php:684
988
  msgid "Excerpt"
989
  msgstr "Alıntı"
990
 
991
+ #: ../inc/post-types.php:685
992
  msgid ""
993
  "Adds the excerpt meta box when creating content for this custom post type"
994
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
995
 
996
+ #: ../inc/post-types.php:699
997
  msgid "Trackbacks"
998
  msgstr "Parçagönderimi"
999
 
1000
+ #: ../inc/post-types.php:700
1001
  msgid ""
1002
  "Adds the trackbacks meta box when creating content for this custom post type"
1003
  msgstr ""
1004
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
1005
 
1006
+ #: ../inc/post-types.php:714
1007
  msgid "Custom Fields"
1008
  msgstr "Özel Alanlar"
1009
 
1010
+ #: ../inc/post-types.php:715
1011
  msgid ""
1012
  "Adds the custom fields meta box when creating content for this custom post "
1013
  "type"
1014
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1015
 
1016
+ #: ../inc/post-types.php:729
1017
  msgid "Comments"
1018
  msgstr "Yorumlar"
1019
 
1020
+ #: ../inc/post-types.php:730
1021
  msgid ""
1022
  "Adds the comments meta box when creating content for this custom post type"
1023
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1024
 
1025
+ #: ../inc/post-types.php:744
1026
  msgid "Revisions"
1027
  msgstr "Düzenlemeler"
1028
 
1029
+ #: ../inc/post-types.php:745
1030
  msgid ""
1031
  "Adds the revisions meta box when creating content for this custom post type"
1032
  msgstr ""
1033
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1034
 
1035
+ #: ../inc/post-types.php:759
1036
  msgid "Featured Image"
1037
  msgstr "Öne Çıkan Görüntü"
1038
 
1039
+ #: ../inc/post-types.php:760
1040
  msgid ""
1041
  "Adds the featured image meta box when creating content for this custom post "
1042
  "type"
1044
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1045
  "ekler"
1046
 
1047
+ #: ../inc/post-types.php:774
1048
  msgid "Author"
1049
  msgstr "Yazar"
1050
 
1051
+ #: ../inc/post-types.php:775
1052
  msgid ""
1053
  "Adds the author meta box when creating content for this custom post type"
1054
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1055
 
1056
+ #: ../inc/post-types.php:789
1057
  msgid "Page Attributes"
1058
  msgstr "Sayfa Öznitelikleri"
1059
 
1060
+ #: ../inc/post-types.php:790
1061
  msgid ""
1062
  "Adds the page attribute meta box when creating content for this custom post "
1063
  "type"
1065
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1066
  "ekler "
1067
 
1068
+ #: ../inc/post-types.php:804
1069
  msgid "Post Formats"
1070
  msgstr "Yazı Formatları"
1071
 
1072
+ #: ../inc/post-types.php:805
1073
  msgid "Adds post format support"
1074
  msgstr "Bu Yazı format desteği ekler"
1075
 
1076
+ #: ../inc/post-types.php:810
1077
  msgid "Use the option below to explicitly set \"supports\" to false."
1078
  msgstr ""
1079
 
1080
+ #: ../inc/post-types.php:818
1081
  msgid "None"
1082
  msgstr ""
1083
 
1084
+ #: ../inc/post-types.php:819
1085
  msgid "Remove all support features"
1086
  msgstr ""
1087
 
1088
+ #: ../inc/post-types.php:825
1089
+ #, fuzzy
1090
+ msgid "Custom \"Supports\""
1091
+ msgstr "Destekler"
 
 
 
 
 
 
 
 
1092
 
1093
+ #: ../inc/post-types.php:826
 
1094
  msgid ""
1095
+ "Use this input to register custom \"supports\" values, separated by commas."
 
 
 
1096
  msgstr ""
 
 
1097
 
1098
+ #: ../inc/post-types.php:832
1099
+ msgid "Provide custom support slugs here."
 
 
 
 
 
1100
  msgstr ""
 
 
 
1101
 
1102
+ #: ../inc/post-types.php:838
1103
+ msgid "Built-in Taxonomies"
1104
+ msgstr "Dahili Sınıflandırmalar"
1105
+
1106
+ #: ../inc/post-types.php:867 ../inc/taxonomies.php:167
1107
  #, fuzzy, php-format
1108
+ msgid "Adds %s support"
1109
+ msgstr "Bu Yazı format desteği ekler"
 
 
 
 
 
 
1110
 
1111
+ #: ../inc/post-types.php:966
1112
  msgid "Please provide a post type to delete"
1113
  msgstr ""
1114
 
1115
+ #: ../inc/post-types.php:1026
1116
  #, fuzzy
1117
  msgid "Please provide a post type name"
1118
  msgstr "(varsayılan: yazı türü adı)"
1119
 
1120
+ #: ../inc/post-types.php:1050
1121
  #, fuzzy
1122
  msgid "Please do not use quotes in post type names or rewrite slugs"
1123
  msgstr ""
1124
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1125
 
1126
+ #: ../inc/post-types.php:1057
1127
  #, php-format
1128
  msgid "Please choose a different post type name. %s is already registered."
1129
  msgstr ""
1130
 
1131
+ #: ../inc/support.php:41
1132
  #, fuzzy
1133
  msgid "Custom Post Type UI Support"
1134
  msgstr "Özel Yazı Türleri KA"
1135
 
1136
+ #: ../inc/support.php:43
1137
  #, fuzzy, php-format
1138
  msgid ""
1139
  "Please note that this plugin will NOT handle display of registered post "
1143
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1144
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1145
 
1146
+ #: ../inc/support.php:44
1147
  #, fuzzy
1148
  msgid "Support Forums"
1149
  msgstr "Destekler"
1150
 
1151
+ #: ../inc/support.php:50
1152
  msgid "General"
1153
  msgstr ""
1154
 
1155
+ #: ../inc/support.php:53
1156
  #, fuzzy
1157
  msgid ""
1158
  "I changed my custom post type name and now I can not get to my posts. How do "
1161
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1162
  "gösterilmiyor</strong>"
1163
 
1164
+ #: ../inc/support.php:54
1165
  #, fuzzy
1166
  msgid ""
1167
  "You can either change the custom post type name back to the original name or "
1170
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1171
  "deneyebilirsiniz:"
1172
 
1173
+ #: ../inc/support.php:59
1174
  msgid ""
1175
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1176
  "shown. How do I remove the duplicate?"
1177
  msgstr ""
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 "
1184
  "delete the previous version's entry."
1185
  msgstr ""
1186
 
1187
+ #: ../inc/support.php:63
1188
  msgid ""
1189
  "I have added post thumbnail and/or post format support to my post type, but "
1190
  "those do not appear when adding a post type post."
1191
  msgstr ""
1192
 
1193
+ #: ../inc/support.php:64
1194
  msgid ""
1195
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1196
  msgstr ""
1197
 
1198
+ #: ../inc/support.php:69
1199
  msgid "Front-end Display"
1200
  msgstr ""
1201
 
1202
+ #: ../inc/support.php:72
1203
  msgid "What template files should I edit to alter my post type display?"
1204
  msgstr ""
1205
 
1206
+ #: ../inc/support.php:73
1207
  #, php-format
1208
  msgid ""
1209
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1210
  "details about available templates."
1211
  msgstr ""
1212
 
1213
+ #: ../inc/support.php:80
1214
  #, fuzzy
1215
  msgid "How do I display my custom post type on my site?"
1216
  msgstr ""
1217
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1218
  "strong>"
1219
 
1220
+ #: ../inc/support.php:81
1221
  #, php-format
1222
  msgid ""
1223
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1225
  "should be something like \"http://www.mysite.com/post-type-slug\""
1226
  msgstr ""
1227
 
1228
+ #: ../inc/support.php:87
1229
  msgid ""
1230
  "I have added categories and tags to my custom post type, but they do not "
1231
  "appear in the archives."
1232
  msgstr ""
1233
 
1234
+ #: ../inc/support.php:88
1235
  #, php-format
1236
  msgid ""
1237
  "You will need to add your newly created post type to the types that the "
1239
  "that at %s"
1240
  msgstr ""
1241
 
1242
+ #: ../inc/support.php:97
1243
  #, fuzzy
1244
  msgid "Advanced"
1245
  msgstr "Gelişmiş Ayarlar"
1246
 
1247
+ #: ../inc/support.php:100
1248
  #, fuzzy
1249
  msgid "How do I add custom metaboxes to my post type?"
1250
  msgstr ""
1251
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1252
  "ekleyebilirsiniz?</strong>"
1253
 
1254
+ #: ../inc/support.php:102
1255
  #, php-format
1256
  msgid ""
1257
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1258
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1259
  msgstr ""
1260
 
1261
+ #: ../inc/support.php:108
1262
  msgid ""
1263
  "How do I add a newly registered taxonomy to a post type that already exists?"
1264
  msgstr ""
1265
 
1266
+ #: ../inc/support.php:110
1267
  #, php-format
1268
  msgid "Check out the %s function for documentation and usage examples."
1269
  msgstr ""
1270
 
1271
+ #: ../inc/support.php:116
1272
  msgid "Post relationships?"
1273
  msgstr ""
1274
 
1275
+ #: ../inc/support.php:117
1276
  #, php-format
1277
  msgid ""
1278
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1279
  "plugin that should be a good start."
1280
  msgstr ""
1281
 
1282
+ #: ../inc/support.php:126
1283
+ msgid "Is there any function reference list?"
1284
+ msgstr ""
1285
+
1286
+ #: ../inc/support.php:127
1287
+ #, php-format
1288
+ msgid ""
1289
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1290
+ "will be useful as they are attached to hooks."
1291
+ msgstr ""
1292
+
1293
+ #: ../inc/support.php:131
1294
  msgid ""
1295
  "How do I filter the \"enter title here\" text in the post editor screen?"
1296
  msgstr ""
1297
 
1298
+ #: ../inc/support.php:132
1299
  msgid ""
1300
  "Change text inside the post/page editor title field. Should be able to adapt "
1301
  "as necessary."
1302
  msgstr ""
1303
 
1304
+ #: ../inc/taxonomies.php:82
1305
  msgid ""
1306
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1307
+ "registers a new taxonomy entry for your install."
1308
  msgstr ""
1309
 
1310
+ #: ../inc/taxonomies.php:113
1311
  #, fuzzy
1312
  msgid "Taxonomy Slug"
1313
  msgstr "Sınıflandırma Adı"
1314
 
1315
+ #: ../inc/taxonomies.php:114
1316
+ #, fuzzy
1317
+ msgid "(e.g. actor)"
1318
+ msgstr "(örneğin: Aktör)"
1319
 
1320
+ #: ../inc/taxonomies.php:115
1321
  #, fuzzy
1322
  msgid ""
1323
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1326
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1327
  "tatlı olmalıdır"
1328
 
1329
+ #: ../inc/taxonomies.php:123 ../inc/taxonomies.php:205
1330
  msgid "(e.g. Actors)"
1331
  msgstr "(örneğin: Aktörler)"
1332
 
1333
+ #: ../inc/taxonomies.php:125
1334
  #, fuzzy
1335
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1336
  msgstr ""
1337
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1338
  "menüsünde kullanılan."
1339
 
1340
+ #: ../inc/taxonomies.php:132
1341
  msgid "(e.g. Actor)"
1342
  msgstr "(örneğin: Aktör)"
1343
 
1344
+ #: ../inc/taxonomies.php:134
1345
  msgid ""
1346
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1347
  msgstr ""
1348
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1349
  "kullanır."
1350
 
1351
+ #: ../inc/taxonomies.php:137
1352
  msgid "Attach to Post Type"
1353
  msgstr "Yazı Türüne ekle"
1354
 
1355
+ #: ../inc/taxonomies.php:176
1356
  #, fuzzy
1357
+ msgid "Save Taxonomy"
1358
+ msgstr "Özel Sınıflandırma Kaydet"
1359
 
1360
+ #: ../inc/taxonomies.php:177
1361
  #, fuzzy
1362
  msgid "Delete Taxonomy"
1363
  msgstr "Özel Sınıflandırma Oluştur"
1364
 
1365
+ #: ../inc/taxonomies.php:179
1366
  #, fuzzy
1367
  msgid "Add Taxonomy"
1368
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1369
 
1370
+ #: ../inc/taxonomies.php:188
1371
+ #, fuzzy, php-format
1372
+ msgid ""
1373
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1374
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1375
+ "letters that do not have accents."
1376
+ msgstr ""
1377
+ "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1378
+ "boşluk yerine alt çizgi olmalıdır."
1379
+
1380
+ #: ../inc/taxonomies.php:189
1381
+ #, fuzzy, php-format
1382
+ msgid ""
1383
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1384
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1385
+ "settings will use default values. Labels, if left blank, will be "
1386
+ "automatically created based on the taxonomy name. Hover over the question "
1387
+ "marks for more details."
1388
+ msgstr ""
1389
+ "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1390
+ "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1391
+
1392
+ #: ../inc/taxonomies.php:190
1393
+ #, fuzzy, php-format
1394
+ msgid ""
1395
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1396
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1397
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1398
+ "terms in the database."
1399
+ msgstr ""
1400
+ "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1401
+ "içerikleri kalacaktır."
1402
+
1403
+ #: ../inc/taxonomies.php:207 ../inc/taxonomies.php:216
1404
+ #: ../inc/taxonomies.php:225 ../inc/taxonomies.php:234
1405
+ #: ../inc/taxonomies.php:243 ../inc/taxonomies.php:252
1406
+ #: ../inc/taxonomies.php:261 ../inc/taxonomies.php:270
1407
+ #: ../inc/taxonomies.php:279 ../inc/taxonomies.php:288
1408
+ #: ../inc/taxonomies.php:297 ../inc/taxonomies.php:306
1409
+ #: ../inc/taxonomies.php:315 ../inc/taxonomies.php:324
1410
+ #: ../inc/taxonomies.php:333
1411
  #, fuzzy
1412
  msgid ""
1413
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1415
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1416
  "menüsünde kullanılan."
1417
 
1418
+ #: ../inc/taxonomies.php:214
1419
  msgid "(e.g. All Actors)"
1420
  msgstr "(örneğin: Bütün Aktörler)"
1421
 
1422
+ #: ../inc/taxonomies.php:223
1423
  msgid "(e.g. Edit Actor)"
1424
  msgstr "(örneğin: Aktör Düzenle)"
1425
 
1426
+ #: ../inc/taxonomies.php:232
1427
  #, fuzzy
1428
  msgid "(e.g. View Actor)"
1429
  msgstr "(örneğin: Aktör)"
1430
 
1431
+ #: ../inc/taxonomies.php:241
1432
  #, fuzzy
1433
  msgid "(e.g. Update Actor Name)"
1434
  msgstr "(örneğin: Aktörü Güncelle)"
1435
 
1436
+ #: ../inc/taxonomies.php:242
1437
  #, fuzzy
1438
  msgid "Update Item Name"
1439
  msgstr "Eleman Güncelle"
1440
 
1441
+ #: ../inc/taxonomies.php:250
1442
  msgid "(e.g. Add New Actor)"
1443
  msgstr "(örneğin: Yeni Aktör Ekle)"
1444
 
1445
+ #: ../inc/taxonomies.php:259
1446
  msgid "(e.g. New Actor Name)"
1447
  msgstr "(örneğin: Yeni Aktör Adı)"
1448
 
1449
+ #: ../inc/taxonomies.php:260
1450
  msgid "New Item Name"
1451
  msgstr "Yeni Eleman Adı"
1452
 
1453
+ #: ../inc/taxonomies.php:268
1454
  msgid "(e.g. Parent Actor)"
1455
  msgstr "(örneğin: Temel Aktör)"
1456
 
1457
+ #: ../inc/taxonomies.php:269
1458
  msgid "Parent Item"
1459
  msgstr "Temel Eleman"
1460
 
1461
+ #: ../inc/taxonomies.php:277
1462
  msgid "(e.g. Parent Actor:)"
1463
  msgstr "(örneğin: Temel Aktör:)"
1464
 
1465
+ #: ../inc/taxonomies.php:278
1466
  msgid "Parent Item Colon"
1467
  msgstr "Temel Eleman Kolon"
1468
 
1469
+ #: ../inc/taxonomies.php:286
1470
  msgid "(e.g. Search Actors)"
1471
  msgstr "(örneğin: Aktörleri Ara)"
1472
 
1473
+ #: ../inc/taxonomies.php:287
1474
  msgid "Search Items"
1475
  msgstr "Eleman Ara"
1476
 
1477
+ #: ../inc/taxonomies.php:295
1478
  msgid "(e.g. Popular Actors)"
1479
  msgstr "(örneğin: Popüler Aktörler)"
1480
 
1481
+ #: ../inc/taxonomies.php:296
1482
  msgid "Popular Items"
1483
  msgstr "Popüler Elemanlar"
1484
 
1485
+ #: ../inc/taxonomies.php:304
1486
  msgid "(e.g. Separate actors with commas)"
1487
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1488
 
1489
+ #: ../inc/taxonomies.php:305
1490
  msgid "Separate Items with Commas"
1491
  msgstr "Elemanları virgül ile ayır"
1492
 
1493
+ #: ../inc/taxonomies.php:313
1494
  msgid "(e.g. Add or remove actors)"
1495
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1496
 
1497
+ #: ../inc/taxonomies.php:314
1498
  msgid "Add or Remove Items"
1499
  msgstr "Elemanları Ekle veya Çıkar "
1500
 
1501
+ #: ../inc/taxonomies.php:322
1502
  msgid "(e.g. Choose from the most used actors)"
1503
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1504
 
1505
+ #: ../inc/taxonomies.php:323
1506
  msgid "Choose From Most Used"
1507
  msgstr "Çok Kullanılandan Seç"
1508
 
1509
+ #: ../inc/taxonomies.php:331
1510
  #, fuzzy
1511
  msgid "(e.g. No actors found)"
1512
  msgstr "(örneğin: Filmler bulunamadı)"
1513
 
1514
+ #: ../inc/taxonomies.php:332
1515
  #, fuzzy
1516
  msgid "Not found"
1517
  msgstr "Bulunamadı"
1518
 
1519
+ #: ../inc/taxonomies.php:355
1520
  msgid "Whether the taxonomy can have parent-child relationships"
1521
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1522
 
1523
+ #: ../inc/taxonomies.php:372
1524
+ #, fuzzy
1525
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1526
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1527
 
1528
+ #: ../inc/taxonomies.php:389
1529
+ #, fuzzy
1530
+ msgid "Sets the query_var key for this taxonomy."
1531
+ msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1532
+
1533
+ #: ../inc/taxonomies.php:397
1534
  msgid "(default: none). Query Var needs to be true to use."
1535
  msgstr ""
1536
 
1537
+ #: ../inc/taxonomies.php:398
1538
  msgid "Custom Query Var String"
1539
  msgstr ""
1540
 
1541
+ #: ../inc/taxonomies.php:399
1542
+ msgid "Sets a custom query_var slug for this taxonomy."
1543
+ msgstr ""
 
1544
 
1545
+ #: ../inc/taxonomies.php:415
1546
+ #, fuzzy
1547
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1548
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1549
 
1550
+ #: ../inc/taxonomies.php:423
1551
  msgid "(default: taxonomy name)"
1552
  msgstr "(varsayılan: sınıflandırma adı)"
1553
 
1554
+ #: ../inc/taxonomies.php:425
1555
+ #, fuzzy
1556
+ msgid "Custom taxonomy rewrite slug."
1557
  msgstr "Özel Sınıflandırma Rewrite Slug"
1558
 
1559
+ #: ../inc/taxonomies.php:439
1560
  #, fuzzy
1561
  msgid "Rewrite With Front"
1562
  msgstr "Cephesinden"
1563
 
1564
+ #: ../inc/taxonomies.php:440
1565
  #, fuzzy
1566
  msgid "(default: true)"
1567
  msgstr "(varsayılan: Doğru)"
1568
 
1569
+ #: ../inc/taxonomies.php:456
1570
  #, fuzzy
1571
  msgid "Rewrite Hierarchical"
1572
  msgstr "Hiyerarşik"
1573
 
1574
+ #: ../inc/taxonomies.php:457
1575
  #, fuzzy
1576
  msgid "(default: false)"
1577
  msgstr "(varsayılan:Yanlış)"
1578
 
1579
+ #: ../inc/taxonomies.php:458
1580
  #, fuzzy
1581
  msgid "Should the permastruct allow hierarchical urls."
1582
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1583
 
1584
+ #: ../inc/taxonomies.php:473
1585
  msgid "Show Admin Column"
1586
  msgstr "Yönetici Sütunu Göster"
1587
 
1588
+ #: ../inc/taxonomies.php:475
1589
  msgid ""
1590
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1591
  "types."
1592
  msgstr ""
1593
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1594
 
1595
+ #: ../inc/taxonomies.php:573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1596
  msgid "Please provide a taxonomy to delete"
1597
  msgstr ""
1598
 
1599
+ #: ../inc/taxonomies.php:624
1600
  #, fuzzy
1601
  msgid "Please provide a taxonomy name"
1602
  msgstr "(varsayılan: sınıflandırma adı)"
1603
 
1604
+ #: ../inc/taxonomies.php:640
1605
  #, fuzzy
1606
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1607
  msgstr ""
1608
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1609
  "kullanmayınız."
1610
 
1611
+ #: ../inc/taxonomies.php:646
1612
  #, php-format
1613
  msgid "Please choose a different taxonomy name. %s is already used."
1614
  msgstr ""
1621
  msgstr ""
1622
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
1623
 
1624
+ #, fuzzy
1625
+ #~ msgid "Edit Post Type"
1626
+ #~ msgstr "Özel Yazı Türleri"
1627
+
1628
+ #~ msgid "Whether the post type will be searchable"
1629
+ #~ msgstr "Yazı türünün aranabilir olup olmadığı"
1630
+
1631
+ #~ msgid "URL to image to be used as menu icon."
1632
+ #~ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
1633
+
1634
+ #, fuzzy
1635
+ #~ msgid "Edit Taxonomy"
1636
+ #~ msgstr "Dahili Sınıflandırmalar"
1637
+
1638
+ #, fuzzy
1639
+ #~ msgid "Custom Query Var Slug"
1640
+ #~ msgstr "Özel Rewrite Slug"
1641
+
1642
  #, fuzzy
1643
  #~ msgid "URL or Dashicon value for image to be used as menu icon."
1644
  #~ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
1746
  #~ "Bu<strong> BETA</strong> özelliğidir. Lütfen <a href=\"http://"
1747
  #~ "webdevstudios.com/support/forum/custom-post-type-ui/\"> hata raporu </a>"
1748
 
 
 
 
1749
  #~ msgid "Create Custom Post Type"
1750
  #~ msgstr "Özel Yazı Türü Oluştur"
1751
 
 
 
 
1752
  #~ msgid ""
1753
  #~ "Custom post type created successfully. You may need to refresh to view "
1754
  #~ "the new post type in the admin menu."
languages/cpt-plugin-zh_CN.mo CHANGED
Binary file
languages/cpt-plugin-zh_CN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-09 23:50-0600\n"
6
- "PO-Revision-Date: 2015-04-09 23:51-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
@@ -13,285 +13,319 @@ msgstr ""
13
  "X-Poedit-KeywordsList: \n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.7.5\n"
17
 
18
- #: ../custom-post-type-ui.php:58
19
  #, fuzzy
20
  msgid "Custom Post Types"
21
  msgstr "附属到文章类型"
22
 
23
- #: ../custom-post-type-ui.php:58
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
31
 
32
- #: ../custom-post-type-ui.php:323
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
 
39
- #: ../custom-post-type-ui.php:325
40
- #, php-format
 
 
 
 
41
  msgid ""
42
- "To get started with creating some post types, please visit %s and for "
43
- "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
44
- "there fits your issue, visit our %s and we will try to get to your question "
45
- "as soon as possible."
46
  msgstr ""
47
 
48
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
49
- #, fuzzy
50
- msgid "Add/Edit Post Types"
51
- msgstr "编辑自定义文章类型"
52
 
53
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
54
- #, fuzzy
55
- msgid "Add/Edit Taxonomies"
56
- msgstr "内置类别"
 
 
57
 
58
- #: ../custom-post-type-ui.php:328 ../inc/support.php:30
59
- #, fuzzy
60
- msgid "Help/Support"
61
- msgstr "支持"
62
 
63
- #: ../custom-post-type-ui.php:329
64
- msgid "CPT UI Support Forum"
 
 
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:345
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:349
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
- #: ../custom-post-type-ui.php:354
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:357
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:362
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:365
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:366
94
- msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:370
98
- msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
- #: ../custom-post-type-ui.php:407
102
  #, php-format
103
- msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:416
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:418
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
115
- msgid "Import/Export"
116
- msgstr ""
117
-
118
- #: ../custom-post-type-ui.php:480
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
- #: ../custom-post-type-ui.php:484
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
- #: ../custom-post-type-ui.php:510
129
  #, fuzzy
130
  msgid "Add New Post Type"
131
  msgstr "已附属文章类型"
132
 
133
- #: ../custom-post-type-ui.php:513
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "编辑自定义文章类型"
137
 
138
- #: ../custom-post-type-ui.php:517
139
  #, fuzzy
140
  msgid "Add New Taxonomy"
141
  msgstr "类别名称"
142
 
143
- #: ../custom-post-type-ui.php:520
144
  #, fuzzy
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
- #: ../custom-post-type-ui.php:524 ../inc/listings.php:19
149
- #: ../inc/listings.php:123 ../inc/listings.php:196
150
  #, fuzzy
151
  msgid "Post Types"
152
  msgstr "文章类型名称"
153
 
154
- #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
155
- #: ../inc/listings.php:26 ../inc/listings.php:107 ../inc/listings.php:117
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "内置类别"
159
 
160
- #: ../custom-post-type-ui.php:526
161
  msgid "Get Code"
162
  msgstr ""
163
 
164
- #: ../custom-post-type-ui.php:610 ../inc/listings.php:24
165
- #: ../inc/listings.php:105 ../inc/listings.php:122 ../inc/listings.php:195
166
- #: ../inc/post-types.php:334 ../inc/taxonomies.php:326
167
  msgid "Settings"
168
  msgstr ""
169
 
170
- #: ../custom-post-type-ui.php:610
171
  msgid "Help"
172
  msgstr ""
173
 
174
- #: ../custom-post-type-ui.php:638
175
  #, php-format
176
  msgid "%s has been successfully added"
177
  msgstr ""
178
 
179
- #: ../custom-post-type-ui.php:640
180
  #, php-format
181
  msgid "%s has failed to be added"
182
  msgstr ""
183
 
184
- #: ../custom-post-type-ui.php:644
185
  #, php-format
186
  msgid "%s has been successfully updated"
187
  msgstr ""
188
 
189
- #: ../custom-post-type-ui.php:646
190
  #, php-format
191
  msgid "%s has failed to be updated"
192
  msgstr ""
193
 
194
- #: ../custom-post-type-ui.php:650
195
  #, php-format
196
  msgid "%s has been successfully deleted"
197
  msgstr ""
198
 
199
- #: ../custom-post-type-ui.php:652
200
  #, php-format
201
  msgid "%s has failed to be deleted"
202
  msgstr ""
203
 
204
- #: ../custom-post-type-ui.php:656
205
  #, php-format
206
  msgid "%s has been successfully imported"
207
  msgstr ""
208
 
209
- #: ../custom-post-type-ui.php:658
210
  #, php-format
211
  msgid "%s has failed to be imported"
212
  msgstr ""
213
 
214
- #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
215
  #, fuzzy, php-format
216
  msgid "Add new %s"
217
  msgstr "添加"
218
 
219
- #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
220
  #, fuzzy, php-format
221
  msgid "Edit %s"
222
  msgstr "编辑"
223
 
224
- #: ../custom-post-type-ui.php:743
225
  #, php-format
226
  msgid "New %s"
227
  msgstr ""
228
 
229
- #: ../custom-post-type-ui.php:744
230
  #, fuzzy, php-format
231
  msgid "View %s"
232
  msgstr "查看"
233
 
234
- #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
235
  #, fuzzy, php-format
236
  msgid "All %s"
237
  msgstr "所有条目"
238
 
239
- #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
240
  #, fuzzy, php-format
241
  msgid "Search %s"
242
  msgstr "搜索条目"
243
 
244
- #: ../custom-post-type-ui.php:747
245
  #, fuzzy, php-format
246
  msgid "No %s found."
247
  msgstr "未找到"
248
 
249
- #: ../custom-post-type-ui.php:748
250
  #, fuzzy, php-format
251
  msgid "No %s found in trash."
252
  msgstr "在回收站中没有找到"
253
 
254
- #: ../custom-post-type-ui.php:752
255
  #, fuzzy, php-format
256
  msgid "Popular %s"
257
  msgstr "热门条目"
258
 
259
- #: ../custom-post-type-ui.php:754
260
  #, fuzzy, php-format
261
  msgid "Parent %s"
262
  msgstr "上级"
263
 
264
- #: ../custom-post-type-ui.php:755
265
  #, fuzzy, php-format
266
  msgid "Parent %s:"
267
  msgstr "上级"
268
 
269
- #: ../custom-post-type-ui.php:757
270
  #, php-format
271
  msgid "Update %s"
272
  msgstr ""
273
 
274
- #: ../custom-post-type-ui.php:759
275
  #, fuzzy, php-format
276
  msgid "New %s name"
277
  msgstr "新条目名称"
278
 
279
- #: ../custom-post-type-ui.php:760
280
  #, fuzzy, php-format
281
  msgid "Separate %s with commas"
282
  msgstr "使用英文逗号隔开多个标签条目"
283
 
284
- #: ../custom-post-type-ui.php:761
285
  #, fuzzy, php-format
286
  msgid "Add or remove %s"
287
  msgstr "添加或删除条目"
288
 
289
- #: ../custom-post-type-ui.php:762
290
  #, fuzzy, php-format
291
  msgid "Choose from the most used %s"
292
  msgstr "使用次数最多"
293
 
294
- #: ../inc/import_export.php:52
295
  msgid ""
296
  "If you are wanting to migrate registered post types or taxonomies from this "
297
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -299,718 +333,751 @@ msgid ""
299
  "the information in the \"Get Code\" tab."
300
  msgstr ""
301
 
302
- #: ../inc/import_export.php:55
303
  msgid "NOTE"
304
  msgstr ""
305
 
306
- #: ../inc/import_export.php:56
307
  msgid "This will not export the associated posts, just the settings."
308
  msgstr ""
309
 
310
- #: ../inc/import_export.php:63
311
  #, fuzzy
312
  msgid "Import Post Types"
313
  msgstr "已附属文章类型"
314
 
315
- #: ../inc/import_export.php:65 ../inc/import_export.php:90
316
  #, fuzzy
317
  msgid "Paste content here."
318
  msgstr "特色内容"
319
 
320
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
321
  msgid "Note:"
322
  msgstr ""
323
 
324
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
325
  msgid "Importing will overwrite previous registered settings."
326
  msgstr ""
327
 
328
- #: ../inc/import_export.php:67
329
  msgid ""
330
  "To import post types from a different WordPress site, paste the exported "
331
  "content from that site and click the \"Import\" button."
332
  msgstr ""
333
 
334
- #: ../inc/import_export.php:68 ../inc/import_export.php:93
335
  msgid "Import"
336
  msgstr ""
337
 
338
- #: ../inc/import_export.php:72
339
  #, fuzzy
340
  msgid "Export Post Types"
341
  msgstr "已附属文章类型"
342
 
343
- #: ../inc/import_export.php:78
344
  msgid "No post types registered yet."
345
  msgstr ""
346
 
347
- #: ../inc/import_export.php:81 ../inc/import_export.php:106
348
  msgid ""
349
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
350
  "(Mac)."
351
  msgstr ""
352
 
353
- #: ../inc/import_export.php:82
354
  msgid ""
355
  "Use the content above to import current post types into a different "
356
  "WordPress site. You can also use this to simply back up your post type "
357
  "settings."
358
  msgstr ""
359
 
360
- #: ../inc/import_export.php:88
361
  #, fuzzy
362
  msgid "Import Taxonomies"
363
  msgstr "内置类别"
364
 
365
- #: ../inc/import_export.php:92
366
  msgid ""
367
  "To import taxonomies from a different WordPress site, paste the exported "
368
  "content from that site and click the \"Import\" button."
369
  msgstr ""
370
 
371
- #: ../inc/import_export.php:97
372
  #, fuzzy
373
  msgid "Export Taxonomies"
374
  msgstr "内置类别"
375
 
376
- #: ../inc/import_export.php:103
377
  msgid "No taxonomies registered yet."
378
  msgstr ""
379
 
380
- #: ../inc/import_export.php:107
381
  msgid ""
382
  "Use the content above to import current taxonomies into a different "
383
  "WordPress site. You can also use this to simply back up your taxonomy "
384
  "settings."
385
  msgstr ""
386
 
387
- #: ../inc/import_export.php:115
388
  msgid "Get Post Type and Taxonomy Code"
389
  msgstr ""
390
 
391
- #: ../inc/import_export.php:117
392
  #, fuzzy
393
  msgid "All CPT UI Post Types"
394
  msgstr "其它自定义文章类型"
395
 
396
- #: ../inc/import_export.php:118 ../inc/import_export.php:122
397
  msgid "Copy/paste the code below into your functions.php file."
398
  msgstr ""
399
 
400
- #: ../inc/import_export.php:121
401
  #, fuzzy
402
  msgid "All CPT UI Taxonomies"
403
  msgstr "内置类别"
404
 
405
- #: ../inc/import_export.php:152
406
  msgid "No taxonomies to display at this time"
407
  msgstr ""
408
 
409
- #: ../inc/import_export.php:252
410
  msgid "No post types to display at this time"
411
  msgstr ""
412
 
413
- #: ../inc/import_export.php:379
414
  #, fuzzy
415
  msgid "Post types"
416
  msgstr "文章类型名称"
417
 
418
- #: ../inc/listings.php:7
419
- msgid "Registered Types and Taxes"
420
  msgstr ""
421
 
422
- #: ../inc/listings.php:7
423
- msgid "Registered Types/Taxes"
 
424
  msgstr ""
425
 
426
- #: ../inc/listings.php:23 ../inc/listings.php:104
427
  #, fuzzy
428
  msgid "Post Type"
429
  msgstr "附属到文章类型"
430
 
431
- #: ../inc/listings.php:25 ../inc/listings.php:106 ../inc/post-types.php:605
432
  msgid "Supports"
433
  msgstr "支持"
434
 
435
- #: ../inc/listings.php:27 ../inc/listings.php:108 ../inc/listings.php:124
436
- #: ../inc/listings.php:197 ../inc/post-types.php:172 ../inc/taxonomies.php:184
437
  #, fuzzy
438
  msgid "Labels"
439
  msgstr "标签"
440
 
441
- #: ../inc/listings.php:93 ../inc/listings.php:183
 
 
 
 
 
 
 
 
442
  msgid "No custom labels to display"
443
  msgstr ""
444
 
445
- #: ../inc/listings.php:121 ../inc/listings.php:194
446
  #, fuzzy
447
  msgid "Taxonomy"
448
  msgstr "类别名称"
449
 
450
- #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
451
  msgid "Are you sure you want to delete this?"
452
  msgstr ""
453
 
454
- #: ../inc/post-types.php:85
455
  msgid ""
456
- "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
457
- "Changing that value registers a new post type entry for your install."
458
  msgstr ""
459
 
460
- #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
461
- msgid "Select"
 
 
462
  msgstr ""
463
 
464
- #: ../inc/post-types.php:110
 
 
 
 
465
  #, fuzzy
466
  msgid "Post Type Slug"
467
  msgstr "文章类型名称"
468
 
469
- #: ../inc/post-types.php:111
470
  msgid "(e.g. movie)"
471
  msgstr ""
472
 
473
- #: ../inc/post-types.php:112
474
  msgid ""
475
  "The post type name. Used to retrieve custom post type content. Should be "
476
  "short and unique"
477
  msgstr ""
478
 
479
- #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
480
  #, fuzzy
481
  msgid "Plural Label"
482
  msgstr "单数标签"
483
 
484
- #: ../inc/post-types.php:124
485
  msgid "(e.g. Movies)"
486
  msgstr ""
487
 
488
- #: ../inc/post-types.php:125 ../inc/post-types.php:193
489
- #: ../inc/post-types.php:205 ../inc/post-types.php:217
490
- #: ../inc/post-types.php:229 ../inc/post-types.php:241
491
- #: ../inc/post-types.php:253 ../inc/post-types.php:265
492
- #: ../inc/post-types.php:277 ../inc/post-types.php:289
493
- #: ../inc/post-types.php:301 ../inc/post-types.php:313
494
- #: ../inc/post-types.php:325
495
  msgid "Post type label. Used in the admin menu for displaying post types."
496
  msgstr ""
497
 
498
- #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
499
  msgid "Singular Label"
500
  msgstr "单数标签"
501
 
502
- #: ../inc/post-types.php:136
503
  msgid "(e.g. Movie)"
504
  msgstr ""
505
 
506
- #: ../inc/post-types.php:137
507
  msgid ""
508
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
509
  "needed."
510
  msgstr ""
511
 
512
- #: ../inc/post-types.php:152
513
  msgid "Description"
514
  msgstr "描述"
515
 
516
- #: ../inc/post-types.php:153
517
  msgid ""
518
  "Custom Post Type Description. Describe what your custom post type is used "
519
  "for."
520
  msgstr ""
521
 
522
- #: ../inc/post-types.php:160
 
 
 
 
 
 
 
 
523
  #, fuzzy
524
- msgid "Edit Post Type"
525
  msgstr "附属到文章类型"
526
 
527
- #: ../inc/post-types.php:161
528
  #, fuzzy
529
  msgid "Delete Post Type"
530
  msgstr "已附属文章类型"
531
 
532
- #: ../inc/post-types.php:163
533
  #, fuzzy
534
  msgid "Add Post Type"
535
  msgstr "已附属文章类型"
536
 
537
- #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
538
- msgid "Click headings to reveal available options."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
  msgstr ""
540
 
541
- #: ../inc/post-types.php:172 ../inc/post-types.php:334
542
- #: ../inc/post-types.php:825 ../inc/taxonomies.php:184
543
- #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
544
- msgid "Click to expand"
 
 
545
  msgstr ""
 
 
546
 
547
- #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
548
  #, fuzzy
549
  msgid "Menu Name"
550
  msgstr "名称"
551
 
552
- #: ../inc/post-types.php:181
553
  msgid "Custom menu name for your custom post type."
554
  msgstr ""
555
 
556
- #: ../inc/post-types.php:185
557
  msgid "(e.g. My Movies)"
558
  msgstr ""
559
 
560
- #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
561
  msgid "All Items"
562
  msgstr "所有条目"
563
 
564
- #: ../inc/post-types.php:197
565
  msgid "(e.g. All Movies)"
566
  msgstr ""
567
 
568
- #: ../inc/post-types.php:204
569
  msgid "Add New"
570
  msgstr "添加"
571
 
572
- #: ../inc/post-types.php:209
573
  #, fuzzy
574
  msgid "(e.g. Add New)"
575
  msgstr "添加"
576
 
577
- #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
578
  msgid "Add New Item"
579
  msgstr "添加新条目"
580
 
581
- #: ../inc/post-types.php:221
582
  msgid "(e.g. Add New Movie)"
583
  msgstr ""
584
 
585
- #: ../inc/post-types.php:228
586
- msgid "Edit"
587
- msgstr "编辑"
588
-
589
- #: ../inc/post-types.php:233
590
  msgid "(e.g. Edit)"
591
  msgstr ""
592
 
593
- #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
594
  msgid "Edit Item"
595
  msgstr "编辑条目"
596
 
597
- #: ../inc/post-types.php:245
598
  msgid "(e.g. Edit Movie)"
599
  msgstr ""
600
 
601
- #: ../inc/post-types.php:252
602
  msgid "New Item"
603
  msgstr "新条目"
604
 
605
- #: ../inc/post-types.php:257
606
  #, fuzzy
607
  msgid "(e.g. New Movie)"
608
  msgstr "添加新条目"
609
 
610
- #: ../inc/post-types.php:264
611
  msgid "View"
612
  msgstr "查看"
613
 
614
- #: ../inc/post-types.php:269
615
  msgid "(e.g. View)"
616
  msgstr ""
617
 
618
- #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
619
  msgid "View Item"
620
  msgstr "查看条目"
621
 
622
- #: ../inc/post-types.php:281
623
  msgid "(e.g. View Movie)"
624
  msgstr ""
625
 
626
- #: ../inc/post-types.php:288
627
  #, fuzzy
628
  msgid "Search Item"
629
  msgstr "搜索条目"
630
 
631
- #: ../inc/post-types.php:293
632
  msgid "(e.g. Search Movie)"
633
  msgstr ""
634
 
635
- #: ../inc/post-types.php:300
636
  msgid "Not Found"
637
  msgstr "未找到"
638
 
639
- #: ../inc/post-types.php:305
640
  msgid "(e.g. No Movies found)"
641
  msgstr ""
642
 
643
- #: ../inc/post-types.php:312
644
  msgid "Not Found in Trash"
645
  msgstr "在回收站中没有找到"
646
 
647
- #: ../inc/post-types.php:317
648
  #, fuzzy
649
  msgid "(e.g. No Movies found in Trash)"
650
  msgstr "在回收站中没有找到"
651
 
652
- #: ../inc/post-types.php:324
653
  msgid "Parent"
654
  msgstr "上级"
655
 
656
- #: ../inc/post-types.php:329
657
  msgid "(e.g. Parent Movie)"
658
  msgstr ""
659
 
660
- #: ../inc/post-types.php:343 ../inc/post-types.php:363
661
- #: ../inc/post-types.php:389 ../inc/post-types.php:421
662
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
663
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
664
- #: ../inc/post-types.php:567 ../inc/taxonomies.php:332
665
- #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
666
- #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
667
- #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
 
668
  msgid "False"
669
  msgstr ""
670
 
671
- #: ../inc/post-types.php:344 ../inc/post-types.php:364
672
- #: ../inc/post-types.php:390 ../inc/post-types.php:422
673
- #: ../inc/post-types.php:453 ../inc/post-types.php:473
674
- #: ../inc/post-types.php:505 ../inc/post-types.php:525
675
- #: ../inc/post-types.php:568 ../inc/taxonomies.php:333
676
- #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
677
- #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
678
- #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
 
679
  msgid "True"
680
  msgstr ""
681
 
682
- #: ../inc/post-types.php:352
 
 
 
683
  msgid "Public"
684
  msgstr "公开"
685
 
686
- #: ../inc/post-types.php:353 ../inc/post-types.php:373
687
- #: ../inc/post-types.php:482 ../inc/post-types.php:514
688
- #: ../inc/post-types.php:534 ../inc/post-types.php:576
689
- #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
690
- #: ../inc/taxonomies.php:401
 
 
691
  msgid "(default: True)"
692
  msgstr ""
693
 
694
- #: ../inc/post-types.php:354
695
- msgid "Whether posts of this type should be shown in the admin UI."
 
 
696
  msgstr ""
697
 
698
- #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
699
  msgid "Show UI"
700
  msgstr "显示用户界面"
701
 
702
- #: ../inc/post-types.php:374
703
  msgid "Whether to generate a default UI for managing this post type."
704
  msgstr ""
705
 
706
- #: ../inc/post-types.php:382
707
  msgid "Has Archive"
708
  msgstr ""
709
 
710
- #: ../inc/post-types.php:383
711
- msgid "Whether the post type will have a post type archive page."
712
  msgstr ""
713
 
714
- #: ../inc/post-types.php:384
715
  msgid "If left blank, the archive slug will default to the post type slug."
716
  msgstr ""
717
 
718
- #: ../inc/post-types.php:398 ../inc/post-types.php:431
719
- #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
720
- #: ../inc/taxonomies.php:461
721
  msgid "(default: False)"
722
  msgstr ""
723
 
724
- #: ../inc/post-types.php:410
725
- msgid "Slug to be used for archive page."
726
  msgstr ""
727
 
728
- #: ../inc/post-types.php:430
729
  msgid "Exclude From Search"
730
  msgstr ""
731
 
732
- #: ../inc/post-types.php:432
733
- msgid "Whether the post type will be searchable"
 
734
  msgstr ""
735
 
736
- #: ../inc/post-types.php:443
737
  msgid "Capability Type"
738
  msgstr "权限类型"
739
 
740
- #: ../inc/post-types.php:444
741
  msgid "The post type to use for checking read, edit, and delete capabilities"
742
  msgstr ""
743
 
744
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
745
  msgid "Hierarchical"
746
  msgstr "层级"
747
 
748
- #: ../inc/post-types.php:463
749
  msgid "Whether the post type can have parent-child relationships"
750
  msgstr ""
751
 
752
- #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
753
  msgid "Rewrite"
754
  msgstr "重写"
755
 
756
- #: ../inc/post-types.php:483
757
- msgid "Triggers the handling of rewrites for this post type"
758
  msgstr ""
759
 
760
- #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
761
  msgid "Custom Rewrite Slug"
762
  msgstr "自定义重写缩略名"
763
 
764
- #: ../inc/post-types.php:495
765
- msgid "(default: post type name)"
766
  msgstr ""
767
 
768
- #: ../inc/post-types.php:496
769
- msgid "Custom slug to use instead of the default."
770
- msgstr ""
 
771
 
772
- #: ../inc/post-types.php:513
773
  msgid "With Front"
774
  msgstr ""
775
 
776
- #: ../inc/post-types.php:515 ../inc/post-types.php:535
777
- #: ../inc/taxonomies.php:428
778
  msgid "Should the permastruct be prepended with the front base."
779
  msgstr ""
780
 
781
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
782
  msgid "Query Var"
783
  msgstr "查询变量"
784
 
785
- #: ../inc/post-types.php:543
 
 
 
 
786
  msgid "Menu Position"
787
  msgstr "菜单位置"
788
 
789
- #: ../inc/post-types.php:544
790
  msgid ""
791
  "The position in the menu order the post type should appear. show_in_menu "
792
  "must be true."
793
  msgstr ""
794
 
795
- #: ../inc/post-types.php:545
796
  msgid ""
797
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
798
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
799
  "\" section. Range of 5-100"
800
  msgstr ""
801
 
802
- #: ../inc/post-types.php:560
803
  msgid "Show in Menu"
804
  msgstr ""
805
 
806
- #: ../inc/post-types.php:561
807
  msgid ""
808
- "Whether to show the post type in the admin menu and where to show that menu. "
809
- "Note that show_ui must be true."
810
  msgstr ""
811
 
812
- #: ../inc/post-types.php:562
813
  msgid ""
814
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
815
  "php\" is indicated for second input, post type will be sub menu of that."
816
  msgstr ""
817
 
818
- #: ../inc/post-types.php:588
819
- msgid "URL to image to be used as menu icon."
820
  msgstr ""
821
 
822
- #: ../inc/post-types.php:600
823
  #, fuzzy
824
  msgid "Menu Icon"
825
  msgstr "菜单位置"
826
 
827
- #: ../inc/post-types.php:601
828
  msgid "(Full URL for icon or Dashicon class)"
829
  msgstr ""
830
 
831
- #: ../inc/post-types.php:602
832
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:615
836
  msgid "Title"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:616
840
  msgid "Adds the title meta box when creating content for this custom post type"
841
  msgstr ""
842
 
843
- #: ../inc/post-types.php:630
844
  #, fuzzy
845
  msgid "Editor"
846
  msgstr "编辑"
847
 
848
- #: ../inc/post-types.php:631
849
  msgid ""
850
  "Adds the content editor meta box when creating content for this custom post "
851
  "type"
852
  msgstr ""
853
 
854
- #: ../inc/post-types.php:645
855
  msgid "Excerpt"
856
  msgstr ""
857
 
858
- #: ../inc/post-types.php:646
859
  msgid ""
860
  "Adds the excerpt meta box when creating content for this custom post type"
861
  msgstr ""
862
 
863
- #: ../inc/post-types.php:660
864
  msgid "Trackbacks"
865
  msgstr ""
866
 
867
- #: ../inc/post-types.php:661
868
  msgid ""
869
  "Adds the trackbacks meta box when creating content for this custom post type"
870
  msgstr ""
871
 
872
- #: ../inc/post-types.php:675
873
  #, fuzzy
874
  msgid "Custom Fields"
875
  msgstr "自定义重写缩略名"
876
 
877
- #: ../inc/post-types.php:676
878
  msgid ""
879
  "Adds the custom fields meta box when creating content for this custom post "
880
  "type"
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:690
884
  msgid "Comments"
885
  msgstr ""
886
 
887
- #: ../inc/post-types.php:691
888
  msgid ""
889
  "Adds the comments meta box when creating content for this custom post type"
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:705
893
  msgid "Revisions"
894
  msgstr ""
895
 
896
- #: ../inc/post-types.php:706
897
  msgid ""
898
  "Adds the revisions meta box when creating content for this custom post type"
899
  msgstr ""
900
 
901
- #: ../inc/post-types.php:720
902
  msgid "Featured Image"
903
  msgstr ""
904
 
905
- #: ../inc/post-types.php:721
906
  msgid ""
907
  "Adds the featured image meta box when creating content for this custom post "
908
  "type"
909
  msgstr ""
910
 
911
- #: ../inc/post-types.php:735
912
  msgid "Author"
913
  msgstr ""
914
 
915
- #: ../inc/post-types.php:736
916
  msgid ""
917
  "Adds the author meta box when creating content for this custom post type"
918
  msgstr ""
919
 
920
- #: ../inc/post-types.php:750
921
  msgid "Page Attributes"
922
  msgstr ""
923
 
924
- #: ../inc/post-types.php:751
925
  msgid ""
926
  "Adds the page attribute meta box when creating content for this custom post "
927
  "type"
928
  msgstr ""
929
 
930
- #: ../inc/post-types.php:765
931
  msgid "Post Formats"
932
  msgstr ""
933
 
934
- #: ../inc/post-types.php:766
935
  msgid "Adds post format support"
936
  msgstr ""
937
 
938
- #: ../inc/post-types.php:771
939
  msgid "Use the option below to explicitly set \"supports\" to false."
940
  msgstr ""
941
 
942
- #: ../inc/post-types.php:779
943
  msgid "None"
944
  msgstr ""
945
 
946
- #: ../inc/post-types.php:780
947
  msgid "Remove all support features"
948
  msgstr ""
949
 
950
- #: ../inc/post-types.php:787
951
- msgid "Built-in Taxonomies"
952
- msgstr "内置类别"
 
953
 
954
- #: ../inc/post-types.php:816 ../inc/taxonomies.php:163
955
- #, php-format
956
- msgid "Adds %s support"
957
  msgstr ""
958
 
959
- #: ../inc/post-types.php:825 ../inc/taxonomies.php:470
960
- msgid "Starter Notes"
961
  msgstr ""
962
 
963
- #: ../inc/post-types.php:828
964
- #, php-format
965
- msgid ""
966
- "Post Type names should have %smax 20 characters%s, and only contain "
967
- "alphanumeric, lowercase characters, underscores in place of spaces and "
968
- "letters that do not have accents. Reserved names: post, page, attachment, "
969
- "revision, nav_menu_item."
970
- msgstr ""
971
 
972
- #: ../inc/post-types.php:829
973
  #, php-format
974
- msgid ""
975
- "If you are unfamiliar with the advanced post type settings, just fill in the "
976
- "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
977
- "values. Labels, if left blank, will be automatically created based on the "
978
- "post type name. Hover over the question mark for more details."
979
- msgstr ""
980
-
981
- #: ../inc/post-types.php:830
982
- #, fuzzy, php-format
983
- msgid ""
984
- "Deleting custom post types will %sNOT%s delete any content into the database "
985
- "or added to those post types. You can easily recreate your post types and "
986
- "the content will still exist."
987
  msgstr ""
988
- "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
989
- "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
990
 
991
- #: ../inc/post-types.php:910
992
  msgid "Please provide a post type to delete"
993
  msgstr ""
994
 
995
- #: ../inc/post-types.php:970
996
  msgid "Please provide a post type name"
997
  msgstr ""
998
 
999
- #: ../inc/post-types.php:988
1000
  msgid "Please do not use quotes in post type names or rewrite slugs"
1001
  msgstr ""
1002
 
1003
- #: ../inc/post-types.php:995
1004
  #, php-format
1005
  msgid "Please choose a different post type name. %s is already registered."
1006
  msgstr ""
1007
 
1008
- #: ../inc/support.php:51
1009
  #, fuzzy
1010
  msgid "Custom Post Type UI Support"
1011
  msgstr "Custom Post Types UI"
1012
 
1013
- #: ../inc/support.php:53
1014
  #, php-format
1015
  msgid ""
1016
  "Please note that this plugin will NOT handle display of registered post "
@@ -1018,34 +1085,34 @@ msgid ""
1018
  "you. If all else fails, visit us on the %s"
1019
  msgstr ""
1020
 
1021
- #: ../inc/support.php:54
1022
  #, fuzzy
1023
  msgid "Support Forums"
1024
  msgstr "支持"
1025
 
1026
- #: ../inc/support.php:60
1027
  msgid "General"
1028
  msgstr ""
1029
 
1030
- #: ../inc/support.php:63
1031
  msgid ""
1032
  "I changed my custom post type name and now I can not get to my posts. How do "
1033
  "I get them back?"
1034
  msgstr ""
1035
 
1036
- #: ../inc/support.php:64
1037
  msgid ""
1038
  "You can either change the custom post type name back to the original name or "
1039
  "try the Post Type Switcher plugin"
1040
  msgstr ""
1041
 
1042
- #: ../inc/support.php:69
1043
  msgid ""
1044
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1045
  "shown. How do I remove the duplicate?"
1046
  msgstr ""
1047
 
1048
- #: ../inc/support.php:70
1049
  msgid ""
1050
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1051
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1053,37 +1120,37 @@ msgid ""
1053
  "delete the previous version's entry."
1054
  msgstr ""
1055
 
1056
- #: ../inc/support.php:73
1057
  msgid ""
1058
  "I have added post thumbnail and/or post format support to my post type, but "
1059
  "those do not appear when adding a post type post."
1060
  msgstr ""
1061
 
1062
- #: ../inc/support.php:74
1063
  msgid ""
1064
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1065
  msgstr ""
1066
 
1067
- #: ../inc/support.php:79
1068
  msgid "Front-end Display"
1069
  msgstr ""
1070
 
1071
- #: ../inc/support.php:82
1072
  msgid "What template files should I edit to alter my post type display?"
1073
  msgstr ""
1074
 
1075
- #: ../inc/support.php:83
1076
  #, php-format
1077
  msgid ""
1078
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1079
  "details about available templates."
1080
  msgstr ""
1081
 
1082
- #: ../inc/support.php:90
1083
  msgid "How do I display my custom post type on my site?"
1084
  msgstr ""
1085
 
1086
- #: ../inc/support.php:91
1087
  #, php-format
1088
  msgid ""
1089
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1091,13 +1158,13 @@ msgid ""
1091
  "should be something like \"http://www.mysite.com/post-type-slug\""
1092
  msgstr ""
1093
 
1094
- #: ../inc/support.php:97
1095
  msgid ""
1096
  "I have added categories and tags to my custom post type, but they do not "
1097
  "appear in the archives."
1098
  msgstr ""
1099
 
1100
- #: ../inc/support.php:98
1101
  #, php-format
1102
  msgid ""
1103
  "You will need to add your newly created post type to the types that the "
@@ -1105,336 +1172,384 @@ msgid ""
1105
  "that at %s"
1106
  msgstr ""
1107
 
1108
- #: ../inc/support.php:107
1109
  msgid "Advanced"
1110
  msgstr ""
1111
 
1112
- #: ../inc/support.php:110
1113
  msgid "How do I add custom metaboxes to my post type?"
1114
  msgstr ""
1115
 
1116
- #: ../inc/support.php:112
1117
  #, php-format
1118
  msgid ""
1119
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1120
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1121
  msgstr ""
1122
 
1123
- #: ../inc/support.php:118
1124
  msgid ""
1125
  "How do I add a newly registered taxonomy to a post type that already exists?"
1126
  msgstr ""
1127
 
1128
- #: ../inc/support.php:120
1129
  #, php-format
1130
  msgid "Check out the %s function for documentation and usage examples."
1131
  msgstr ""
1132
 
1133
- #: ../inc/support.php:126
1134
  #, fuzzy
1135
  msgid "Post relationships?"
1136
  msgstr "附属到文章类型"
1137
 
1138
- #: ../inc/support.php:127
1139
  #, php-format
1140
  msgid ""
1141
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1142
  "plugin that should be a good start."
1143
  msgstr ""
1144
 
1145
- #: ../inc/support.php:136
 
 
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "How do I filter the \"enter title here\" text in the post editor screen?"
1148
  msgstr ""
1149
 
1150
- #: ../inc/support.php:137
1151
  msgid ""
1152
  "Change text inside the post/page editor title field. Should be able to adapt "
1153
  "as necessary."
1154
  msgstr ""
1155
 
1156
- #: ../inc/taxonomies.php:87
1157
  msgid ""
1158
- "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1159
- "Changing that value registers a new taxonomy entry for your install."
1160
  msgstr ""
1161
 
1162
- #: ../inc/taxonomies.php:109
1163
  #, fuzzy
1164
  msgid "Taxonomy Slug"
1165
  msgstr "类别名称"
1166
 
1167
- #: ../inc/taxonomies.php:110
1168
- msgid "(e.g. actors)"
1169
- msgstr ""
 
1170
 
1171
- #: ../inc/taxonomies.php:111
1172
  msgid ""
1173
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1174
  "and unique"
1175
  msgstr ""
1176
 
1177
- #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1178
  msgid "(e.g. Actors)"
1179
  msgstr ""
1180
 
1181
- #: ../inc/taxonomies.php:121
1182
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1183
  msgstr ""
1184
 
1185
- #: ../inc/taxonomies.php:128
1186
  msgid "(e.g. Actor)"
1187
  msgstr ""
1188
 
1189
- #: ../inc/taxonomies.php:130
1190
  msgid ""
1191
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1192
  msgstr ""
1193
 
1194
- #: ../inc/taxonomies.php:133
1195
  msgid "Attach to Post Type"
1196
  msgstr "附属到文章类型"
1197
 
1198
- #: ../inc/taxonomies.php:172
1199
  #, fuzzy
1200
- msgid "Edit Taxonomy"
1201
- msgstr "编辑自定义类别"
1202
 
1203
- #: ../inc/taxonomies.php:173
1204
  #, fuzzy
1205
  msgid "Delete Taxonomy"
1206
  msgstr "创建自定义类别"
1207
 
1208
- #: ../inc/taxonomies.php:175
1209
  #, fuzzy
1210
  msgid "Add Taxonomy"
1211
  msgstr "类别名称"
1212
 
1213
- #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1214
- #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1215
- #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1216
- #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1217
- #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1218
- #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1219
- #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1220
- #: ../inc/taxonomies.php:321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1221
  msgid ""
1222
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1223
  msgstr ""
1224
 
1225
- #: ../inc/taxonomies.php:202
1226
  msgid "(e.g. All Actors)"
1227
  msgstr ""
1228
 
1229
- #: ../inc/taxonomies.php:211
1230
  msgid "(e.g. Edit Actor)"
1231
  msgstr ""
1232
 
1233
- #: ../inc/taxonomies.php:220
1234
  msgid "(e.g. View Actor)"
1235
  msgstr ""
1236
 
1237
- #: ../inc/taxonomies.php:229
1238
  msgid "(e.g. Update Actor Name)"
1239
  msgstr ""
1240
 
1241
- #: ../inc/taxonomies.php:230
1242
  #, fuzzy
1243
  msgid "Update Item Name"
1244
  msgstr "更新条目"
1245
 
1246
- #: ../inc/taxonomies.php:238
1247
  msgid "(e.g. Add New Actor)"
1248
  msgstr ""
1249
 
1250
- #: ../inc/taxonomies.php:247
1251
  msgid "(e.g. New Actor Name)"
1252
  msgstr ""
1253
 
1254
- #: ../inc/taxonomies.php:248
1255
  msgid "New Item Name"
1256
  msgstr "新条目名称"
1257
 
1258
- #: ../inc/taxonomies.php:256
1259
  msgid "(e.g. Parent Actor)"
1260
  msgstr ""
1261
 
1262
- #: ../inc/taxonomies.php:257
1263
  msgid "Parent Item"
1264
  msgstr "上级条目"
1265
 
1266
- #: ../inc/taxonomies.php:265
1267
  msgid "(e.g. Parent Actor:)"
1268
  msgstr ""
1269
 
1270
- #: ../inc/taxonomies.php:266
1271
  msgid "Parent Item Colon"
1272
  msgstr "上级条目:"
1273
 
1274
- #: ../inc/taxonomies.php:274
1275
  msgid "(e.g. Search Actors)"
1276
  msgstr ""
1277
 
1278
- #: ../inc/taxonomies.php:275
1279
  msgid "Search Items"
1280
  msgstr "搜索条目"
1281
 
1282
- #: ../inc/taxonomies.php:283
1283
  msgid "(e.g. Popular Actors)"
1284
  msgstr ""
1285
 
1286
- #: ../inc/taxonomies.php:284
1287
  msgid "Popular Items"
1288
  msgstr "热门条目"
1289
 
1290
- #: ../inc/taxonomies.php:292
1291
  #, fuzzy
1292
  msgid "(e.g. Separate actors with commas)"
1293
  msgstr "使用英文逗号隔开多个标签条目"
1294
 
1295
- #: ../inc/taxonomies.php:293
1296
  msgid "Separate Items with Commas"
1297
  msgstr "使用英文逗号隔开多个标签条目"
1298
 
1299
- #: ../inc/taxonomies.php:301
1300
  #, fuzzy
1301
  msgid "(e.g. Add or remove actors)"
1302
  msgstr "添加或删除条目"
1303
 
1304
- #: ../inc/taxonomies.php:302
1305
  msgid "Add or Remove Items"
1306
  msgstr "添加或删除条目"
1307
 
1308
- #: ../inc/taxonomies.php:310
1309
  #, fuzzy
1310
  msgid "(e.g. Choose from the most used actors)"
1311
  msgstr "使用次数最多"
1312
 
1313
- #: ../inc/taxonomies.php:311
1314
  msgid "Choose From Most Used"
1315
  msgstr "使用次数最多"
1316
 
1317
- #: ../inc/taxonomies.php:319
1318
  msgid "(e.g. No actors found)"
1319
  msgstr ""
1320
 
1321
- #: ../inc/taxonomies.php:320
1322
  #, fuzzy
1323
  msgid "Not found"
1324
  msgstr "未找到"
1325
 
1326
- #: ../inc/taxonomies.php:343
1327
  msgid "Whether the taxonomy can have parent-child relationships"
1328
  msgstr ""
1329
 
1330
- #: ../inc/taxonomies.php:360
1331
- msgid "Whether to generate a default UI for managing this custom taxonomy"
1332
  msgstr ""
1333
 
1334
- #: ../inc/taxonomies.php:384
 
 
 
 
1335
  msgid "(default: none). Query Var needs to be true to use."
1336
  msgstr ""
1337
 
1338
- #: ../inc/taxonomies.php:385
1339
  msgid "Custom Query Var String"
1340
  msgstr ""
1341
 
1342
- #: ../inc/taxonomies.php:386
1343
- #, fuzzy
1344
- msgid "Custom Query Var Slug"
1345
- msgstr "自定义重写缩略名"
1346
 
1347
- #: ../inc/taxonomies.php:402
1348
- msgid "Triggers the handling of rewrites for this taxonomy"
1349
  msgstr ""
1350
 
1351
- #: ../inc/taxonomies.php:410
1352
  #, fuzzy
1353
  msgid "(default: taxonomy name)"
1354
  msgstr "新条目名称"
1355
 
1356
- #: ../inc/taxonomies.php:412
1357
  #, fuzzy
1358
- msgid "Custom Taxonomy Rewrite Slug"
1359
  msgstr "自定义重写缩略名"
1360
 
1361
- #: ../inc/taxonomies.php:426
1362
  msgid "Rewrite With Front"
1363
  msgstr ""
1364
 
1365
- #: ../inc/taxonomies.php:427
1366
  msgid "(default: true)"
1367
  msgstr ""
1368
 
1369
- #: ../inc/taxonomies.php:443
1370
  #, fuzzy
1371
  msgid "Rewrite Hierarchical"
1372
  msgstr "层级"
1373
 
1374
- #: ../inc/taxonomies.php:444
1375
  msgid "(default: false)"
1376
  msgstr ""
1377
 
1378
- #: ../inc/taxonomies.php:445
1379
  msgid "Should the permastruct allow hierarchical urls."
1380
  msgstr ""
1381
 
1382
- #: ../inc/taxonomies.php:460
1383
  msgid "Show Admin Column"
1384
  msgstr ""
1385
 
1386
- #: ../inc/taxonomies.php:462
1387
  msgid ""
1388
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1389
  "types."
1390
  msgstr ""
1391
 
1392
- #: ../inc/taxonomies.php:473
1393
- #, php-format
1394
- msgid ""
1395
- "Taxonomy names should have %smax 32 characters%s, and only contain "
1396
- "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1397
- "letters that do not have accents."
1398
  msgstr ""
1399
 
1400
- #: ../inc/taxonomies.php:474
 
 
 
 
 
 
 
 
1401
  #, php-format
1402
- msgid ""
1403
- "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1404
- "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1405
- "settings will use default values. Labels, if left blank, will be "
1406
- "automatically created based on the taxonomy name. Hover over the question "
1407
- "marks for more details."
1408
  msgstr ""
1409
 
1410
- #: ../inc/taxonomies.php:475
1411
- #, fuzzy, php-format
1412
- msgid ""
1413
- "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1414
- "taxonomies. You can recreate your taxonomies and the terms will return. "
1415
- "Changing the name, after adding terms to the taxonomy, will not update the "
1416
- "terms in the database."
1417
  msgstr ""
1418
- "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1419
- "的重新创建您的类别,并且这些内容依旧存在。"
1420
 
1421
- #: ../inc/taxonomies.php:564
1422
- msgid "Please provide a taxonomy to delete"
1423
  msgstr ""
1424
 
1425
- #: ../inc/taxonomies.php:615
1426
- msgid "Please provide a taxonomy name"
 
1427
  msgstr ""
1428
 
1429
- #: ../inc/taxonomies.php:631
1430
- msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1431
  msgstr ""
1432
 
1433
- #: ../inc/taxonomies.php:637
1434
- #, php-format
1435
- msgid "Please choose a different taxonomy name. %s is already used."
1436
  msgstr ""
1437
 
 
 
 
 
 
 
 
 
 
 
 
 
1438
  #, fuzzy
1439
  #~ msgid "Show In Menu"
1440
  #~ msgstr "显示用户界面"
@@ -1448,9 +1563,6 @@ msgstr ""
1448
  #~ msgid "Slightly Outdated Demo Video"
1449
  #~ msgstr "早期制作的演示视频"
1450
 
1451
- #~ msgid "Custom post type deleted successfully"
1452
- #~ msgstr "自定义文章类型被成功删除"
1453
-
1454
  #~ msgid "Action"
1455
  #~ msgstr "操作"
1456
 
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 21:15-0600\n"
6
+ "PO-Revision-Date: 2015-06-12 21:15-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
13
  "X-Poedit-KeywordsList: \n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.8.1\n"
17
 
18
+ #: custom-post-type-ui.php:60
19
  #, fuzzy
20
  msgid "Custom Post Types"
21
  msgstr "附属到文章类型"
22
 
23
+ #: custom-post-type-ui.php:60
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: custom-post-type-ui.php:61
28
+ #, fuzzy
29
+ msgid "Add/Edit Post Types"
30
+ msgstr "编辑自定义文章类型"
31
+
32
+ #: custom-post-type-ui.php:62
33
+ #, fuzzy
34
+ msgid "Add/Edit Taxonomies"
35
+ msgstr "内置类别"
36
+
37
+ #: custom-post-type-ui.php:63
38
+ msgid "Registered Types and Taxes"
39
+ msgstr ""
40
+
41
+ #: custom-post-type-ui.php:63
42
+ msgid "Registered Types/Taxes"
43
+ msgstr ""
44
+
45
+ #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
46
+ msgid "Import/Export"
47
+ msgstr ""
48
+
49
+ #: custom-post-type-ui.php:65
50
+ #, fuzzy
51
+ msgid "Help/Support"
52
+ msgstr "支持"
53
+
54
+ #: custom-post-type-ui.php:69
55
+ msgid "About CPT UI"
56
+ msgstr ""
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
60
  #, fuzzy
61
  msgid "Custom Post Type UI"
62
  msgstr "附属到文章类型"
63
 
64
+ #: custom-post-type-ui.php:342
65
  msgid ""
66
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
67
  "with our plugin provides efficiency and speed in creating post types and "
68
  "taxonomies, to better organize your content, without having to touch code."
69
  msgstr ""
70
 
71
+ #: custom-post-type-ui.php:348
72
+ #, fuzzy
73
+ msgid "Post type migration"
74
+ msgstr "文章类型名称"
75
+
76
+ #: custom-post-type-ui.php:349
77
  msgid ""
78
+ "In the past, if you changed your post type slug, you would lose immediate "
79
+ "access to the posts in the post type and need to recover another way. We "
80
+ "have now added support for migrating all posts within the old post type to "
81
+ "the new post type you renamed it to."
82
  msgstr ""
83
 
84
+ #: custom-post-type-ui.php:352
85
+ msgid "UI Refinement"
86
+ msgstr ""
 
87
 
88
+ #: custom-post-type-ui.php:353
89
+ msgid ""
90
+ "After receiving feedback regarding the 1.0.x changes, we have further "
91
+ "simplified the UI to reduce the amount of clicking necessary to manage your "
92
+ "post types and taxonomies."
93
+ msgstr ""
94
 
95
+ #: custom-post-type-ui.php:356
96
+ msgid "Registered Post Type and Taxonomy Listings"
97
+ msgstr ""
 
98
 
99
+ #: custom-post-type-ui.php:357
100
+ msgid ""
101
+ "We are bringing back the listing of all CPTUI-registered post types and "
102
+ "taxonomies for easier quick view of what you have going."
103
  msgstr ""
104
 
105
+ #: custom-post-type-ui.php:362
106
  msgid "Help Support This Plugin!"
107
  msgstr ""
108
 
109
+ #: custom-post-type-ui.php:366
110
  msgid "Professional WordPress<br />Third Edition"
111
  msgstr ""
112
 
113
+ #: custom-post-type-ui.php:371
114
  msgid ""
115
  "The leading book on WordPress design and development! Brand new third "
116
  "edition!"
117
  msgstr ""
118
 
119
+ #: custom-post-type-ui.php:374
120
  msgid "Professional WordPress<br />Plugin Development"
121
  msgstr ""
122
 
123
+ #: custom-post-type-ui.php:379
124
  msgid "Highest rated WordPress development book on Amazon!"
125
  msgstr ""
126
 
127
+ #: custom-post-type-ui.php:382
128
  msgid "PayPal Donation"
129
  msgstr ""
130
 
131
+ #: custom-post-type-ui.php:386
132
+ msgid "PayPal - The safer, easier way to pay online!"
133
  msgstr ""
134
 
135
+ #: custom-post-type-ui.php:389
136
+ msgid "Please donate to the development of Custom Post Type UI:"
137
  msgstr ""
138
 
139
+ #: custom-post-type-ui.php:415
140
  #, php-format
141
+ msgid "%s version %s by %s"
142
  msgstr ""
143
 
144
+ #: custom-post-type-ui.php:426
145
  msgid "Please Report Bugs"
146
  msgstr ""
147
 
148
+ #: custom-post-type-ui.php:429
149
  msgid "Follow on Twitter:"
150
  msgstr ""
151
 
152
+ #: custom-post-type-ui.php:493
 
 
 
 
153
  #, fuzzy
154
  msgid "Manage Taxonomies"
155
  msgstr "管理自定义类别"
156
 
157
+ #: custom-post-type-ui.php:497
158
  #, fuzzy
159
  msgid "Manage Post Types"
160
  msgstr "管理自定义文章类型"
161
 
162
+ #: custom-post-type-ui.php:523
163
  #, fuzzy
164
  msgid "Add New Post Type"
165
  msgstr "已附属文章类型"
166
 
167
+ #: custom-post-type-ui.php:526
168
  #, fuzzy
169
  msgid "Edit Post Types"
170
  msgstr "编辑自定义文章类型"
171
 
172
+ #: custom-post-type-ui.php:530
173
  #, fuzzy
174
  msgid "Add New Taxonomy"
175
  msgstr "类别名称"
176
 
177
+ #: custom-post-type-ui.php:533
178
  #, fuzzy
179
  msgid "Edit Taxonomies"
180
  msgstr "内置类别"
181
 
182
+ #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
183
+ #: inc/listings.php:224
184
  #, fuzzy
185
  msgid "Post Types"
186
  msgstr "文章类型名称"
187
 
188
+ #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
189
+ #: inc/listings.php:122 inc/listings.php:132
190
  #, fuzzy
191
  msgid "Taxonomies"
192
  msgstr "内置类别"
193
 
194
+ #: custom-post-type-ui.php:539
195
  msgid "Get Code"
196
  msgstr ""
197
 
198
+ #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
199
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:373
200
+ #: inc/taxonomies.php:338
201
  msgid "Settings"
202
  msgstr ""
203
 
204
+ #: custom-post-type-ui.php:622
205
  msgid "Help"
206
  msgstr ""
207
 
208
+ #: custom-post-type-ui.php:650
209
  #, php-format
210
  msgid "%s has been successfully added"
211
  msgstr ""
212
 
213
+ #: custom-post-type-ui.php:652
214
  #, php-format
215
  msgid "%s has failed to be added"
216
  msgstr ""
217
 
218
+ #: custom-post-type-ui.php:656
219
  #, php-format
220
  msgid "%s has been successfully updated"
221
  msgstr ""
222
 
223
+ #: custom-post-type-ui.php:658
224
  #, php-format
225
  msgid "%s has failed to be updated"
226
  msgstr ""
227
 
228
+ #: custom-post-type-ui.php:662
229
  #, php-format
230
  msgid "%s has been successfully deleted"
231
  msgstr ""
232
 
233
+ #: custom-post-type-ui.php:664
234
  #, php-format
235
  msgid "%s has failed to be deleted"
236
  msgstr ""
237
 
238
+ #: custom-post-type-ui.php:668
239
  #, php-format
240
  msgid "%s has been successfully imported"
241
  msgstr ""
242
 
243
+ #: custom-post-type-ui.php:670
244
  #, php-format
245
  msgid "%s has failed to be imported"
246
  msgstr ""
247
 
248
+ #: custom-post-type-ui.php:753 custom-post-type-ui.php:770
249
  #, fuzzy, php-format
250
  msgid "Add new %s"
251
  msgstr "添加"
252
 
253
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:768
254
  #, fuzzy, php-format
255
  msgid "Edit %s"
256
  msgstr "编辑"
257
 
258
+ #: custom-post-type-ui.php:755
259
  #, php-format
260
  msgid "New %s"
261
  msgstr ""
262
 
263
+ #: custom-post-type-ui.php:756
264
  #, fuzzy, php-format
265
  msgid "View %s"
266
  msgstr "查看"
267
 
268
+ #: custom-post-type-ui.php:757 custom-post-type-ui.php:765
269
  #, fuzzy, php-format
270
  msgid "All %s"
271
  msgstr "所有条目"
272
 
273
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:763
274
  #, fuzzy, php-format
275
  msgid "Search %s"
276
  msgstr "搜索条目"
277
 
278
+ #: custom-post-type-ui.php:759
279
  #, fuzzy, php-format
280
  msgid "No %s found."
281
  msgstr "未找到"
282
 
283
+ #: custom-post-type-ui.php:760
284
  #, fuzzy, php-format
285
  msgid "No %s found in trash."
286
  msgstr "在回收站中没有找到"
287
 
288
+ #: custom-post-type-ui.php:764
289
  #, fuzzy, php-format
290
  msgid "Popular %s"
291
  msgstr "热门条目"
292
 
293
+ #: custom-post-type-ui.php:766
294
  #, fuzzy, php-format
295
  msgid "Parent %s"
296
  msgstr "上级"
297
 
298
+ #: custom-post-type-ui.php:767
299
  #, fuzzy, php-format
300
  msgid "Parent %s:"
301
  msgstr "上级"
302
 
303
+ #: custom-post-type-ui.php:769
304
  #, php-format
305
  msgid "Update %s"
306
  msgstr ""
307
 
308
+ #: custom-post-type-ui.php:771
309
  #, fuzzy, php-format
310
  msgid "New %s name"
311
  msgstr "新条目名称"
312
 
313
+ #: custom-post-type-ui.php:772
314
  #, fuzzy, php-format
315
  msgid "Separate %s with commas"
316
  msgstr "使用英文逗号隔开多个标签条目"
317
 
318
+ #: custom-post-type-ui.php:773
319
  #, fuzzy, php-format
320
  msgid "Add or remove %s"
321
  msgstr "添加或删除条目"
322
 
323
+ #: custom-post-type-ui.php:774
324
  #, fuzzy, php-format
325
  msgid "Choose from the most used %s"
326
  msgstr "使用次数最多"
327
 
328
+ #: inc/import_export.php:42
329
  msgid ""
330
  "If you are wanting to migrate registered post types or taxonomies from this "
331
  "site to another, that will also use Custom Post Type UI, use the import and "
333
  "the information in the \"Get Code\" tab."
334
  msgstr ""
335
 
336
+ #: inc/import_export.php:45
337
  msgid "NOTE"
338
  msgstr ""
339
 
340
+ #: inc/import_export.php:46
341
  msgid "This will not export the associated posts, just the settings."
342
  msgstr ""
343
 
344
+ #: inc/import_export.php:53
345
  #, fuzzy
346
  msgid "Import Post Types"
347
  msgstr "已附属文章类型"
348
 
349
+ #: inc/import_export.php:55 inc/import_export.php:80
350
  #, fuzzy
351
  msgid "Paste content here."
352
  msgstr "特色内容"
353
 
354
+ #: inc/import_export.php:56 inc/import_export.php:81
355
  msgid "Note:"
356
  msgstr ""
357
 
358
+ #: inc/import_export.php:56 inc/import_export.php:81
359
  msgid "Importing will overwrite previous registered settings."
360
  msgstr ""
361
 
362
+ #: inc/import_export.php:57
363
  msgid ""
364
  "To import post types from a different WordPress site, paste the exported "
365
  "content from that site and click the \"Import\" button."
366
  msgstr ""
367
 
368
+ #: inc/import_export.php:58 inc/import_export.php:83
369
  msgid "Import"
370
  msgstr ""
371
 
372
+ #: inc/import_export.php:62
373
  #, fuzzy
374
  msgid "Export Post Types"
375
  msgstr "已附属文章类型"
376
 
377
+ #: inc/import_export.php:68
378
  msgid "No post types registered yet."
379
  msgstr ""
380
 
381
+ #: inc/import_export.php:71 inc/import_export.php:96
382
  msgid ""
383
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
384
  "(Mac)."
385
  msgstr ""
386
 
387
+ #: inc/import_export.php:72
388
  msgid ""
389
  "Use the content above to import current post types into a different "
390
  "WordPress site. You can also use this to simply back up your post type "
391
  "settings."
392
  msgstr ""
393
 
394
+ #: inc/import_export.php:78
395
  #, fuzzy
396
  msgid "Import Taxonomies"
397
  msgstr "内置类别"
398
 
399
+ #: inc/import_export.php:82
400
  msgid ""
401
  "To import taxonomies from a different WordPress site, paste the exported "
402
  "content from that site and click the \"Import\" button."
403
  msgstr ""
404
 
405
+ #: inc/import_export.php:87
406
  #, fuzzy
407
  msgid "Export Taxonomies"
408
  msgstr "内置类别"
409
 
410
+ #: inc/import_export.php:93
411
  msgid "No taxonomies registered yet."
412
  msgstr ""
413
 
414
+ #: inc/import_export.php:97
415
  msgid ""
416
  "Use the content above to import current taxonomies into a different "
417
  "WordPress site. You can also use this to simply back up your taxonomy "
418
  "settings."
419
  msgstr ""
420
 
421
+ #: inc/import_export.php:105
422
  msgid "Get Post Type and Taxonomy Code"
423
  msgstr ""
424
 
425
+ #: inc/import_export.php:107
426
  #, fuzzy
427
  msgid "All CPT UI Post Types"
428
  msgstr "其它自定义文章类型"
429
 
430
+ #: inc/import_export.php:108 inc/import_export.php:112
431
  msgid "Copy/paste the code below into your functions.php file."
432
  msgstr ""
433
 
434
+ #: inc/import_export.php:111
435
  #, fuzzy
436
  msgid "All CPT UI Taxonomies"
437
  msgstr "内置类别"
438
 
439
+ #: inc/import_export.php:142
440
  msgid "No taxonomies to display at this time"
441
  msgstr ""
442
 
443
+ #: inc/import_export.php:241
444
  msgid "No post types to display at this time"
445
  msgstr ""
446
 
447
+ #: inc/import_export.php:367
448
  #, fuzzy
449
  msgid "Post types"
450
  msgstr "文章类型名称"
451
 
452
+ #: inc/listings.php:10
453
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
454
  msgstr ""
455
 
456
+ #: inc/listings.php:18 inc/listings.php:134
457
+ #, php-format
458
+ msgid "Total count: %d"
459
  msgstr ""
460
 
461
+ #: inc/listings.php:31 inc/listings.php:119
462
  #, fuzzy
463
  msgid "Post Type"
464
  msgstr "附属到文章类型"
465
 
466
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
467
  msgid "Supports"
468
  msgstr "支持"
469
 
470
+ #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
471
+ #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
472
  #, fuzzy
473
  msgid "Labels"
474
  msgstr "标签"
475
 
476
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
477
+ msgid "Edit"
478
+ msgstr "编辑"
479
+
480
+ #: inc/listings.php:75
481
+ msgid "View frontend archive"
482
+ msgstr ""
483
+
484
+ #: inc/listings.php:108 inc/listings.php:211
485
  msgid "No custom labels to display"
486
  msgstr ""
487
 
488
+ #: inc/listings.php:147 inc/listings.php:222
489
  #, fuzzy
490
  msgid "Taxonomy"
491
  msgstr "类别名称"
492
 
493
+ #: inc/post-types.php:30 inc/taxonomies.php:25
494
  msgid "Are you sure you want to delete this?"
495
  msgstr ""
496
 
497
+ #: inc/post-types.php:86
498
  msgid ""
499
+ "DO NOT EDIT the post type slug unless necessary. Changing that value "
500
+ "registers a new post type entry for your install."
501
  msgstr ""
502
 
503
+ #: inc/post-types.php:87
504
+ msgid ""
505
+ "Use appropriate checkbox above save/delete buttons if you wish to change "
506
+ "slugs and update post types for existing posts."
507
  msgstr ""
508
 
509
+ #: inc/post-types.php:88 inc/taxonomies.php:84
510
+ msgid "Select: "
511
+ msgstr ""
512
+
513
+ #: inc/post-types.php:120
514
  #, fuzzy
515
  msgid "Post Type Slug"
516
  msgstr "文章类型名称"
517
 
518
+ #: inc/post-types.php:121
519
  msgid "(e.g. movie)"
520
  msgstr ""
521
 
522
+ #: inc/post-types.php:122
523
  msgid ""
524
  "The post type name. Used to retrieve custom post type content. Should be "
525
  "short and unique"
526
  msgstr ""
527
 
528
+ #: inc/post-types.php:133 inc/taxonomies.php:124
529
  #, fuzzy
530
  msgid "Plural Label"
531
  msgstr "单数标签"
532
 
533
+ #: inc/post-types.php:134
534
  msgid "(e.g. Movies)"
535
  msgstr ""
536
 
537
+ #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
538
+ #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
539
+ #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
540
+ #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
541
+ #: inc/post-types.php:364
 
 
542
  msgid "Post type label. Used in the admin menu for displaying post types."
543
  msgstr ""
544
 
545
+ #: inc/post-types.php:145 inc/taxonomies.php:133
546
  msgid "Singular Label"
547
  msgstr "单数标签"
548
 
549
+ #: inc/post-types.php:146
550
  msgid "(e.g. Movie)"
551
  msgstr ""
552
 
553
+ #: inc/post-types.php:147
554
  msgid ""
555
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
556
  "needed."
557
  msgstr ""
558
 
559
+ #: inc/post-types.php:163
560
  msgid "Description"
561
  msgstr "描述"
562
 
563
+ #: inc/post-types.php:164
564
  msgid ""
565
  "Custom Post Type Description. Describe what your custom post type is used "
566
  "for."
567
  msgstr ""
568
 
569
+ #: inc/post-types.php:176
570
+ msgid "Migrate posts to newly renamed post type?"
571
+ msgstr ""
572
+
573
+ #: inc/post-types.php:177
574
+ msgid "Check this to migrate posts if and when renaming your post type."
575
+ msgstr ""
576
+
577
+ #: inc/post-types.php:186
578
  #, fuzzy
579
+ msgid "Save Post Type"
580
  msgstr "附属到文章类型"
581
 
582
+ #: inc/post-types.php:187
583
  #, fuzzy
584
  msgid "Delete Post Type"
585
  msgstr "已附属文章类型"
586
 
587
+ #: inc/post-types.php:189
588
  #, fuzzy
589
  msgid "Add Post Type"
590
  msgstr "已附属文章类型"
591
 
592
+ #: inc/post-types.php:200 inc/taxonomies.php:185
593
+ msgid "Starter Notes"
594
+ msgstr ""
595
+
596
+ #: inc/post-types.php:203
597
+ #, php-format
598
+ msgid ""
599
+ "Post Type names should have %smax 20 characters%s, and only contain "
600
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
601
+ "letters that do not have accents. Reserved names: post, page, attachment, "
602
+ "revision, nav_menu_item."
603
+ msgstr ""
604
+
605
+ #: inc/post-types.php:204
606
+ #, php-format
607
+ msgid ""
608
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
609
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
610
+ "values. Labels, if left blank, will be automatically created based on the "
611
+ "post type name. Hover over the question mark for more details."
612
  msgstr ""
613
 
614
+ #: inc/post-types.php:205
615
+ #, fuzzy, php-format
616
+ msgid ""
617
+ "Deleting custom post types will %sNOT%s delete any content into the database "
618
+ "or added to those post types. You can easily recreate your post types and "
619
+ "the content will still exist."
620
  msgstr ""
621
+ "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
622
+ "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
623
 
624
+ #: inc/post-types.php:219 inc/taxonomies.php:206
625
  #, fuzzy
626
  msgid "Menu Name"
627
  msgstr "名称"
628
 
629
+ #: inc/post-types.php:220
630
  msgid "Custom menu name for your custom post type."
631
  msgstr ""
632
 
633
+ #: inc/post-types.php:224
634
  msgid "(e.g. My Movies)"
635
  msgstr ""
636
 
637
+ #: inc/post-types.php:231 inc/taxonomies.php:215
638
  msgid "All Items"
639
  msgstr "所有条目"
640
 
641
+ #: inc/post-types.php:236
642
  msgid "(e.g. All Movies)"
643
  msgstr ""
644
 
645
+ #: inc/post-types.php:243
646
  msgid "Add New"
647
  msgstr "添加"
648
 
649
+ #: inc/post-types.php:248
650
  #, fuzzy
651
  msgid "(e.g. Add New)"
652
  msgstr "添加"
653
 
654
+ #: inc/post-types.php:255 inc/taxonomies.php:251
655
  msgid "Add New Item"
656
  msgstr "添加新条目"
657
 
658
+ #: inc/post-types.php:260
659
  msgid "(e.g. Add New Movie)"
660
  msgstr ""
661
 
662
+ #: inc/post-types.php:272
 
 
 
 
663
  msgid "(e.g. Edit)"
664
  msgstr ""
665
 
666
+ #: inc/post-types.php:279 inc/taxonomies.php:224
667
  msgid "Edit Item"
668
  msgstr "编辑条目"
669
 
670
+ #: inc/post-types.php:284
671
  msgid "(e.g. Edit Movie)"
672
  msgstr ""
673
 
674
+ #: inc/post-types.php:291
675
  msgid "New Item"
676
  msgstr "新条目"
677
 
678
+ #: inc/post-types.php:296
679
  #, fuzzy
680
  msgid "(e.g. New Movie)"
681
  msgstr "添加新条目"
682
 
683
+ #: inc/post-types.php:303
684
  msgid "View"
685
  msgstr "查看"
686
 
687
+ #: inc/post-types.php:308
688
  msgid "(e.g. View)"
689
  msgstr ""
690
 
691
+ #: inc/post-types.php:315 inc/taxonomies.php:233
692
  msgid "View Item"
693
  msgstr "查看条目"
694
 
695
+ #: inc/post-types.php:320
696
  msgid "(e.g. View Movie)"
697
  msgstr ""
698
 
699
+ #: inc/post-types.php:327
700
  #, fuzzy
701
  msgid "Search Item"
702
  msgstr "搜索条目"
703
 
704
+ #: inc/post-types.php:332
705
  msgid "(e.g. Search Movie)"
706
  msgstr ""
707
 
708
+ #: inc/post-types.php:339
709
  msgid "Not Found"
710
  msgstr "未找到"
711
 
712
+ #: inc/post-types.php:344
713
  msgid "(e.g. No Movies found)"
714
  msgstr ""
715
 
716
+ #: inc/post-types.php:351
717
  msgid "Not Found in Trash"
718
  msgstr "在回收站中没有找到"
719
 
720
+ #: inc/post-types.php:356
721
  #, fuzzy
722
  msgid "(e.g. No Movies found in Trash)"
723
  msgstr "在回收站中没有找到"
724
 
725
+ #: inc/post-types.php:363
726
  msgid "Parent"
727
  msgstr "上级"
728
 
729
+ #: inc/post-types.php:368
730
  msgid "(e.g. Parent Movie)"
731
  msgstr ""
732
 
733
+ #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
734
+ #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
735
+ #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
736
+ #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
737
+ #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
738
+ #: inc/taxonomies.php:464 tests/CPTUI-Admin-UI-Inputs-Test.php:105
739
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
740
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
741
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
742
  msgid "False"
743
  msgstr ""
744
 
745
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
746
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
747
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
748
+ #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
749
+ #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
750
+ #: inc/taxonomies.php:465 tests/CPTUI-Admin-UI-Inputs-Test.php:106
751
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
752
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
753
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
754
  msgid "True"
755
  msgstr ""
756
 
757
+ #: inc/post-types.php:391 tests/CPTUI-Admin-UI-Inputs-Test.php:114
758
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
759
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
760
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
761
  msgid "Public"
762
  msgstr "公开"
763
 
764
+ #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
765
+ #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
766
+ #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
767
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
768
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
769
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
770
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:242
771
  msgid "(default: True)"
772
  msgstr ""
773
 
774
+ #: inc/post-types.php:393
775
+ msgid ""
776
+ "Whether posts of this type should be shown in the admin UI and is publicly "
777
+ "queryable."
778
  msgstr ""
779
 
780
+ #: inc/post-types.php:411 inc/taxonomies.php:370
781
  msgid "Show UI"
782
  msgstr "显示用户界面"
783
 
784
+ #: inc/post-types.php:413
785
  msgid "Whether to generate a default UI for managing this post type."
786
  msgstr ""
787
 
788
+ #: inc/post-types.php:421
789
  msgid "Has Archive"
790
  msgstr ""
791
 
792
+ #: inc/post-types.php:422
793
+ msgid "Whether the post type will have a post type archive URL."
794
  msgstr ""
795
 
796
+ #: inc/post-types.php:423
797
  msgid "If left blank, the archive slug will default to the post type slug."
798
  msgstr ""
799
 
800
+ #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
801
+ #: inc/taxonomies.php:354 inc/taxonomies.php:474
 
802
  msgid "(default: False)"
803
  msgstr ""
804
 
805
+ #: inc/post-types.php:449
806
+ msgid "Slug to be used for archive URL."
807
  msgstr ""
808
 
809
+ #: inc/post-types.php:469
810
  msgid "Exclude From Search"
811
  msgstr ""
812
 
813
+ #: inc/post-types.php:471
814
+ msgid ""
815
+ "Whether to exclude posts with this post type from front end search results."
816
  msgstr ""
817
 
818
+ #: inc/post-types.php:482
819
  msgid "Capability Type"
820
  msgstr "权限类型"
821
 
822
+ #: inc/post-types.php:483
823
  msgid "The post type to use for checking read, edit, and delete capabilities"
824
  msgstr ""
825
 
826
+ #: inc/post-types.php:500 inc/taxonomies.php:353
827
  msgid "Hierarchical"
828
  msgstr "层级"
829
 
830
+ #: inc/post-types.php:502
831
  msgid "Whether the post type can have parent-child relationships"
832
  msgstr ""
833
 
834
+ #: inc/post-types.php:520 inc/taxonomies.php:413
835
  msgid "Rewrite"
836
  msgstr "重写"
837
 
838
+ #: inc/post-types.php:522
839
+ msgid "Whether or not WordPress should use rewrites for this post type"
840
  msgstr ""
841
 
842
+ #: inc/post-types.php:533 inc/taxonomies.php:424
843
  msgid "Custom Rewrite Slug"
844
  msgstr "自定义重写缩略名"
845
 
846
+ #: inc/post-types.php:534
847
+ msgid "(default: post type slug)"
848
  msgstr ""
849
 
850
+ #: inc/post-types.php:535
851
+ #, fuzzy
852
+ msgid "Custom post type slug to use instead of the default."
853
+ msgstr "自定义文章类型被成功删除"
854
 
855
+ #: inc/post-types.php:552
856
  msgid "With Front"
857
  msgstr ""
858
 
859
+ #: inc/post-types.php:554 inc/taxonomies.php:441
 
860
  msgid "Should the permastruct be prepended with the front base."
861
  msgstr ""
862
 
863
+ #: inc/post-types.php:572 inc/taxonomies.php:387
864
  msgid "Query Var"
865
  msgstr "查询变量"
866
 
867
+ #: inc/post-types.php:574
868
+ msgid "Sets the query_var key for this post type."
869
+ msgstr ""
870
+
871
+ #: inc/post-types.php:582
872
  msgid "Menu Position"
873
  msgstr "菜单位置"
874
 
875
+ #: inc/post-types.php:583
876
  msgid ""
877
  "The position in the menu order the post type should appear. show_in_menu "
878
  "must be true."
879
  msgstr ""
880
 
881
+ #: inc/post-types.php:584
882
  msgid ""
883
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
884
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
885
  "\" section. Range of 5-100"
886
  msgstr ""
887
 
888
+ #: inc/post-types.php:599
889
  msgid "Show in Menu"
890
  msgstr ""
891
 
892
+ #: inc/post-types.php:600
893
  msgid ""
894
+ "Whether to show the post type in the admin menu and where to show that menu."
 
895
  msgstr ""
896
 
897
+ #: inc/post-types.php:601
898
  msgid ""
899
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
900
  "php\" is indicated for second input, post type will be sub menu of that."
901
  msgstr ""
902
 
903
+ #: inc/post-types.php:627
904
+ msgid "Top-level page file name to make post type a sub-menu of."
905
  msgstr ""
906
 
907
+ #: inc/post-types.php:639
908
  #, fuzzy
909
  msgid "Menu Icon"
910
  msgstr "菜单位置"
911
 
912
+ #: inc/post-types.php:640
913
  msgid "(Full URL for icon or Dashicon class)"
914
  msgstr ""
915
 
916
+ #: inc/post-types.php:641
917
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
918
  msgstr ""
919
 
920
+ #: inc/post-types.php:654
921
  msgid "Title"
922
  msgstr ""
923
 
924
+ #: inc/post-types.php:655
925
  msgid "Adds the title meta box when creating content for this custom post type"
926
  msgstr ""
927
 
928
+ #: inc/post-types.php:669
929
  #, fuzzy
930
  msgid "Editor"
931
  msgstr "编辑"
932
 
933
+ #: inc/post-types.php:670
934
  msgid ""
935
  "Adds the content editor meta box when creating content for this custom post "
936
  "type"
937
  msgstr ""
938
 
939
+ #: inc/post-types.php:684
940
  msgid "Excerpt"
941
  msgstr ""
942
 
943
+ #: inc/post-types.php:685
944
  msgid ""
945
  "Adds the excerpt meta box when creating content for this custom post type"
946
  msgstr ""
947
 
948
+ #: inc/post-types.php:699
949
  msgid "Trackbacks"
950
  msgstr ""
951
 
952
+ #: inc/post-types.php:700
953
  msgid ""
954
  "Adds the trackbacks meta box when creating content for this custom post type"
955
  msgstr ""
956
 
957
+ #: inc/post-types.php:714
958
  #, fuzzy
959
  msgid "Custom Fields"
960
  msgstr "自定义重写缩略名"
961
 
962
+ #: inc/post-types.php:715
963
  msgid ""
964
  "Adds the custom fields meta box when creating content for this custom post "
965
  "type"
966
  msgstr ""
967
 
968
+ #: inc/post-types.php:729
969
  msgid "Comments"
970
  msgstr ""
971
 
972
+ #: inc/post-types.php:730
973
  msgid ""
974
  "Adds the comments meta box when creating content for this custom post type"
975
  msgstr ""
976
 
977
+ #: inc/post-types.php:744
978
  msgid "Revisions"
979
  msgstr ""
980
 
981
+ #: inc/post-types.php:745
982
  msgid ""
983
  "Adds the revisions meta box when creating content for this custom post type"
984
  msgstr ""
985
 
986
+ #: inc/post-types.php:759
987
  msgid "Featured Image"
988
  msgstr ""
989
 
990
+ #: inc/post-types.php:760
991
  msgid ""
992
  "Adds the featured image meta box when creating content for this custom post "
993
  "type"
994
  msgstr ""
995
 
996
+ #: inc/post-types.php:774
997
  msgid "Author"
998
  msgstr ""
999
 
1000
+ #: inc/post-types.php:775
1001
  msgid ""
1002
  "Adds the author meta box when creating content for this custom post type"
1003
  msgstr ""
1004
 
1005
+ #: inc/post-types.php:789
1006
  msgid "Page Attributes"
1007
  msgstr ""
1008
 
1009
+ #: inc/post-types.php:790
1010
  msgid ""
1011
  "Adds the page attribute meta box when creating content for this custom post "
1012
  "type"
1013
  msgstr ""
1014
 
1015
+ #: inc/post-types.php:804
1016
  msgid "Post Formats"
1017
  msgstr ""
1018
 
1019
+ #: inc/post-types.php:805
1020
  msgid "Adds post format support"
1021
  msgstr ""
1022
 
1023
+ #: inc/post-types.php:810
1024
  msgid "Use the option below to explicitly set \"supports\" to false."
1025
  msgstr ""
1026
 
1027
+ #: inc/post-types.php:818
1028
  msgid "None"
1029
  msgstr ""
1030
 
1031
+ #: inc/post-types.php:819
1032
  msgid "Remove all support features"
1033
  msgstr ""
1034
 
1035
+ #: inc/post-types.php:825
1036
+ #, fuzzy
1037
+ msgid "Custom \"Supports\""
1038
+ msgstr "支持"
1039
 
1040
+ #: inc/post-types.php:826
1041
+ msgid ""
1042
+ "Use this input to register custom \"supports\" values, separated by commas."
1043
  msgstr ""
1044
 
1045
+ #: inc/post-types.php:832
1046
+ msgid "Provide custom support slugs here."
1047
  msgstr ""
1048
 
1049
+ #: inc/post-types.php:838
1050
+ msgid "Built-in Taxonomies"
1051
+ msgstr "内置类别"
 
 
 
 
 
1052
 
1053
+ #: inc/post-types.php:867 inc/taxonomies.php:167
1054
  #, php-format
1055
+ msgid "Adds %s support"
 
 
 
 
 
 
 
 
 
 
 
 
1056
  msgstr ""
 
 
1057
 
1058
+ #: inc/post-types.php:966
1059
  msgid "Please provide a post type to delete"
1060
  msgstr ""
1061
 
1062
+ #: inc/post-types.php:1026
1063
  msgid "Please provide a post type name"
1064
  msgstr ""
1065
 
1066
+ #: inc/post-types.php:1050
1067
  msgid "Please do not use quotes in post type names or rewrite slugs"
1068
  msgstr ""
1069
 
1070
+ #: inc/post-types.php:1057
1071
  #, php-format
1072
  msgid "Please choose a different post type name. %s is already registered."
1073
  msgstr ""
1074
 
1075
+ #: inc/support.php:41
1076
  #, fuzzy
1077
  msgid "Custom Post Type UI Support"
1078
  msgstr "Custom Post Types UI"
1079
 
1080
+ #: inc/support.php:43
1081
  #, php-format
1082
  msgid ""
1083
  "Please note that this plugin will NOT handle display of registered post "
1085
  "you. If all else fails, visit us on the %s"
1086
  msgstr ""
1087
 
1088
+ #: inc/support.php:44
1089
  #, fuzzy
1090
  msgid "Support Forums"
1091
  msgstr "支持"
1092
 
1093
+ #: inc/support.php:50
1094
  msgid "General"
1095
  msgstr ""
1096
 
1097
+ #: inc/support.php:53
1098
  msgid ""
1099
  "I changed my custom post type name and now I can not get to my posts. How do "
1100
  "I get them back?"
1101
  msgstr ""
1102
 
1103
+ #: inc/support.php:54
1104
  msgid ""
1105
  "You can either change the custom post type name back to the original name or "
1106
  "try the Post Type Switcher plugin"
1107
  msgstr ""
1108
 
1109
+ #: inc/support.php:59
1110
  msgid ""
1111
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1112
  "shown. How do I remove the duplicate?"
1113
  msgstr ""
1114
 
1115
+ #: inc/support.php:60
1116
  msgid ""
1117
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1118
  "saved option which gets registered as its own post type or taxonomy. Since "
1120
  "delete the previous version's entry."
1121
  msgstr ""
1122
 
1123
+ #: inc/support.php:63
1124
  msgid ""
1125
  "I have added post thumbnail and/or post format support to my post type, but "
1126
  "those do not appear when adding a post type post."
1127
  msgstr ""
1128
 
1129
+ #: inc/support.php:64
1130
  msgid ""
1131
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1132
  msgstr ""
1133
 
1134
+ #: inc/support.php:69
1135
  msgid "Front-end Display"
1136
  msgstr ""
1137
 
1138
+ #: inc/support.php:72
1139
  msgid "What template files should I edit to alter my post type display?"
1140
  msgstr ""
1141
 
1142
+ #: inc/support.php:73
1143
  #, php-format
1144
  msgid ""
1145
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1146
  "details about available templates."
1147
  msgstr ""
1148
 
1149
+ #: inc/support.php:80
1150
  msgid "How do I display my custom post type on my site?"
1151
  msgstr ""
1152
 
1153
+ #: inc/support.php:81
1154
  #, php-format
1155
  msgid ""
1156
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1158
  "should be something like \"http://www.mysite.com/post-type-slug\""
1159
  msgstr ""
1160
 
1161
+ #: inc/support.php:87
1162
  msgid ""
1163
  "I have added categories and tags to my custom post type, but they do not "
1164
  "appear in the archives."
1165
  msgstr ""
1166
 
1167
+ #: inc/support.php:88
1168
  #, php-format
1169
  msgid ""
1170
  "You will need to add your newly created post type to the types that the "
1172
  "that at %s"
1173
  msgstr ""
1174
 
1175
+ #: inc/support.php:97
1176
  msgid "Advanced"
1177
  msgstr ""
1178
 
1179
+ #: inc/support.php:100
1180
  msgid "How do I add custom metaboxes to my post type?"
1181
  msgstr ""
1182
 
1183
+ #: inc/support.php:102
1184
  #, php-format
1185
  msgid ""
1186
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1187
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1188
  msgstr ""
1189
 
1190
+ #: inc/support.php:108
1191
  msgid ""
1192
  "How do I add a newly registered taxonomy to a post type that already exists?"
1193
  msgstr ""
1194
 
1195
+ #: inc/support.php:110
1196
  #, php-format
1197
  msgid "Check out the %s function for documentation and usage examples."
1198
  msgstr ""
1199
 
1200
+ #: inc/support.php:116
1201
  #, fuzzy
1202
  msgid "Post relationships?"
1203
  msgstr "附属到文章类型"
1204
 
1205
+ #: inc/support.php:117
1206
  #, php-format
1207
  msgid ""
1208
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1209
  "plugin that should be a good start."
1210
  msgstr ""
1211
 
1212
+ #: inc/support.php:126
1213
+ msgid "Is there any function reference list?"
1214
+ msgstr ""
1215
+
1216
+ #: inc/support.php:127
1217
+ #, php-format
1218
+ msgid ""
1219
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1220
+ "will be useful as they are attached to hooks."
1221
+ msgstr ""
1222
+
1223
+ #: inc/support.php:131
1224
  msgid ""
1225
  "How do I filter the \"enter title here\" text in the post editor screen?"
1226
  msgstr ""
1227
 
1228
+ #: inc/support.php:132
1229
  msgid ""
1230
  "Change text inside the post/page editor title field. Should be able to adapt "
1231
  "as necessary."
1232
  msgstr ""
1233
 
1234
+ #: inc/taxonomies.php:82
1235
  msgid ""
1236
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1237
+ "registers a new taxonomy entry for your install."
1238
  msgstr ""
1239
 
1240
+ #: inc/taxonomies.php:113
1241
  #, fuzzy
1242
  msgid "Taxonomy Slug"
1243
  msgstr "类别名称"
1244
 
1245
+ #: inc/taxonomies.php:114
1246
+ #, fuzzy
1247
+ msgid "(e.g. actor)"
1248
+ msgstr "添加或删除条目"
1249
 
1250
+ #: inc/taxonomies.php:115
1251
  msgid ""
1252
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1253
  "and unique"
1254
  msgstr ""
1255
 
1256
+ #: inc/taxonomies.php:123 inc/taxonomies.php:205
1257
  msgid "(e.g. Actors)"
1258
  msgstr ""
1259
 
1260
+ #: inc/taxonomies.php:125
1261
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1262
  msgstr ""
1263
 
1264
+ #: inc/taxonomies.php:132
1265
  msgid "(e.g. Actor)"
1266
  msgstr ""
1267
 
1268
+ #: inc/taxonomies.php:134
1269
  msgid ""
1270
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1271
  msgstr ""
1272
 
1273
+ #: inc/taxonomies.php:137
1274
  msgid "Attach to Post Type"
1275
  msgstr "附属到文章类型"
1276
 
1277
+ #: inc/taxonomies.php:176
1278
  #, fuzzy
1279
+ msgid "Save Taxonomy"
1280
+ msgstr "类别名称"
1281
 
1282
+ #: inc/taxonomies.php:177
1283
  #, fuzzy
1284
  msgid "Delete Taxonomy"
1285
  msgstr "创建自定义类别"
1286
 
1287
+ #: inc/taxonomies.php:179
1288
  #, fuzzy
1289
  msgid "Add Taxonomy"
1290
  msgstr "类别名称"
1291
 
1292
+ #: inc/taxonomies.php:188
1293
+ #, php-format
1294
+ msgid ""
1295
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1296
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1297
+ "letters that do not have accents."
1298
+ msgstr ""
1299
+
1300
+ #: inc/taxonomies.php:189
1301
+ #, php-format
1302
+ msgid ""
1303
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1304
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1305
+ "settings will use default values. Labels, if left blank, will be "
1306
+ "automatically created based on the taxonomy name. Hover over the question "
1307
+ "marks for more details."
1308
+ msgstr ""
1309
+
1310
+ #: inc/taxonomies.php:190
1311
+ #, fuzzy, php-format
1312
+ msgid ""
1313
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1314
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1315
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1316
+ "terms in the database."
1317
+ msgstr ""
1318
+ "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1319
+ "的重新创建您的类别,并且这些内容依旧存在。"
1320
+
1321
+ #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1322
+ #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1323
+ #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1324
+ #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1325
+ #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1326
  msgid ""
1327
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1328
  msgstr ""
1329
 
1330
+ #: inc/taxonomies.php:214
1331
  msgid "(e.g. All Actors)"
1332
  msgstr ""
1333
 
1334
+ #: inc/taxonomies.php:223
1335
  msgid "(e.g. Edit Actor)"
1336
  msgstr ""
1337
 
1338
+ #: inc/taxonomies.php:232
1339
  msgid "(e.g. View Actor)"
1340
  msgstr ""
1341
 
1342
+ #: inc/taxonomies.php:241
1343
  msgid "(e.g. Update Actor Name)"
1344
  msgstr ""
1345
 
1346
+ #: inc/taxonomies.php:242
1347
  #, fuzzy
1348
  msgid "Update Item Name"
1349
  msgstr "更新条目"
1350
 
1351
+ #: inc/taxonomies.php:250
1352
  msgid "(e.g. Add New Actor)"
1353
  msgstr ""
1354
 
1355
+ #: inc/taxonomies.php:259
1356
  msgid "(e.g. New Actor Name)"
1357
  msgstr ""
1358
 
1359
+ #: inc/taxonomies.php:260
1360
  msgid "New Item Name"
1361
  msgstr "新条目名称"
1362
 
1363
+ #: inc/taxonomies.php:268
1364
  msgid "(e.g. Parent Actor)"
1365
  msgstr ""
1366
 
1367
+ #: inc/taxonomies.php:269
1368
  msgid "Parent Item"
1369
  msgstr "上级条目"
1370
 
1371
+ #: inc/taxonomies.php:277
1372
  msgid "(e.g. Parent Actor:)"
1373
  msgstr ""
1374
 
1375
+ #: inc/taxonomies.php:278
1376
  msgid "Parent Item Colon"
1377
  msgstr "上级条目:"
1378
 
1379
+ #: inc/taxonomies.php:286
1380
  msgid "(e.g. Search Actors)"
1381
  msgstr ""
1382
 
1383
+ #: inc/taxonomies.php:287
1384
  msgid "Search Items"
1385
  msgstr "搜索条目"
1386
 
1387
+ #: inc/taxonomies.php:295
1388
  msgid "(e.g. Popular Actors)"
1389
  msgstr ""
1390
 
1391
+ #: inc/taxonomies.php:296
1392
  msgid "Popular Items"
1393
  msgstr "热门条目"
1394
 
1395
+ #: inc/taxonomies.php:304
1396
  #, fuzzy
1397
  msgid "(e.g. Separate actors with commas)"
1398
  msgstr "使用英文逗号隔开多个标签条目"
1399
 
1400
+ #: inc/taxonomies.php:305
1401
  msgid "Separate Items with Commas"
1402
  msgstr "使用英文逗号隔开多个标签条目"
1403
 
1404
+ #: inc/taxonomies.php:313
1405
  #, fuzzy
1406
  msgid "(e.g. Add or remove actors)"
1407
  msgstr "添加或删除条目"
1408
 
1409
+ #: inc/taxonomies.php:314
1410
  msgid "Add or Remove Items"
1411
  msgstr "添加或删除条目"
1412
 
1413
+ #: inc/taxonomies.php:322
1414
  #, fuzzy
1415
  msgid "(e.g. Choose from the most used actors)"
1416
  msgstr "使用次数最多"
1417
 
1418
+ #: inc/taxonomies.php:323
1419
  msgid "Choose From Most Used"
1420
  msgstr "使用次数最多"
1421
 
1422
+ #: inc/taxonomies.php:331
1423
  msgid "(e.g. No actors found)"
1424
  msgstr ""
1425
 
1426
+ #: inc/taxonomies.php:332
1427
  #, fuzzy
1428
  msgid "Not found"
1429
  msgstr "未找到"
1430
 
1431
+ #: inc/taxonomies.php:355
1432
  msgid "Whether the taxonomy can have parent-child relationships"
1433
  msgstr ""
1434
 
1435
+ #: inc/taxonomies.php:372
1436
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1437
  msgstr ""
1438
 
1439
+ #: inc/taxonomies.php:389
1440
+ msgid "Sets the query_var key for this taxonomy."
1441
+ msgstr ""
1442
+
1443
+ #: inc/taxonomies.php:397
1444
  msgid "(default: none). Query Var needs to be true to use."
1445
  msgstr ""
1446
 
1447
+ #: inc/taxonomies.php:398
1448
  msgid "Custom Query Var String"
1449
  msgstr ""
1450
 
1451
+ #: inc/taxonomies.php:399
1452
+ msgid "Sets a custom query_var slug for this taxonomy."
1453
+ msgstr ""
 
1454
 
1455
+ #: inc/taxonomies.php:415
1456
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1457
  msgstr ""
1458
 
1459
+ #: inc/taxonomies.php:423
1460
  #, fuzzy
1461
  msgid "(default: taxonomy name)"
1462
  msgstr "新条目名称"
1463
 
1464
+ #: inc/taxonomies.php:425
1465
  #, fuzzy
1466
+ msgid "Custom taxonomy rewrite slug."
1467
  msgstr "自定义重写缩略名"
1468
 
1469
+ #: inc/taxonomies.php:439
1470
  msgid "Rewrite With Front"
1471
  msgstr ""
1472
 
1473
+ #: inc/taxonomies.php:440
1474
  msgid "(default: true)"
1475
  msgstr ""
1476
 
1477
+ #: inc/taxonomies.php:456
1478
  #, fuzzy
1479
  msgid "Rewrite Hierarchical"
1480
  msgstr "层级"
1481
 
1482
+ #: inc/taxonomies.php:457
1483
  msgid "(default: false)"
1484
  msgstr ""
1485
 
1486
+ #: inc/taxonomies.php:458
1487
  msgid "Should the permastruct allow hierarchical urls."
1488
  msgstr ""
1489
 
1490
+ #: inc/taxonomies.php:473
1491
  msgid "Show Admin Column"
1492
  msgstr ""
1493
 
1494
+ #: inc/taxonomies.php:475
1495
  msgid ""
1496
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1497
  "types."
1498
  msgstr ""
1499
 
1500
+ #: inc/taxonomies.php:573
1501
+ msgid "Please provide a taxonomy to delete"
 
 
 
 
1502
  msgstr ""
1503
 
1504
+ #: inc/taxonomies.php:624
1505
+ msgid "Please provide a taxonomy name"
1506
+ msgstr ""
1507
+
1508
+ #: inc/taxonomies.php:640
1509
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1510
+ msgstr ""
1511
+
1512
+ #: inc/taxonomies.php:646
1513
  #, php-format
1514
+ msgid "Please choose a different taxonomy name. %s is already used."
 
 
 
 
 
1515
  msgstr ""
1516
 
1517
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:116
1518
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:158
1519
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:201
1520
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:243
1521
+ msgid "Whether posts of this type should be shown in the admin UI"
 
 
1522
  msgstr ""
 
 
1523
 
1524
+ #. Plugin URI of the plugin/theme
1525
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1526
  msgstr ""
1527
 
1528
+ #. Description of the plugin/theme
1529
+ msgid ""
1530
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1531
  msgstr ""
1532
 
1533
+ #. Author of the plugin/theme
1534
+ msgid "WebDevStudios"
1535
  msgstr ""
1536
 
1537
+ #. Author URI of the plugin/theme
1538
+ msgid "http://webdevstudios.com/"
 
1539
  msgstr ""
1540
 
1541
+ #, fuzzy
1542
+ #~ msgid "Edit Post Type"
1543
+ #~ msgstr "附属到文章类型"
1544
+
1545
+ #, fuzzy
1546
+ #~ msgid "Edit Taxonomy"
1547
+ #~ msgstr "编辑自定义类别"
1548
+
1549
+ #, fuzzy
1550
+ #~ msgid "Custom Query Var Slug"
1551
+ #~ msgstr "自定义重写缩略名"
1552
+
1553
  #, fuzzy
1554
  #~ msgid "Show In Menu"
1555
  #~ msgstr "显示用户界面"
1563
  #~ msgid "Slightly Outdated Demo Video"
1564
  #~ msgstr "早期制作的演示视频"
1565
 
 
 
 
1566
  #~ msgid "Action"
1567
  #~ msgstr "操作"
1568
 
languages/custom-post-type-ui.mo DELETED
Binary file
languages/custom-post-type-ui.pot CHANGED
@@ -1,284 +1,324 @@
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 0.9\n"
4
- "POT-Creation-Date: 2015-04-10 11:47-0600\n"
5
- "PO-Revision-Date: 2015-04-10 11:48-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
- "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
- "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.5\n"
13
- "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
- "esc_html__;esc_html_e;esc_html_x\n"
15
- "X-Poedit-Basepath: .\n"
 
 
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPathExcluded-0: ../tests\n"
19
- "X-Poedit-SearchPathExcluded-1: ../tests/*\n"
 
20
 
21
- #: ../custom-post-type-ui.php:58
22
  msgid "Custom Post Types"
23
  msgstr ""
24
 
25
- #: ../custom-post-type-ui.php:58
26
  msgid "CPT UI"
27
  msgstr ""
28
 
29
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  msgid "Custom Post Type UI"
31
  msgstr ""
32
 
33
- #: ../custom-post-type-ui.php:323
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
- #: ../custom-post-type-ui.php:325
41
- #, php-format
 
 
 
42
  msgid ""
43
- "To get started with creating some post types, please visit %s and for "
44
- "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
45
- "there fits your issue, visit our %s and we will try to get to your question "
46
- "as soon as possible."
47
  msgstr ""
48
 
49
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
50
- msgid "Add/Edit Post Types"
51
  msgstr ""
52
 
53
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
54
- msgid "Add/Edit Taxonomies"
 
 
 
55
  msgstr ""
56
 
57
- #: ../custom-post-type-ui.php:328 ../inc/support.php:30
58
- msgid "Help/Support"
59
  msgstr ""
60
 
61
- #: ../custom-post-type-ui.php:329
62
- msgid "CPT UI Support Forum"
 
 
63
  msgstr ""
64
 
65
- #: ../custom-post-type-ui.php:345
66
  msgid "Help Support This Plugin!"
67
  msgstr ""
68
 
69
- #: ../custom-post-type-ui.php:349
70
  msgid "Professional WordPress<br />Third Edition"
71
  msgstr ""
72
 
73
- #: ../custom-post-type-ui.php:354
74
  msgid ""
75
  "The leading book on WordPress design and development! Brand new third "
76
  "edition!"
77
  msgstr ""
78
 
79
- #: ../custom-post-type-ui.php:357
80
  msgid "Professional WordPress<br />Plugin Development"
81
  msgstr ""
82
 
83
- #: ../custom-post-type-ui.php:362
84
  msgid "Highest rated WordPress development book on Amazon!"
85
  msgstr ""
86
 
87
- #: ../custom-post-type-ui.php:365
88
  msgid "PayPal Donation"
89
  msgstr ""
90
 
91
- #: ../custom-post-type-ui.php:366
92
- msgid "Please donate to the development of Custom Post Type UI:"
93
  msgstr ""
94
 
95
- #: ../custom-post-type-ui.php:370
96
- msgid "PayPal - The safer, easier way to pay online!"
97
  msgstr ""
98
 
99
- #: ../custom-post-type-ui.php:407
100
  #, php-format
101
- msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
102
  msgstr ""
103
 
104
- #: ../custom-post-type-ui.php:416
105
  msgid "Please Report Bugs"
106
  msgstr ""
107
 
108
- #: ../custom-post-type-ui.php:418
109
  msgid "Follow on Twitter:"
110
  msgstr ""
111
 
112
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
113
- msgid "Import/Export"
114
- msgstr ""
115
-
116
- #: ../custom-post-type-ui.php:480
117
  msgid "Manage Taxonomies"
118
  msgstr ""
119
 
120
- #: ../custom-post-type-ui.php:484
121
  msgid "Manage Post Types"
122
  msgstr ""
123
 
124
- #: ../custom-post-type-ui.php:510
125
  msgid "Add New Post Type"
126
  msgstr ""
127
 
128
- #: ../custom-post-type-ui.php:513
129
  msgid "Edit Post Types"
130
  msgstr ""
131
 
132
- #: ../custom-post-type-ui.php:517
133
  msgid "Add New Taxonomy"
134
  msgstr ""
135
 
136
- #: ../custom-post-type-ui.php:520
137
  msgid "Edit Taxonomies"
138
  msgstr ""
139
 
140
- #: ../custom-post-type-ui.php:524
 
141
  msgid "Post Types"
142
  msgstr ""
143
 
144
- #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
 
145
  msgid "Taxonomies"
146
  msgstr ""
147
 
148
- #: ../custom-post-type-ui.php:526
149
  msgid "Get Code"
150
  msgstr ""
151
 
152
- #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
153
- #: ../inc/taxonomies.php:326
 
154
  msgid "Settings"
155
  msgstr ""
156
 
157
- #: ../custom-post-type-ui.php:610
158
  msgid "Help"
159
  msgstr ""
160
 
161
- #: ../custom-post-type-ui.php:638
162
  #, php-format
163
  msgid "%s has been successfully added"
164
  msgstr ""
165
 
166
- #: ../custom-post-type-ui.php:640
167
  #, php-format
168
  msgid "%s has failed to be added"
169
  msgstr ""
170
 
171
- #: ../custom-post-type-ui.php:644
172
  #, php-format
173
  msgid "%s has been successfully updated"
174
  msgstr ""
175
 
176
- #: ../custom-post-type-ui.php:646
177
  #, php-format
178
  msgid "%s has failed to be updated"
179
  msgstr ""
180
 
181
- #: ../custom-post-type-ui.php:650
182
  #, php-format
183
  msgid "%s has been successfully deleted"
184
  msgstr ""
185
 
186
- #: ../custom-post-type-ui.php:652
187
  #, php-format
188
  msgid "%s has failed to be deleted"
189
  msgstr ""
190
 
191
- #: ../custom-post-type-ui.php:656
192
  #, php-format
193
  msgid "%s has been successfully imported"
194
  msgstr ""
195
 
196
- #: ../custom-post-type-ui.php:658
197
  #, php-format
198
  msgid "%s has failed to be imported"
199
  msgstr ""
200
 
201
- #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
202
  #, php-format
203
  msgid "Add new %s"
204
  msgstr ""
205
 
206
- #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
207
  #, php-format
208
  msgid "Edit %s"
209
  msgstr ""
210
 
211
- #: ../custom-post-type-ui.php:743
212
  #, php-format
213
  msgid "New %s"
214
  msgstr ""
215
 
216
- #: ../custom-post-type-ui.php:744
217
  #, php-format
218
  msgid "View %s"
219
  msgstr ""
220
 
221
- #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
222
  #, php-format
223
  msgid "All %s"
224
  msgstr ""
225
 
226
- #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
227
  #, php-format
228
  msgid "Search %s"
229
  msgstr ""
230
 
231
- #: ../custom-post-type-ui.php:747
232
  #, php-format
233
  msgid "No %s found."
234
  msgstr ""
235
 
236
- #: ../custom-post-type-ui.php:748
237
  #, php-format
238
  msgid "No %s found in trash."
239
  msgstr ""
240
 
241
- #: ../custom-post-type-ui.php:752
242
  #, php-format
243
  msgid "Popular %s"
244
  msgstr ""
245
 
246
- #: ../custom-post-type-ui.php:754
247
  #, php-format
248
  msgid "Parent %s"
249
  msgstr ""
250
 
251
- #: ../custom-post-type-ui.php:755
252
  #, php-format
253
  msgid "Parent %s:"
254
  msgstr ""
255
 
256
- #: ../custom-post-type-ui.php:757
257
  #, php-format
258
  msgid "Update %s"
259
  msgstr ""
260
 
261
- #: ../custom-post-type-ui.php:759
262
  #, php-format
263
  msgid "New %s name"
264
  msgstr ""
265
 
266
- #: ../custom-post-type-ui.php:760
267
  #, php-format
268
  msgid "Separate %s with commas"
269
  msgstr ""
270
 
271
- #: ../custom-post-type-ui.php:761
272
  #, php-format
273
  msgid "Add or remove %s"
274
  msgstr ""
275
 
276
- #: ../custom-post-type-ui.php:762
277
  #, php-format
278
  msgid "Choose from the most used %s"
279
  msgstr ""
280
 
281
- #: ../inc/import_export.php:52
282
  msgid ""
283
  "If you are wanting to migrate registered post types or taxonomies from this "
284
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -286,674 +326,722 @@ msgid ""
286
  "the information in the \"Get Code\" tab."
287
  msgstr ""
288
 
289
- #: ../inc/import_export.php:55
290
  msgid "NOTE"
291
  msgstr ""
292
 
293
- #: ../inc/import_export.php:56
294
  msgid "This will not export the associated posts, just the settings."
295
  msgstr ""
296
 
297
- #: ../inc/import_export.php:63
298
  msgid "Import Post Types"
299
  msgstr ""
300
 
301
- #: ../inc/import_export.php:65 ../inc/import_export.php:90
302
  msgid "Paste content here."
303
  msgstr ""
304
 
305
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
306
  msgid "Note:"
307
  msgstr ""
308
 
309
- #: ../inc/import_export.php:66 ../inc/import_export.php:91
310
  msgid "Importing will overwrite previous registered settings."
311
  msgstr ""
312
 
313
- #: ../inc/import_export.php:67
314
  msgid ""
315
  "To import post types from a different WordPress site, paste the exported "
316
  "content from that site and click the \"Import\" button."
317
  msgstr ""
318
 
319
- #: ../inc/import_export.php:68 ../inc/import_export.php:93
320
  msgid "Import"
321
  msgstr ""
322
 
323
- #: ../inc/import_export.php:72
324
  msgid "Export Post Types"
325
  msgstr ""
326
 
327
- #: ../inc/import_export.php:78
328
  msgid "No post types registered yet."
329
  msgstr ""
330
 
331
- #: ../inc/import_export.php:81 ../inc/import_export.php:106
332
  msgid ""
333
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
334
  "(Mac)."
335
  msgstr ""
336
 
337
- #: ../inc/import_export.php:82
338
  msgid ""
339
  "Use the content above to import current post types into a different "
340
  "WordPress site. You can also use this to simply back up your post type "
341
  "settings."
342
  msgstr ""
343
 
344
- #: ../inc/import_export.php:88
345
  msgid "Import Taxonomies"
346
  msgstr ""
347
 
348
- #: ../inc/import_export.php:92
349
  msgid ""
350
  "To import taxonomies from a different WordPress site, paste the exported "
351
  "content from that site and click the \"Import\" button."
352
  msgstr ""
353
 
354
- #: ../inc/import_export.php:97
355
  msgid "Export Taxonomies"
356
  msgstr ""
357
 
358
- #: ../inc/import_export.php:103
359
  msgid "No taxonomies registered yet."
360
  msgstr ""
361
 
362
- #: ../inc/import_export.php:107
363
  msgid ""
364
  "Use the content above to import current taxonomies into a different "
365
  "WordPress site. You can also use this to simply back up your taxonomy "
366
  "settings."
367
  msgstr ""
368
 
369
- #: ../inc/import_export.php:115
370
  msgid "Get Post Type and Taxonomy Code"
371
  msgstr ""
372
 
373
- #: ../inc/import_export.php:117
374
  msgid "All CPT UI Post Types"
375
  msgstr ""
376
 
377
- #: ../inc/import_export.php:118 ../inc/import_export.php:122
378
  msgid "Copy/paste the code below into your functions.php file."
379
  msgstr ""
380
 
381
- #: ../inc/import_export.php:121
382
  msgid "All CPT UI Taxonomies"
383
  msgstr ""
384
 
385
- #: ../inc/import_export.php:152
386
  msgid "No taxonomies to display at this time"
387
  msgstr ""
388
 
389
- #: ../inc/import_export.php:252
390
  msgid "No post types to display at this time"
391
  msgstr ""
392
 
393
- #: ../inc/import_export.php:379
394
  msgid "Post types"
395
  msgstr ""
396
 
397
- #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
  msgid "Are you sure you want to delete this?"
399
  msgstr ""
400
 
401
- #: ../inc/post-types.php:85
 
 
 
 
 
 
402
  msgid ""
403
- "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
404
- "Changing that value registers a new post type entry for your install."
405
  msgstr ""
406
 
407
- #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
408
- msgid "Select"
409
  msgstr ""
410
 
411
- #: ../inc/post-types.php:110
412
  msgid "Post Type Slug"
413
  msgstr ""
414
 
415
- #: ../inc/post-types.php:111
416
  msgid "(e.g. movie)"
417
  msgstr ""
418
 
419
- #: ../inc/post-types.php:112
420
  msgid ""
421
  "The post type name. Used to retrieve custom post type content. Should be "
422
  "short and unique"
423
  msgstr ""
424
 
425
- #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
426
  msgid "Plural Label"
427
  msgstr ""
428
 
429
- #: ../inc/post-types.php:124
430
  msgid "(e.g. Movies)"
431
  msgstr ""
432
 
433
- #: ../inc/post-types.php:125 ../inc/post-types.php:193
434
- #: ../inc/post-types.php:205 ../inc/post-types.php:217
435
- #: ../inc/post-types.php:229 ../inc/post-types.php:241
436
- #: ../inc/post-types.php:253 ../inc/post-types.php:265
437
- #: ../inc/post-types.php:277 ../inc/post-types.php:289
438
- #: ../inc/post-types.php:301 ../inc/post-types.php:313
439
- #: ../inc/post-types.php:325
440
  msgid "Post type label. Used in the admin menu for displaying post types."
441
  msgstr ""
442
 
443
- #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
444
  msgid "Singular Label"
445
  msgstr ""
446
 
447
- #: ../inc/post-types.php:136
448
  msgid "(e.g. Movie)"
449
  msgstr ""
450
 
451
- #: ../inc/post-types.php:137
452
  msgid ""
453
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
454
  "needed."
455
  msgstr ""
456
 
457
- #: ../inc/post-types.php:152
458
  msgid "Description"
459
  msgstr ""
460
 
461
- #: ../inc/post-types.php:153
462
  msgid ""
463
  "Custom Post Type Description. Describe what your custom post type is used "
464
  "for."
465
  msgstr ""
466
 
467
- #: ../inc/post-types.php:160
468
- msgid "Edit Post Type"
469
  msgstr ""
470
 
471
- #: ../inc/post-types.php:161
 
 
 
 
 
 
 
 
472
  msgid "Delete Post Type"
473
  msgstr ""
474
 
475
- #: ../inc/post-types.php:163
476
  msgid "Add Post Type"
477
  msgstr ""
478
 
479
- #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
480
- msgid "Click headings to reveal available options."
 
 
 
 
 
 
 
 
 
481
  msgstr ""
482
 
483
- #: ../inc/post-types.php:172 ../inc/post-types.php:334
484
- #: ../inc/post-types.php:827 ../inc/taxonomies.php:184
485
- #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
486
- msgid "Click to expand"
 
 
 
487
  msgstr ""
488
 
489
- #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
490
- msgid "Labels"
 
 
 
 
491
  msgstr ""
492
 
493
- #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
494
  msgid "Menu Name"
495
  msgstr ""
496
 
497
- #: ../inc/post-types.php:181
498
  msgid "Custom menu name for your custom post type."
499
  msgstr ""
500
 
501
- #: ../inc/post-types.php:185
502
  msgid "(e.g. My Movies)"
503
  msgstr ""
504
 
505
- #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
506
  msgid "All Items"
507
  msgstr ""
508
 
509
- #: ../inc/post-types.php:197
510
  msgid "(e.g. All Movies)"
511
  msgstr ""
512
 
513
- #: ../inc/post-types.php:204
514
  msgid "Add New"
515
  msgstr ""
516
 
517
- #: ../inc/post-types.php:209
518
  msgid "(e.g. Add New)"
519
  msgstr ""
520
 
521
- #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
522
  msgid "Add New Item"
523
  msgstr ""
524
 
525
- #: ../inc/post-types.php:221
526
  msgid "(e.g. Add New Movie)"
527
  msgstr ""
528
 
529
- #: ../inc/post-types.php:228
530
- msgid "Edit"
531
- msgstr ""
532
-
533
- #: ../inc/post-types.php:233
534
  msgid "(e.g. Edit)"
535
  msgstr ""
536
 
537
- #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
538
  msgid "Edit Item"
539
  msgstr ""
540
 
541
- #: ../inc/post-types.php:245
542
  msgid "(e.g. Edit Movie)"
543
  msgstr ""
544
 
545
- #: ../inc/post-types.php:252
546
  msgid "New Item"
547
  msgstr ""
548
 
549
- #: ../inc/post-types.php:257
550
  msgid "(e.g. New Movie)"
551
  msgstr ""
552
 
553
- #: ../inc/post-types.php:264
554
  msgid "View"
555
  msgstr ""
556
 
557
- #: ../inc/post-types.php:269
558
  msgid "(e.g. View)"
559
  msgstr ""
560
 
561
- #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
562
  msgid "View Item"
563
  msgstr ""
564
 
565
- #: ../inc/post-types.php:281
566
  msgid "(e.g. View Movie)"
567
  msgstr ""
568
 
569
- #: ../inc/post-types.php:288
570
  msgid "Search Item"
571
  msgstr ""
572
 
573
- #: ../inc/post-types.php:293
574
  msgid "(e.g. Search Movie)"
575
  msgstr ""
576
 
577
- #: ../inc/post-types.php:300
578
  msgid "Not Found"
579
  msgstr ""
580
 
581
- #: ../inc/post-types.php:305
582
  msgid "(e.g. No Movies found)"
583
  msgstr ""
584
 
585
- #: ../inc/post-types.php:312
586
  msgid "Not Found in Trash"
587
  msgstr ""
588
 
589
- #: ../inc/post-types.php:317
590
  msgid "(e.g. No Movies found in Trash)"
591
  msgstr ""
592
 
593
- #: ../inc/post-types.php:324
594
  msgid "Parent"
595
  msgstr ""
596
 
597
- #: ../inc/post-types.php:329
598
  msgid "(e.g. Parent Movie)"
599
  msgstr ""
600
 
601
- #: ../inc/post-types.php:343 ../inc/post-types.php:363
602
- #: ../inc/post-types.php:389 ../inc/post-types.php:421
603
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
604
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
605
- #: ../inc/post-types.php:569 ../inc/taxonomies.php:332
606
- #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
607
- #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
608
- #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
 
609
  msgid "False"
610
  msgstr ""
611
 
612
- #: ../inc/post-types.php:344 ../inc/post-types.php:364
613
- #: ../inc/post-types.php:390 ../inc/post-types.php:422
614
- #: ../inc/post-types.php:453 ../inc/post-types.php:473
615
- #: ../inc/post-types.php:505 ../inc/post-types.php:525
616
- #: ../inc/post-types.php:570 ../inc/taxonomies.php:333
617
- #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
618
- #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
619
- #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
 
620
  msgid "True"
621
  msgstr ""
622
 
623
- #: ../inc/post-types.php:352
 
 
 
624
  msgid "Public"
625
  msgstr ""
626
 
627
- #: ../inc/post-types.php:353 ../inc/post-types.php:373
628
- #: ../inc/post-types.php:482 ../inc/post-types.php:514
629
- #: ../inc/post-types.php:534 ../inc/post-types.php:578
630
- #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
631
- #: ../inc/taxonomies.php:401
 
 
632
  msgid "(default: True)"
633
  msgstr ""
634
 
635
- #: ../inc/post-types.php:354
636
- msgid "Whether posts of this type should be shown in the admin UI."
 
 
637
  msgstr ""
638
 
639
- #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
640
  msgid "Show UI"
641
  msgstr ""
642
 
643
- #: ../inc/post-types.php:374
644
  msgid "Whether to generate a default UI for managing this post type."
645
  msgstr ""
646
 
647
- #: ../inc/post-types.php:382
648
  msgid "Has Archive"
649
  msgstr ""
650
 
651
- #: ../inc/post-types.php:383
652
- msgid "Whether the post type will have a post type archive page."
653
  msgstr ""
654
 
655
- #: ../inc/post-types.php:384
656
  msgid "If left blank, the archive slug will default to the post type slug."
657
  msgstr ""
658
 
659
- #: ../inc/post-types.php:398 ../inc/post-types.php:431
660
- #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
661
- #: ../inc/taxonomies.php:461
662
  msgid "(default: False)"
663
  msgstr ""
664
 
665
- #: ../inc/post-types.php:410
666
- msgid "Slug to be used for archive page."
667
  msgstr ""
668
 
669
- #: ../inc/post-types.php:430
670
  msgid "Exclude From Search"
671
  msgstr ""
672
 
673
- #: ../inc/post-types.php:432
674
- msgid "Whether the post type will be searchable"
 
675
  msgstr ""
676
 
677
- #: ../inc/post-types.php:443
678
  msgid "Capability Type"
679
  msgstr ""
680
 
681
- #: ../inc/post-types.php:444
682
  msgid "The post type to use for checking read, edit, and delete capabilities"
683
  msgstr ""
684
 
685
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
686
  msgid "Hierarchical"
687
  msgstr ""
688
 
689
- #: ../inc/post-types.php:463
690
  msgid "Whether the post type can have parent-child relationships"
691
  msgstr ""
692
 
693
- #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
694
  msgid "Rewrite"
695
  msgstr ""
696
 
697
- #: ../inc/post-types.php:483
698
- msgid "Triggers the handling of rewrites for this post type"
699
  msgstr ""
700
 
701
- #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
702
  msgid "Custom Rewrite Slug"
703
  msgstr ""
704
 
705
- #: ../inc/post-types.php:495
706
- msgid "(default: post type name)"
707
  msgstr ""
708
 
709
- #: ../inc/post-types.php:496
710
- msgid "Custom slug to use instead of the default."
711
  msgstr ""
712
 
713
- #: ../inc/post-types.php:513
714
  msgid "With Front"
715
  msgstr ""
716
 
717
- #: ../inc/post-types.php:515 ../inc/post-types.php:535
718
- #: ../inc/taxonomies.php:428
719
  msgid "Should the permastruct be prepended with the front base."
720
  msgstr ""
721
 
722
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
723
  msgid "Query Var"
724
  msgstr ""
725
 
726
- #: ../inc/post-types.php:543
 
 
 
 
727
  msgid "Menu Position"
728
  msgstr ""
729
 
730
- #: ../inc/post-types.php:544
731
  msgid ""
732
  "The position in the menu order the post type should appear. show_in_menu "
733
  "must be true."
734
  msgstr ""
735
 
736
- #: ../inc/post-types.php:545
737
  msgid ""
738
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
739
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
740
  "\" section. Range of 5-100"
741
  msgstr ""
742
 
743
- #: ../inc/post-types.php:552
744
- msgid "URL or Dashicon value for image to be used as menu icon."
745
- msgstr ""
746
-
747
- #: ../inc/post-types.php:562
748
  msgid "Show in Menu"
749
  msgstr ""
750
 
751
- #: ../inc/post-types.php:563
752
  msgid ""
753
- "Whether to show the post type in the admin menu and where to show that menu. "
754
- "Note that show_ui must be true."
755
  msgstr ""
756
 
757
- #: ../inc/post-types.php:564
758
  msgid ""
759
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
760
  "php\" is indicated for second input, post type will be sub menu of that."
761
  msgstr ""
762
 
763
- #: ../inc/post-types.php:590
764
- msgid "URL to image to be used as menu icon."
765
  msgstr ""
766
 
767
- #: ../inc/post-types.php:602
768
  msgid "Menu Icon"
769
  msgstr ""
770
 
771
- #: ../inc/post-types.php:603
772
  msgid "(Full URL for icon or Dashicon class)"
773
  msgstr ""
774
 
775
- #: ../inc/post-types.php:604
776
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
777
  msgstr ""
778
 
779
- #: ../inc/post-types.php:607
780
- msgid "Supports"
781
- msgstr ""
782
-
783
- #: ../inc/post-types.php:617
784
  msgid "Title"
785
  msgstr ""
786
 
787
- #: ../inc/post-types.php:618
788
  msgid "Adds the title meta box when creating content for this custom post type"
789
  msgstr ""
790
 
791
- #: ../inc/post-types.php:632
792
  msgid "Editor"
793
  msgstr ""
794
 
795
- #: ../inc/post-types.php:633
796
  msgid ""
797
  "Adds the content editor meta box when creating content for this custom post "
798
  "type"
799
  msgstr ""
800
 
801
- #: ../inc/post-types.php:647
802
  msgid "Excerpt"
803
  msgstr ""
804
 
805
- #: ../inc/post-types.php:648
806
  msgid ""
807
  "Adds the excerpt meta box when creating content for this custom post type"
808
  msgstr ""
809
 
810
- #: ../inc/post-types.php:662
811
  msgid "Trackbacks"
812
  msgstr ""
813
 
814
- #: ../inc/post-types.php:663
815
  msgid ""
816
  "Adds the trackbacks meta box when creating content for this custom post type"
817
  msgstr ""
818
 
819
- #: ../inc/post-types.php:677
820
  msgid "Custom Fields"
821
  msgstr ""
822
 
823
- #: ../inc/post-types.php:678
824
  msgid ""
825
  "Adds the custom fields meta box when creating content for this custom post "
826
  "type"
827
  msgstr ""
828
 
829
- #: ../inc/post-types.php:692
830
  msgid "Comments"
831
  msgstr ""
832
 
833
- #: ../inc/post-types.php:693
834
  msgid ""
835
  "Adds the comments meta box when creating content for this custom post type"
836
  msgstr ""
837
 
838
- #: ../inc/post-types.php:707
839
  msgid "Revisions"
840
  msgstr ""
841
 
842
- #: ../inc/post-types.php:708
843
  msgid ""
844
  "Adds the revisions meta box when creating content for this custom post type"
845
  msgstr ""
846
 
847
- #: ../inc/post-types.php:722
848
  msgid "Featured Image"
849
  msgstr ""
850
 
851
- #: ../inc/post-types.php:723
852
  msgid ""
853
  "Adds the featured image meta box when creating content for this custom post "
854
  "type"
855
  msgstr ""
856
 
857
- #: ../inc/post-types.php:737
858
  msgid "Author"
859
  msgstr ""
860
 
861
- #: ../inc/post-types.php:738
862
  msgid ""
863
  "Adds the author meta box when creating content for this custom post type"
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:752
867
  msgid "Page Attributes"
868
  msgstr ""
869
 
870
- #: ../inc/post-types.php:753
871
  msgid ""
872
  "Adds the page attribute meta box when creating content for this custom post "
873
  "type"
874
  msgstr ""
875
 
876
- #: ../inc/post-types.php:767
877
  msgid "Post Formats"
878
  msgstr ""
879
 
880
- #: ../inc/post-types.php:768
881
  msgid "Adds post format support"
882
  msgstr ""
883
 
884
- #: ../inc/post-types.php:773
885
  msgid "Use the option below to explicitly set \"supports\" to false."
886
  msgstr ""
887
 
888
- #: ../inc/post-types.php:781
889
  msgid "None"
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:782
893
  msgid "Remove all support features"
894
  msgstr ""
895
 
896
- #: ../inc/post-types.php:789
897
- msgid "Built-in Taxonomies"
898
  msgstr ""
899
 
900
- #: ../inc/post-types.php:818 ../inc/taxonomies.php:163
901
- #, php-format
902
- msgid "Adds %s support"
903
  msgstr ""
904
 
905
- #: ../inc/post-types.php:827 ../inc/taxonomies.php:470
906
- msgid "Starter Notes"
907
  msgstr ""
908
 
909
- #: ../inc/post-types.php:830
910
- #, php-format
911
- msgid ""
912
- "Post Type names should have %smax 20 characters%s, and only contain "
913
- "alphanumeric, lowercase characters, underscores in place of spaces and "
914
- "letters that do not have accents. Reserved names: post, page, attachment, "
915
- "revision, nav_menu_item."
916
- msgstr ""
917
-
918
- #: ../inc/post-types.php:831
919
- #, php-format
920
- msgid ""
921
- "If you are unfamiliar with the advanced post type settings, just fill in the "
922
- "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
923
- "values. Labels, if left blank, will be automatically created based on the "
924
- "post type name. Hover over the question mark for more details."
925
  msgstr ""
926
 
927
- #: ../inc/post-types.php:832
928
  #, php-format
929
- msgid ""
930
- "Deleting custom post types will %sNOT%s delete any content into the database "
931
- "or added to those post types. You can easily recreate your post types and "
932
- "the content will still exist."
933
  msgstr ""
934
 
935
- #: ../inc/post-types.php:912
936
  msgid "Please provide a post type to delete"
937
  msgstr ""
938
 
939
- #: ../inc/post-types.php:972
940
  msgid "Please provide a post type name"
941
  msgstr ""
942
 
943
- #: ../inc/post-types.php:990
944
  msgid "Please do not use quotes in post type names or rewrite slugs"
945
  msgstr ""
946
 
947
- #: ../inc/post-types.php:997
948
  #, php-format
949
  msgid "Please choose a different post type name. %s is already registered."
950
  msgstr ""
951
 
952
- #: ../inc/support.php:51
953
  msgid "Custom Post Type UI Support"
954
  msgstr ""
955
 
956
- #: ../inc/support.php:53
957
  #, php-format
958
  msgid ""
959
  "Please note that this plugin will NOT handle display of registered post "
@@ -961,33 +1049,33 @@ msgid ""
961
  "you. If all else fails, visit us on the %s"
962
  msgstr ""
963
 
964
- #: ../inc/support.php:54
965
  msgid "Support Forums"
966
  msgstr ""
967
 
968
- #: ../inc/support.php:60
969
  msgid "General"
970
  msgstr ""
971
 
972
- #: ../inc/support.php:63
973
  msgid ""
974
  "I changed my custom post type name and now I can not get to my posts. How do "
975
  "I get them back?"
976
  msgstr ""
977
 
978
- #: ../inc/support.php:64
979
  msgid ""
980
  "You can either change the custom post type name back to the original name or "
981
  "try the Post Type Switcher plugin"
982
  msgstr ""
983
 
984
- #: ../inc/support.php:69
985
  msgid ""
986
  "I changed my custom post type or taxonomy slug and now I have duplicates "
987
  "shown. How do I remove the duplicate?"
988
  msgstr ""
989
 
990
- #: ../inc/support.php:70
991
  msgid ""
992
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
993
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -995,37 +1083,37 @@ msgid ""
995
  "delete the previous version's entry."
996
  msgstr ""
997
 
998
- #: ../inc/support.php:73
999
  msgid ""
1000
  "I have added post thumbnail and/or post format support to my post type, but "
1001
  "those do not appear when adding a post type post."
1002
  msgstr ""
1003
 
1004
- #: ../inc/support.php:74
1005
  msgid ""
1006
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1007
  msgstr ""
1008
 
1009
- #: ../inc/support.php:79
1010
  msgid "Front-end Display"
1011
  msgstr ""
1012
 
1013
- #: ../inc/support.php:82
1014
  msgid "What template files should I edit to alter my post type display?"
1015
  msgstr ""
1016
 
1017
- #: ../inc/support.php:83
1018
  #, php-format
1019
  msgid ""
1020
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1021
  "details about available templates."
1022
  msgstr ""
1023
 
1024
- #: ../inc/support.php:90
1025
  msgid "How do I display my custom post type on my site?"
1026
  msgstr ""
1027
 
1028
- #: ../inc/support.php:91
1029
  #, php-format
1030
  msgid ""
1031
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1033,13 +1121,13 @@ msgid ""
1033
  "should be something like \"http://www.mysite.com/post-type-slug\""
1034
  msgstr ""
1035
 
1036
- #: ../inc/support.php:97
1037
  msgid ""
1038
  "I have added categories and tags to my custom post type, but they do not "
1039
  "appear in the archives."
1040
  msgstr ""
1041
 
1042
- #: ../inc/support.php:98
1043
  #, php-format
1044
  msgid ""
1045
  "You will need to add your newly created post type to the types that the "
@@ -1047,316 +1135,352 @@ msgid ""
1047
  "that at %s"
1048
  msgstr ""
1049
 
1050
- #: ../inc/support.php:107
1051
  msgid "Advanced"
1052
  msgstr ""
1053
 
1054
- #: ../inc/support.php:110
1055
  msgid "How do I add custom metaboxes to my post type?"
1056
  msgstr ""
1057
 
1058
- #: ../inc/support.php:112
1059
  #, php-format
1060
  msgid ""
1061
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1062
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1063
  msgstr ""
1064
 
1065
- #: ../inc/support.php:118
1066
  msgid ""
1067
  "How do I add a newly registered taxonomy to a post type that already exists?"
1068
  msgstr ""
1069
 
1070
- #: ../inc/support.php:120
1071
  #, php-format
1072
  msgid "Check out the %s function for documentation and usage examples."
1073
  msgstr ""
1074
 
1075
- #: ../inc/support.php:126
1076
  msgid "Post relationships?"
1077
  msgstr ""
1078
 
1079
- #: ../inc/support.php:127
1080
  #, php-format
1081
  msgid ""
1082
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1083
  "plugin that should be a good start."
1084
  msgstr ""
1085
 
1086
- #: ../inc/support.php:136
 
 
 
 
 
 
 
 
 
 
 
1087
  msgid ""
1088
  "How do I filter the \"enter title here\" text in the post editor screen?"
1089
  msgstr ""
1090
 
1091
- #: ../inc/support.php:137
1092
  msgid ""
1093
  "Change text inside the post/page editor title field. Should be able to adapt "
1094
  "as necessary."
1095
  msgstr ""
1096
 
1097
- #: ../inc/taxonomies.php:87
1098
  msgid ""
1099
- "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1100
- "Changing that value registers a new taxonomy entry for your install."
1101
  msgstr ""
1102
 
1103
- #: ../inc/taxonomies.php:109
1104
  msgid "Taxonomy Slug"
1105
  msgstr ""
1106
 
1107
- #: ../inc/taxonomies.php:110
1108
- msgid "(e.g. actors)"
1109
  msgstr ""
1110
 
1111
- #: ../inc/taxonomies.php:111
1112
  msgid ""
1113
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1114
  "and unique"
1115
  msgstr ""
1116
 
1117
- #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1118
  msgid "(e.g. Actors)"
1119
  msgstr ""
1120
 
1121
- #: ../inc/taxonomies.php:121
1122
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1123
  msgstr ""
1124
 
1125
- #: ../inc/taxonomies.php:128
1126
  msgid "(e.g. Actor)"
1127
  msgstr ""
1128
 
1129
- #: ../inc/taxonomies.php:130
1130
  msgid ""
1131
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1132
  msgstr ""
1133
 
1134
- #: ../inc/taxonomies.php:133
1135
  msgid "Attach to Post Type"
1136
  msgstr ""
1137
 
1138
- #: ../inc/taxonomies.php:172
1139
- msgid "Edit Taxonomy"
1140
  msgstr ""
1141
 
1142
- #: ../inc/taxonomies.php:173
1143
  msgid "Delete Taxonomy"
1144
  msgstr ""
1145
 
1146
- #: ../inc/taxonomies.php:175
1147
  msgid "Add Taxonomy"
1148
  msgstr ""
1149
 
1150
- #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1151
- #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1152
- #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1153
- #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1154
- #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1155
- #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1156
- #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1157
- #: ../inc/taxonomies.php:321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1158
  msgid ""
1159
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1160
  msgstr ""
1161
 
1162
- #: ../inc/taxonomies.php:202
1163
  msgid "(e.g. All Actors)"
1164
  msgstr ""
1165
 
1166
- #: ../inc/taxonomies.php:211
1167
  msgid "(e.g. Edit Actor)"
1168
  msgstr ""
1169
 
1170
- #: ../inc/taxonomies.php:220
1171
  msgid "(e.g. View Actor)"
1172
  msgstr ""
1173
 
1174
- #: ../inc/taxonomies.php:229
1175
  msgid "(e.g. Update Actor Name)"
1176
  msgstr ""
1177
 
1178
- #: ../inc/taxonomies.php:230
1179
  msgid "Update Item Name"
1180
  msgstr ""
1181
 
1182
- #: ../inc/taxonomies.php:238
1183
  msgid "(e.g. Add New Actor)"
1184
  msgstr ""
1185
 
1186
- #: ../inc/taxonomies.php:247
1187
  msgid "(e.g. New Actor Name)"
1188
  msgstr ""
1189
 
1190
- #: ../inc/taxonomies.php:248
1191
  msgid "New Item Name"
1192
  msgstr ""
1193
 
1194
- #: ../inc/taxonomies.php:256
1195
  msgid "(e.g. Parent Actor)"
1196
  msgstr ""
1197
 
1198
- #: ../inc/taxonomies.php:257
1199
  msgid "Parent Item"
1200
  msgstr ""
1201
 
1202
- #: ../inc/taxonomies.php:265
1203
  msgid "(e.g. Parent Actor:)"
1204
  msgstr ""
1205
 
1206
- #: ../inc/taxonomies.php:266
1207
  msgid "Parent Item Colon"
1208
  msgstr ""
1209
 
1210
- #: ../inc/taxonomies.php:274
1211
  msgid "(e.g. Search Actors)"
1212
  msgstr ""
1213
 
1214
- #: ../inc/taxonomies.php:275
1215
  msgid "Search Items"
1216
  msgstr ""
1217
 
1218
- #: ../inc/taxonomies.php:283
1219
  msgid "(e.g. Popular Actors)"
1220
  msgstr ""
1221
 
1222
- #: ../inc/taxonomies.php:284
1223
  msgid "Popular Items"
1224
  msgstr ""
1225
 
1226
- #: ../inc/taxonomies.php:292
1227
  msgid "(e.g. Separate actors with commas)"
1228
  msgstr ""
1229
 
1230
- #: ../inc/taxonomies.php:293
1231
  msgid "Separate Items with Commas"
1232
  msgstr ""
1233
 
1234
- #: ../inc/taxonomies.php:301
1235
  msgid "(e.g. Add or remove actors)"
1236
  msgstr ""
1237
 
1238
- #: ../inc/taxonomies.php:302
1239
  msgid "Add or Remove Items"
1240
  msgstr ""
1241
 
1242
- #: ../inc/taxonomies.php:310
1243
  msgid "(e.g. Choose from the most used actors)"
1244
  msgstr ""
1245
 
1246
- #: ../inc/taxonomies.php:311
1247
  msgid "Choose From Most Used"
1248
  msgstr ""
1249
 
1250
- #: ../inc/taxonomies.php:319
1251
  msgid "(e.g. No actors found)"
1252
  msgstr ""
1253
 
1254
- #: ../inc/taxonomies.php:320
1255
  msgid "Not found"
1256
  msgstr ""
1257
 
1258
- #: ../inc/taxonomies.php:343
1259
  msgid "Whether the taxonomy can have parent-child relationships"
1260
  msgstr ""
1261
 
1262
- #: ../inc/taxonomies.php:360
1263
- msgid "Whether to generate a default UI for managing this custom taxonomy"
1264
  msgstr ""
1265
 
1266
- #: ../inc/taxonomies.php:384
 
 
 
 
1267
  msgid "(default: none). Query Var needs to be true to use."
1268
  msgstr ""
1269
 
1270
- #: ../inc/taxonomies.php:385
1271
  msgid "Custom Query Var String"
1272
  msgstr ""
1273
 
1274
- #: ../inc/taxonomies.php:386
1275
- msgid "Custom Query Var Slug"
1276
  msgstr ""
1277
 
1278
- #: ../inc/taxonomies.php:402
1279
- msgid "Triggers the handling of rewrites for this taxonomy"
1280
  msgstr ""
1281
 
1282
- #: ../inc/taxonomies.php:410
1283
  msgid "(default: taxonomy name)"
1284
  msgstr ""
1285
 
1286
- #: ../inc/taxonomies.php:412
1287
- msgid "Custom Taxonomy Rewrite Slug"
1288
  msgstr ""
1289
 
1290
- #: ../inc/taxonomies.php:426
1291
  msgid "Rewrite With Front"
1292
  msgstr ""
1293
 
1294
- #: ../inc/taxonomies.php:427
1295
  msgid "(default: true)"
1296
  msgstr ""
1297
 
1298
- #: ../inc/taxonomies.php:443
1299
  msgid "Rewrite Hierarchical"
1300
  msgstr ""
1301
 
1302
- #: ../inc/taxonomies.php:444
1303
  msgid "(default: false)"
1304
  msgstr ""
1305
 
1306
- #: ../inc/taxonomies.php:445
1307
  msgid "Should the permastruct allow hierarchical urls."
1308
  msgstr ""
1309
 
1310
- #: ../inc/taxonomies.php:460
1311
  msgid "Show Admin Column"
1312
  msgstr ""
1313
 
1314
- #: ../inc/taxonomies.php:462
1315
  msgid ""
1316
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1317
  "types."
1318
  msgstr ""
1319
 
1320
- #: ../inc/taxonomies.php:473
1321
- #, php-format
1322
- msgid ""
1323
- "Taxonomy names should have %smax 32 characters%s, and only contain "
1324
- "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1325
- "letters that do not have accents."
1326
  msgstr ""
1327
 
1328
- #: ../inc/taxonomies.php:474
1329
- #, php-format
1330
- msgid ""
1331
- "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1332
- "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1333
- "settings will use default values. Labels, if left blank, will be "
1334
- "automatically created based on the taxonomy name. Hover over the question "
1335
- "marks for more details."
1336
  msgstr ""
1337
 
1338
- #: ../inc/taxonomies.php:475
 
 
 
 
1339
  #, php-format
1340
- msgid ""
1341
- "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1342
- "taxonomies. You can recreate your taxonomies and the terms will return. "
1343
- "Changing the name, after adding terms to the taxonomy, will not update the "
1344
- "terms in the database."
1345
  msgstr ""
1346
 
1347
- #: ../inc/taxonomies.php:564
1348
- msgid "Please provide a taxonomy to delete"
 
 
 
1349
  msgstr ""
1350
 
1351
- #: ../inc/taxonomies.php:615
1352
- msgid "Please provide a taxonomy name"
1353
  msgstr ""
1354
 
1355
- #: ../inc/taxonomies.php:631
1356
- msgid "Please do not use quotes in taxonomy names or rewrite slugs"
 
1357
  msgstr ""
1358
 
1359
- #: ../inc/taxonomies.php:637
1360
- #, php-format
1361
- msgid "Please choose a different taxonomy name. %s is already used."
 
 
 
1362
  msgstr ""
1
+ #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Custom Post Type UI\n"
5
+ "POT-Creation-Date: 2015-06-12 21:13-0600\n"
6
+ "PO-Revision-Date: 2015-05-19 18:37-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
+ "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
+ "Language: en_US\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.1\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\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
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
21
+ "X-Poedit-SearchPathExcluded-3: tests\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: *.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:373
193
+ #: inc/taxonomies.php:338
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:650
202
  #, php-format
203
  msgid "%s has been successfully added"
204
  msgstr ""
205
 
206
+ #: custom-post-type-ui.php:652
207
  #, php-format
208
  msgid "%s has failed to be added"
209
  msgstr ""
210
 
211
+ #: custom-post-type-ui.php:656
212
  #, php-format
213
  msgid "%s has been successfully updated"
214
  msgstr ""
215
 
216
+ #: custom-post-type-ui.php:658
217
  #, php-format
218
  msgid "%s has failed to be updated"
219
  msgstr ""
220
 
221
+ #: custom-post-type-ui.php:662
222
  #, php-format
223
  msgid "%s has been successfully deleted"
224
  msgstr ""
225
 
226
+ #: custom-post-type-ui.php:664
227
  #, php-format
228
  msgid "%s has failed to be deleted"
229
  msgstr ""
230
 
231
+ #: custom-post-type-ui.php:668
232
  #, php-format
233
  msgid "%s has been successfully imported"
234
  msgstr ""
235
 
236
+ #: custom-post-type-ui.php:670
237
  #, php-format
238
  msgid "%s has failed to be imported"
239
  msgstr ""
240
 
241
+ #: custom-post-type-ui.php:753 custom-post-type-ui.php:770
242
  #, php-format
243
  msgid "Add new %s"
244
  msgstr ""
245
 
246
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:768
247
  #, php-format
248
  msgid "Edit %s"
249
  msgstr ""
250
 
251
+ #: custom-post-type-ui.php:755
252
  #, php-format
253
  msgid "New %s"
254
  msgstr ""
255
 
256
+ #: custom-post-type-ui.php:756
257
  #, php-format
258
  msgid "View %s"
259
  msgstr ""
260
 
261
+ #: custom-post-type-ui.php:757 custom-post-type-ui.php:765
262
  #, php-format
263
  msgid "All %s"
264
  msgstr ""
265
 
266
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:763
267
  #, php-format
268
  msgid "Search %s"
269
  msgstr ""
270
 
271
+ #: custom-post-type-ui.php:759
272
  #, php-format
273
  msgid "No %s found."
274
  msgstr ""
275
 
276
+ #: custom-post-type-ui.php:760
277
  #, php-format
278
  msgid "No %s found in trash."
279
  msgstr ""
280
 
281
+ #: custom-post-type-ui.php:764
282
  #, php-format
283
  msgid "Popular %s"
284
  msgstr ""
285
 
286
+ #: custom-post-type-ui.php:766
287
  #, php-format
288
  msgid "Parent %s"
289
  msgstr ""
290
 
291
+ #: custom-post-type-ui.php:767
292
  #, php-format
293
  msgid "Parent %s:"
294
  msgstr ""
295
 
296
+ #: custom-post-type-ui.php:769
297
  #, php-format
298
  msgid "Update %s"
299
  msgstr ""
300
 
301
+ #: custom-post-type-ui.php:771
302
  #, php-format
303
  msgid "New %s name"
304
  msgstr ""
305
 
306
+ #: custom-post-type-ui.php:772
307
  #, php-format
308
  msgid "Separate %s with commas"
309
  msgstr ""
310
 
311
+ #: custom-post-type-ui.php:773
312
  #, php-format
313
  msgid "Add or remove %s"
314
  msgstr ""
315
 
316
+ #: custom-post-type-ui.php:774
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
  "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:644
451
+ msgid "Supports"
452
+ msgstr ""
453
+
454
+ #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
455
+ #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
456
+ msgid "Labels"
457
+ msgstr ""
458
+
459
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
460
+ msgid "Edit"
461
+ msgstr ""
462
+
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:86
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:87
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:88 inc/taxonomies.php:84
492
+ msgid "Select: "
493
  msgstr ""
494
 
495
+ #: inc/post-types.php:120
496
  msgid "Post Type Slug"
497
  msgstr ""
498
 
499
+ #: inc/post-types.php:121
500
  msgid "(e.g. movie)"
501
  msgstr ""
502
 
503
+ #: inc/post-types.php:122
504
  msgid ""
505
  "The post type name. Used to retrieve custom post type content. Should be "
506
  "short and unique"
507
  msgstr ""
508
 
509
+ #: inc/post-types.php:133 inc/taxonomies.php:124
510
  msgid "Plural Label"
511
  msgstr ""
512
 
513
+ #: inc/post-types.php:134
514
  msgid "(e.g. Movies)"
515
  msgstr ""
516
 
517
+ #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
518
+ #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
519
+ #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
520
+ #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
521
+ #: inc/post-types.php:364
 
 
522
  msgid "Post type label. Used in the admin menu for displaying post types."
523
  msgstr ""
524
 
525
+ #: inc/post-types.php:145 inc/taxonomies.php:133
526
  msgid "Singular Label"
527
  msgstr ""
528
 
529
+ #: inc/post-types.php:146
530
  msgid "(e.g. Movie)"
531
  msgstr ""
532
 
533
+ #: inc/post-types.php:147
534
  msgid ""
535
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
536
  "needed."
537
  msgstr ""
538
 
539
+ #: inc/post-types.php:163
540
  msgid "Description"
541
  msgstr ""
542
 
543
+ #: inc/post-types.php:164
544
  msgid ""
545
  "Custom Post Type Description. Describe what your custom post type is used "
546
  "for."
547
  msgstr ""
548
 
549
+ #: inc/post-types.php:176
550
+ msgid "Migrate posts to newly renamed post type?"
551
  msgstr ""
552
 
553
+ #: inc/post-types.php:177
554
+ msgid "Check this to migrate posts if and when renaming your post type."
555
+ msgstr ""
556
+
557
+ #: inc/post-types.php:186
558
+ msgid "Save Post Type"
559
+ msgstr ""
560
+
561
+ #: inc/post-types.php:187
562
  msgid "Delete Post Type"
563
  msgstr ""
564
 
565
+ #: inc/post-types.php:189
566
  msgid "Add Post Type"
567
  msgstr ""
568
 
569
+ #: inc/post-types.php:200 inc/taxonomies.php:185
570
+ msgid "Starter Notes"
571
+ msgstr ""
572
+
573
+ #: inc/post-types.php:203
574
+ #, php-format
575
+ msgid ""
576
+ "Post Type names should have %smax 20 characters%s, and only contain "
577
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
578
+ "letters that do not have accents. Reserved names: post, page, attachment, "
579
+ "revision, nav_menu_item."
580
  msgstr ""
581
 
582
+ #: inc/post-types.php:204
583
+ #, php-format
584
+ msgid ""
585
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
586
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
587
+ "values. Labels, if left blank, will be automatically created based on the "
588
+ "post type name. Hover over the question mark for more details."
589
  msgstr ""
590
 
591
+ #: inc/post-types.php:205
592
+ #, php-format
593
+ msgid ""
594
+ "Deleting custom post types will %sNOT%s delete any content into the database "
595
+ "or added to those post types. You can easily recreate your post types and "
596
+ "the content will still exist."
597
  msgstr ""
598
 
599
+ #: inc/post-types.php:219 inc/taxonomies.php:206
600
  msgid "Menu Name"
601
  msgstr ""
602
 
603
+ #: inc/post-types.php:220
604
  msgid "Custom menu name for your custom post type."
605
  msgstr ""
606
 
607
+ #: inc/post-types.php:224
608
  msgid "(e.g. My Movies)"
609
  msgstr ""
610
 
611
+ #: inc/post-types.php:231 inc/taxonomies.php:215
612
  msgid "All Items"
613
  msgstr ""
614
 
615
+ #: inc/post-types.php:236
616
  msgid "(e.g. All Movies)"
617
  msgstr ""
618
 
619
+ #: inc/post-types.php:243
620
  msgid "Add New"
621
  msgstr ""
622
 
623
+ #: inc/post-types.php:248
624
  msgid "(e.g. Add New)"
625
  msgstr ""
626
 
627
+ #: inc/post-types.php:255 inc/taxonomies.php:251
628
  msgid "Add New Item"
629
  msgstr ""
630
 
631
+ #: inc/post-types.php:260
632
  msgid "(e.g. Add New Movie)"
633
  msgstr ""
634
 
635
+ #: inc/post-types.php:272
 
 
 
 
636
  msgid "(e.g. Edit)"
637
  msgstr ""
638
 
639
+ #: inc/post-types.php:279 inc/taxonomies.php:224
640
  msgid "Edit Item"
641
  msgstr ""
642
 
643
+ #: inc/post-types.php:284
644
  msgid "(e.g. Edit Movie)"
645
  msgstr ""
646
 
647
+ #: inc/post-types.php:291
648
  msgid "New Item"
649
  msgstr ""
650
 
651
+ #: inc/post-types.php:296
652
  msgid "(e.g. New Movie)"
653
  msgstr ""
654
 
655
+ #: inc/post-types.php:303
656
  msgid "View"
657
  msgstr ""
658
 
659
+ #: inc/post-types.php:308
660
  msgid "(e.g. View)"
661
  msgstr ""
662
 
663
+ #: inc/post-types.php:315 inc/taxonomies.php:233
664
  msgid "View Item"
665
  msgstr ""
666
 
667
+ #: inc/post-types.php:320
668
  msgid "(e.g. View Movie)"
669
  msgstr ""
670
 
671
+ #: inc/post-types.php:327
672
  msgid "Search Item"
673
  msgstr ""
674
 
675
+ #: inc/post-types.php:332
676
  msgid "(e.g. Search Movie)"
677
  msgstr ""
678
 
679
+ #: inc/post-types.php:339
680
  msgid "Not Found"
681
  msgstr ""
682
 
683
+ #: inc/post-types.php:344
684
  msgid "(e.g. No Movies found)"
685
  msgstr ""
686
 
687
+ #: inc/post-types.php:351
688
  msgid "Not Found in Trash"
689
  msgstr ""
690
 
691
+ #: inc/post-types.php:356
692
  msgid "(e.g. No Movies found in Trash)"
693
  msgstr ""
694
 
695
+ #: inc/post-types.php:363
696
  msgid "Parent"
697
  msgstr ""
698
 
699
+ #: inc/post-types.php:368
700
  msgid "(e.g. Parent Movie)"
701
  msgstr ""
702
 
703
+ #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
704
+ #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
705
+ #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
706
+ #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
707
+ #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
708
+ #: inc/taxonomies.php:464 tests/CPTUI-Admin-UI-Inputs-Test.php:105
709
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
710
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
711
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
712
  msgid "False"
713
  msgstr ""
714
 
715
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
716
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
717
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
718
+ #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
719
+ #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
720
+ #: inc/taxonomies.php:465 tests/CPTUI-Admin-UI-Inputs-Test.php:106
721
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
722
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
723
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
724
  msgid "True"
725
  msgstr ""
726
 
727
+ #: inc/post-types.php:391 tests/CPTUI-Admin-UI-Inputs-Test.php:114
728
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
729
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
730
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
731
  msgid "Public"
732
  msgstr ""
733
 
734
+ #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
735
+ #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
736
+ #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
737
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
738
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
739
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
740
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:242
741
  msgid "(default: True)"
742
  msgstr ""
743
 
744
+ #: inc/post-types.php:393
745
+ msgid ""
746
+ "Whether posts of this type should be shown in the admin UI and is publicly "
747
+ "queryable."
748
  msgstr ""
749
 
750
+ #: inc/post-types.php:411 inc/taxonomies.php:370
751
  msgid "Show UI"
752
  msgstr ""
753
 
754
+ #: inc/post-types.php:413
755
  msgid "Whether to generate a default UI for managing this post type."
756
  msgstr ""
757
 
758
+ #: inc/post-types.php:421
759
  msgid "Has Archive"
760
  msgstr ""
761
 
762
+ #: inc/post-types.php:422
763
+ msgid "Whether the post type will have a post type archive URL."
764
  msgstr ""
765
 
766
+ #: inc/post-types.php:423
767
  msgid "If left blank, the archive slug will default to the post type slug."
768
  msgstr ""
769
 
770
+ #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
771
+ #: inc/taxonomies.php:354 inc/taxonomies.php:474
 
772
  msgid "(default: False)"
773
  msgstr ""
774
 
775
+ #: inc/post-types.php:449
776
+ msgid "Slug to be used for archive URL."
777
  msgstr ""
778
 
779
+ #: inc/post-types.php:469
780
  msgid "Exclude From Search"
781
  msgstr ""
782
 
783
+ #: inc/post-types.php:471
784
+ msgid ""
785
+ "Whether to exclude posts with this post type from front end search results."
786
  msgstr ""
787
 
788
+ #: inc/post-types.php:482
789
  msgid "Capability Type"
790
  msgstr ""
791
 
792
+ #: inc/post-types.php:483
793
  msgid "The post type to use for checking read, edit, and delete capabilities"
794
  msgstr ""
795
 
796
+ #: inc/post-types.php:500 inc/taxonomies.php:353
797
  msgid "Hierarchical"
798
  msgstr ""
799
 
800
+ #: inc/post-types.php:502
801
  msgid "Whether the post type can have parent-child relationships"
802
  msgstr ""
803
 
804
+ #: inc/post-types.php:520 inc/taxonomies.php:413
805
  msgid "Rewrite"
806
  msgstr ""
807
 
808
+ #: inc/post-types.php:522
809
+ msgid "Whether or not WordPress should use rewrites for this post type"
810
  msgstr ""
811
 
812
+ #: inc/post-types.php:533 inc/taxonomies.php:424
813
  msgid "Custom Rewrite Slug"
814
  msgstr ""
815
 
816
+ #: inc/post-types.php:534
817
+ msgid "(default: post type slug)"
818
  msgstr ""
819
 
820
+ #: inc/post-types.php:535
821
+ msgid "Custom post type slug to use instead of the default."
822
  msgstr ""
823
 
824
+ #: inc/post-types.php:552
825
  msgid "With Front"
826
  msgstr ""
827
 
828
+ #: inc/post-types.php:554 inc/taxonomies.php:441
 
829
  msgid "Should the permastruct be prepended with the front base."
830
  msgstr ""
831
 
832
+ #: inc/post-types.php:572 inc/taxonomies.php:387
833
  msgid "Query Var"
834
  msgstr ""
835
 
836
+ #: inc/post-types.php:574
837
+ msgid "Sets the query_var key for this post type."
838
+ msgstr ""
839
+
840
+ #: inc/post-types.php:582
841
  msgid "Menu Position"
842
  msgstr ""
843
 
844
+ #: inc/post-types.php:583
845
  msgid ""
846
  "The position in the menu order the post type should appear. show_in_menu "
847
  "must be true."
848
  msgstr ""
849
 
850
+ #: inc/post-types.php:584
851
  msgid ""
852
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
853
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
854
  "\" section. Range of 5-100"
855
  msgstr ""
856
 
857
+ #: inc/post-types.php:599
 
 
 
 
858
  msgid "Show in Menu"
859
  msgstr ""
860
 
861
+ #: inc/post-types.php:600
862
  msgid ""
863
+ "Whether to show the post type in the admin menu and where to show that menu."
 
864
  msgstr ""
865
 
866
+ #: inc/post-types.php:601
867
  msgid ""
868
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
869
  "php\" is indicated for second input, post type will be sub menu of that."
870
  msgstr ""
871
 
872
+ #: inc/post-types.php:627
873
+ msgid "Top-level page file name to make post type a sub-menu of."
874
  msgstr ""
875
 
876
+ #: inc/post-types.php:639
877
  msgid "Menu Icon"
878
  msgstr ""
879
 
880
+ #: inc/post-types.php:640
881
  msgid "(Full URL for icon or Dashicon class)"
882
  msgstr ""
883
 
884
+ #: inc/post-types.php:641
885
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
886
  msgstr ""
887
 
888
+ #: inc/post-types.php:654
 
 
 
 
889
  msgid "Title"
890
  msgstr ""
891
 
892
+ #: inc/post-types.php:655
893
  msgid "Adds the title meta box when creating content for this custom post type"
894
  msgstr ""
895
 
896
+ #: inc/post-types.php:669
897
  msgid "Editor"
898
  msgstr ""
899
 
900
+ #: inc/post-types.php:670
901
  msgid ""
902
  "Adds the content editor meta box when creating content for this custom post "
903
  "type"
904
  msgstr ""
905
 
906
+ #: inc/post-types.php:684
907
  msgid "Excerpt"
908
  msgstr ""
909
 
910
+ #: inc/post-types.php:685
911
  msgid ""
912
  "Adds the excerpt meta box when creating content for this custom post type"
913
  msgstr ""
914
 
915
+ #: inc/post-types.php:699
916
  msgid "Trackbacks"
917
  msgstr ""
918
 
919
+ #: inc/post-types.php:700
920
  msgid ""
921
  "Adds the trackbacks meta box when creating content for this custom post type"
922
  msgstr ""
923
 
924
+ #: inc/post-types.php:714
925
  msgid "Custom Fields"
926
  msgstr ""
927
 
928
+ #: inc/post-types.php:715
929
  msgid ""
930
  "Adds the custom fields meta box when creating content for this custom post "
931
  "type"
932
  msgstr ""
933
 
934
+ #: inc/post-types.php:729
935
  msgid "Comments"
936
  msgstr ""
937
 
938
+ #: inc/post-types.php:730
939
  msgid ""
940
  "Adds the comments meta box when creating content for this custom post type"
941
  msgstr ""
942
 
943
+ #: inc/post-types.php:744
944
  msgid "Revisions"
945
  msgstr ""
946
 
947
+ #: inc/post-types.php:745
948
  msgid ""
949
  "Adds the revisions meta box when creating content for this custom post type"
950
  msgstr ""
951
 
952
+ #: inc/post-types.php:759
953
  msgid "Featured Image"
954
  msgstr ""
955
 
956
+ #: inc/post-types.php:760
957
  msgid ""
958
  "Adds the featured image meta box when creating content for this custom post "
959
  "type"
960
  msgstr ""
961
 
962
+ #: inc/post-types.php:774
963
  msgid "Author"
964
  msgstr ""
965
 
966
+ #: inc/post-types.php:775
967
  msgid ""
968
  "Adds the author meta box when creating content for this custom post type"
969
  msgstr ""
970
 
971
+ #: inc/post-types.php:789
972
  msgid "Page Attributes"
973
  msgstr ""
974
 
975
+ #: inc/post-types.php:790
976
  msgid ""
977
  "Adds the page attribute meta box when creating content for this custom post "
978
  "type"
979
  msgstr ""
980
 
981
+ #: inc/post-types.php:804
982
  msgid "Post Formats"
983
  msgstr ""
984
 
985
+ #: inc/post-types.php:805
986
  msgid "Adds post format support"
987
  msgstr ""
988
 
989
+ #: inc/post-types.php:810
990
  msgid "Use the option below to explicitly set \"supports\" to false."
991
  msgstr ""
992
 
993
+ #: inc/post-types.php:818
994
  msgid "None"
995
  msgstr ""
996
 
997
+ #: inc/post-types.php:819
998
  msgid "Remove all support features"
999
  msgstr ""
1000
 
1001
+ #: inc/post-types.php:825
1002
+ msgid "Custom \"Supports\""
1003
  msgstr ""
1004
 
1005
+ #: inc/post-types.php:826
1006
+ msgid ""
1007
+ "Use this input to register custom \"supports\" values, separated by commas."
1008
  msgstr ""
1009
 
1010
+ #: inc/post-types.php:832
1011
+ msgid "Provide custom support slugs here."
1012
  msgstr ""
1013
 
1014
+ #: inc/post-types.php:838
1015
+ msgid "Built-in Taxonomies"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1016
  msgstr ""
1017
 
1018
+ #: inc/post-types.php:867 inc/taxonomies.php:167
1019
  #, php-format
1020
+ msgid "Adds %s support"
 
 
 
1021
  msgstr ""
1022
 
1023
+ #: inc/post-types.php:966
1024
  msgid "Please provide a post type to delete"
1025
  msgstr ""
1026
 
1027
+ #: inc/post-types.php:1026
1028
  msgid "Please provide a post type name"
1029
  msgstr ""
1030
 
1031
+ #: inc/post-types.php:1050
1032
  msgid "Please do not use quotes in post type names or rewrite slugs"
1033
  msgstr ""
1034
 
1035
+ #: inc/post-types.php:1057
1036
  #, php-format
1037
  msgid "Please choose a different post type name. %s is already registered."
1038
  msgstr ""
1039
 
1040
+ #: inc/support.php:41
1041
  msgid "Custom Post Type UI Support"
1042
  msgstr ""
1043
 
1044
+ #: inc/support.php:43
1045
  #, php-format
1046
  msgid ""
1047
  "Please note that this plugin will NOT handle display of registered post "
1049
  "you. If all else fails, visit us on the %s"
1050
  msgstr ""
1051
 
1052
+ #: inc/support.php:44
1053
  msgid "Support Forums"
1054
  msgstr ""
1055
 
1056
+ #: inc/support.php:50
1057
  msgid "General"
1058
  msgstr ""
1059
 
1060
+ #: inc/support.php:53
1061
  msgid ""
1062
  "I changed my custom post type name and now I can not get to my posts. How do "
1063
  "I get them back?"
1064
  msgstr ""
1065
 
1066
+ #: inc/support.php:54
1067
  msgid ""
1068
  "You can either change the custom post type name back to the original name or "
1069
  "try the Post Type Switcher plugin"
1070
  msgstr ""
1071
 
1072
+ #: inc/support.php:59
1073
  msgid ""
1074
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1075
  "shown. How do I remove the duplicate?"
1076
  msgstr ""
1077
 
1078
+ #: inc/support.php:60
1079
  msgid ""
1080
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1081
  "saved option which gets registered as its own post type or taxonomy. Since "
1083
  "delete the previous version's entry."
1084
  msgstr ""
1085
 
1086
+ #: inc/support.php:63
1087
  msgid ""
1088
  "I have added post thumbnail and/or post format support to my post type, but "
1089
  "those do not appear when adding a post type post."
1090
  msgstr ""
1091
 
1092
+ #: inc/support.php:64
1093
  msgid ""
1094
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1095
  msgstr ""
1096
 
1097
+ #: inc/support.php:69
1098
  msgid "Front-end Display"
1099
  msgstr ""
1100
 
1101
+ #: inc/support.php:72
1102
  msgid "What template files should I edit to alter my post type display?"
1103
  msgstr ""
1104
 
1105
+ #: inc/support.php:73
1106
  #, php-format
1107
  msgid ""
1108
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1109
  "details about available templates."
1110
  msgstr ""
1111
 
1112
+ #: inc/support.php:80
1113
  msgid "How do I display my custom post type on my site?"
1114
  msgstr ""
1115
 
1116
+ #: inc/support.php:81
1117
  #, php-format
1118
  msgid ""
1119
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1121
  "should be something like \"http://www.mysite.com/post-type-slug\""
1122
  msgstr ""
1123
 
1124
+ #: inc/support.php:87
1125
  msgid ""
1126
  "I have added categories and tags to my custom post type, but they do not "
1127
  "appear in the archives."
1128
  msgstr ""
1129
 
1130
+ #: inc/support.php:88
1131
  #, php-format
1132
  msgid ""
1133
  "You will need to add your newly created post type to the types that the "
1135
  "that at %s"
1136
  msgstr ""
1137
 
1138
+ #: inc/support.php:97
1139
  msgid "Advanced"
1140
  msgstr ""
1141
 
1142
+ #: inc/support.php:100
1143
  msgid "How do I add custom metaboxes to my post type?"
1144
  msgstr ""
1145
 
1146
+ #: inc/support.php:102
1147
  #, php-format
1148
  msgid ""
1149
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1150
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1151
  msgstr ""
1152
 
1153
+ #: inc/support.php:108
1154
  msgid ""
1155
  "How do I add a newly registered taxonomy to a post type that already exists?"
1156
  msgstr ""
1157
 
1158
+ #: inc/support.php:110
1159
  #, php-format
1160
  msgid "Check out the %s function for documentation and usage examples."
1161
  msgstr ""
1162
 
1163
+ #: inc/support.php:116
1164
  msgid "Post relationships?"
1165
  msgstr ""
1166
 
1167
+ #: inc/support.php:117
1168
  #, php-format
1169
  msgid ""
1170
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1171
  "plugin that should be a good start."
1172
  msgstr ""
1173
 
1174
+ #: inc/support.php:126
1175
+ msgid "Is there any function reference list?"
1176
+ msgstr ""
1177
+
1178
+ #: inc/support.php:127
1179
+ #, php-format
1180
+ msgid ""
1181
+ "%s has compiled a nice list of functions used by our plugin. Note not all "
1182
+ "will be useful as they are attached to hooks."
1183
+ msgstr ""
1184
+
1185
+ #: inc/support.php:131
1186
  msgid ""
1187
  "How do I filter the \"enter title here\" text in the post editor screen?"
1188
  msgstr ""
1189
 
1190
+ #: inc/support.php:132
1191
  msgid ""
1192
  "Change text inside the post/page editor title field. Should be able to adapt "
1193
  "as necessary."
1194
  msgstr ""
1195
 
1196
+ #: inc/taxonomies.php:82
1197
  msgid ""
1198
+ "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1199
+ "registers a new taxonomy entry for your install."
1200
  msgstr ""
1201
 
1202
+ #: inc/taxonomies.php:113
1203
  msgid "Taxonomy Slug"
1204
  msgstr ""
1205
 
1206
+ #: inc/taxonomies.php:114
1207
+ msgid "(e.g. actor)"
1208
  msgstr ""
1209
 
1210
+ #: inc/taxonomies.php:115
1211
  msgid ""
1212
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1213
  "and unique"
1214
  msgstr ""
1215
 
1216
+ #: inc/taxonomies.php:123 inc/taxonomies.php:205
1217
  msgid "(e.g. Actors)"
1218
  msgstr ""
1219
 
1220
+ #: inc/taxonomies.php:125
1221
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1222
  msgstr ""
1223
 
1224
+ #: inc/taxonomies.php:132
1225
  msgid "(e.g. Actor)"
1226
  msgstr ""
1227
 
1228
+ #: inc/taxonomies.php:134
1229
  msgid ""
1230
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1231
  msgstr ""
1232
 
1233
+ #: inc/taxonomies.php:137
1234
  msgid "Attach to Post Type"
1235
  msgstr ""
1236
 
1237
+ #: inc/taxonomies.php:176
1238
+ msgid "Save Taxonomy"
1239
  msgstr ""
1240
 
1241
+ #: inc/taxonomies.php:177
1242
  msgid "Delete Taxonomy"
1243
  msgstr ""
1244
 
1245
+ #: inc/taxonomies.php:179
1246
  msgid "Add Taxonomy"
1247
  msgstr ""
1248
 
1249
+ #: inc/taxonomies.php:188
1250
+ #, php-format
1251
+ msgid ""
1252
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1253
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1254
+ "letters that do not have accents."
1255
+ msgstr ""
1256
+
1257
+ #: inc/taxonomies.php:189
1258
+ #, php-format
1259
+ msgid ""
1260
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1261
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1262
+ "settings will use default values. Labels, if left blank, will be "
1263
+ "automatically created based on the taxonomy name. Hover over the question "
1264
+ "marks for more details."
1265
+ msgstr ""
1266
+
1267
+ #: inc/taxonomies.php:190
1268
+ #, php-format
1269
+ msgid ""
1270
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1271
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1272
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1273
+ "terms in the database."
1274
+ msgstr ""
1275
+
1276
+ #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1277
+ #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1278
+ #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1279
+ #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1280
+ #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1281
  msgid ""
1282
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1283
  msgstr ""
1284
 
1285
+ #: inc/taxonomies.php:214
1286
  msgid "(e.g. All Actors)"
1287
  msgstr ""
1288
 
1289
+ #: inc/taxonomies.php:223
1290
  msgid "(e.g. Edit Actor)"
1291
  msgstr ""
1292
 
1293
+ #: inc/taxonomies.php:232
1294
  msgid "(e.g. View Actor)"
1295
  msgstr ""
1296
 
1297
+ #: inc/taxonomies.php:241
1298
  msgid "(e.g. Update Actor Name)"
1299
  msgstr ""
1300
 
1301
+ #: inc/taxonomies.php:242
1302
  msgid "Update Item Name"
1303
  msgstr ""
1304
 
1305
+ #: inc/taxonomies.php:250
1306
  msgid "(e.g. Add New Actor)"
1307
  msgstr ""
1308
 
1309
+ #: inc/taxonomies.php:259
1310
  msgid "(e.g. New Actor Name)"
1311
  msgstr ""
1312
 
1313
+ #: inc/taxonomies.php:260
1314
  msgid "New Item Name"
1315
  msgstr ""
1316
 
1317
+ #: inc/taxonomies.php:268
1318
  msgid "(e.g. Parent Actor)"
1319
  msgstr ""
1320
 
1321
+ #: inc/taxonomies.php:269
1322
  msgid "Parent Item"
1323
  msgstr ""
1324
 
1325
+ #: inc/taxonomies.php:277
1326
  msgid "(e.g. Parent Actor:)"
1327
  msgstr ""
1328
 
1329
+ #: inc/taxonomies.php:278
1330
  msgid "Parent Item Colon"
1331
  msgstr ""
1332
 
1333
+ #: inc/taxonomies.php:286
1334
  msgid "(e.g. Search Actors)"
1335
  msgstr ""
1336
 
1337
+ #: inc/taxonomies.php:287
1338
  msgid "Search Items"
1339
  msgstr ""
1340
 
1341
+ #: inc/taxonomies.php:295
1342
  msgid "(e.g. Popular Actors)"
1343
  msgstr ""
1344
 
1345
+ #: inc/taxonomies.php:296
1346
  msgid "Popular Items"
1347
  msgstr ""
1348
 
1349
+ #: inc/taxonomies.php:304
1350
  msgid "(e.g. Separate actors with commas)"
1351
  msgstr ""
1352
 
1353
+ #: inc/taxonomies.php:305
1354
  msgid "Separate Items with Commas"
1355
  msgstr ""
1356
 
1357
+ #: inc/taxonomies.php:313
1358
  msgid "(e.g. Add or remove actors)"
1359
  msgstr ""
1360
 
1361
+ #: inc/taxonomies.php:314
1362
  msgid "Add or Remove Items"
1363
  msgstr ""
1364
 
1365
+ #: inc/taxonomies.php:322
1366
  msgid "(e.g. Choose from the most used actors)"
1367
  msgstr ""
1368
 
1369
+ #: inc/taxonomies.php:323
1370
  msgid "Choose From Most Used"
1371
  msgstr ""
1372
 
1373
+ #: inc/taxonomies.php:331
1374
  msgid "(e.g. No actors found)"
1375
  msgstr ""
1376
 
1377
+ #: inc/taxonomies.php:332
1378
  msgid "Not found"
1379
  msgstr ""
1380
 
1381
+ #: inc/taxonomies.php:355
1382
  msgid "Whether the taxonomy can have parent-child relationships"
1383
  msgstr ""
1384
 
1385
+ #: inc/taxonomies.php:372
1386
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1387
  msgstr ""
1388
 
1389
+ #: inc/taxonomies.php:389
1390
+ msgid "Sets the query_var key for this taxonomy."
1391
+ msgstr ""
1392
+
1393
+ #: inc/taxonomies.php:397
1394
  msgid "(default: none). Query Var needs to be true to use."
1395
  msgstr ""
1396
 
1397
+ #: inc/taxonomies.php:398
1398
  msgid "Custom Query Var String"
1399
  msgstr ""
1400
 
1401
+ #: inc/taxonomies.php:399
1402
+ msgid "Sets a custom query_var slug for this taxonomy."
1403
  msgstr ""
1404
 
1405
+ #: inc/taxonomies.php:415
1406
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1407
  msgstr ""
1408
 
1409
+ #: inc/taxonomies.php:423
1410
  msgid "(default: taxonomy name)"
1411
  msgstr ""
1412
 
1413
+ #: inc/taxonomies.php:425
1414
+ msgid "Custom taxonomy rewrite slug."
1415
  msgstr ""
1416
 
1417
+ #: inc/taxonomies.php:439
1418
  msgid "Rewrite With Front"
1419
  msgstr ""
1420
 
1421
+ #: inc/taxonomies.php:440
1422
  msgid "(default: true)"
1423
  msgstr ""
1424
 
1425
+ #: inc/taxonomies.php:456
1426
  msgid "Rewrite Hierarchical"
1427
  msgstr ""
1428
 
1429
+ #: inc/taxonomies.php:457
1430
  msgid "(default: false)"
1431
  msgstr ""
1432
 
1433
+ #: inc/taxonomies.php:458
1434
  msgid "Should the permastruct allow hierarchical urls."
1435
  msgstr ""
1436
 
1437
+ #: inc/taxonomies.php:473
1438
  msgid "Show Admin Column"
1439
  msgstr ""
1440
 
1441
+ #: inc/taxonomies.php:475
1442
  msgid ""
1443
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1444
  "types."
1445
  msgstr ""
1446
 
1447
+ #: inc/taxonomies.php:573
1448
+ msgid "Please provide a taxonomy to delete"
 
 
 
 
1449
  msgstr ""
1450
 
1451
+ #: inc/taxonomies.php:624
1452
+ msgid "Please provide a taxonomy name"
 
 
 
 
 
 
1453
  msgstr ""
1454
 
1455
+ #: inc/taxonomies.php:640
1456
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1457
+ msgstr ""
1458
+
1459
+ #: inc/taxonomies.php:646
1460
  #, php-format
1461
+ msgid "Please choose a different taxonomy name. %s is already used."
 
 
 
 
1462
  msgstr ""
1463
 
1464
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:116
1465
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:158
1466
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:201
1467
+ #: tests/CPTUI-Admin-UI-Inputs-Test.php:243
1468
+ msgid "Whether posts of this type should be shown in the admin UI"
1469
  msgstr ""
1470
 
1471
+ #. Plugin URI of the plugin/theme
1472
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1473
  msgstr ""
1474
 
1475
+ #. Description of the plugin/theme
1476
+ msgid ""
1477
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1478
  msgstr ""
1479
 
1480
+ #. Author of the plugin/theme
1481
+ msgid "WebDevStudios"
1482
+ msgstr ""
1483
+
1484
+ #. Author URI of the plugin/theme
1485
+ msgid "http://webdevstudios.com/"
1486
  msgstr ""
phpunit.xml DELETED
@@ -1,15 +0,0 @@
1
- <phpunit
2
- bootstrap="tests/bootstrap.php"
3
- backupGlobals="false"
4
- colors="true"
5
- convertErrorsToExceptions="true"
6
- convertNoticesToExceptions="true"
7
- convertWarningsToExceptions="true"
8
- >
9
- <testsuites>
10
- <testsuite>
11
- <!--<directory prefix="test-" suffix=".php">./</directory>-->
12
- <directory suffix=".php">./tests/</directory>
13
- </testsuite>
14
- </testsuites>
15
- </phpunit>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
- Stable tag: 1.0.8
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,21 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  = 1.0.8 =
41
  * Register taxonomies at a higher priority than post types.
42
 
@@ -237,6 +252,21 @@ Implied credit to:
237
 
238
  == Upgrade Notice ==
239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  = 1.0.8 =
241
  * Register taxonomies at a higher priority than post types.
242
 
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
+ Stable tag: 1.1.0
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.1.0 =
41
+ * Simplified UI with regards to clicking amount.
42
+ * Auto selecting of first available post type or taxonomy in Edit tab.
43
+ * Switch to post type or taxonomy upon selection within Edit tab.
44
+ * Return of a list of CPTUI-registered post types and taxonomies.
45
+ * Post type slug update capability.
46
+ * Added function reference 3rd party link to support area.
47
+ * New hooks in edit screen for custom content display on screen.
48
+ * String updates.
49
+ * UI field option for custom "Supports" parameters from other plugins. Example: Yet Another Related Posts Plugin.
50
+ * Updated help/support section with another reference tool.
51
+ * Trim extra spaces potentially left behind in text inputs.
52
+ * Rearranged menu listing slightly to remove duplicate naming.
53
+ * GitHub repo has GitHub Updater (https://github.com/afragen/github-updater) compatible copy of CPTUI version that is available on WordPress.org
54
+
55
  = 1.0.8 =
56
  * Register taxonomies at a higher priority than post types.
57
 
252
 
253
  == Upgrade Notice ==
254
 
255
+ = 1.1.0 =
256
+ * Simplified UI with regards to clicking amount.
257
+ * Auto selecting of first available post type or taxonomy in Edit tab.
258
+ * Switch to post type or taxonomy upon selection within Edit tab.
259
+ * Return of a list of CPTUI-registered post types and taxonomies.
260
+ * Post type slug update capability.
261
+ * Added function reference 3rd party link to support area.
262
+ * New hooks in edit screen for custom content display on screen.
263
+ * String updates.
264
+ * UI field option for custom "Supports" parameters from other plugins. Example: Yet Another Related Posts Plugin.
265
+ * Updated help/support section with another reference tool.
266
+ * Trim extra spaces potentially left behind in text inputs.
267
+ * Rearranged menu listing slightly to remove duplicate naming.
268
+ * GitHub repo has GitHub Updater (https://github.com/afragen/github-updater) compatible copy of CPTUI version that is available on WordPress.org
269
+
270
  = 1.0.8 =
271
  * Register taxonomies at a higher priority than post types.
272
 
tests/CPTUI-Admin-UI-Core-Test.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- require_once( 'CPTUI-Base-Tests.php' );
3
-
4
- /**
5
- * An example test case.
6
- */
7
- class CPTUI_Admin_UI_Core extends CPTUI_Base_Tests {
8
-
9
- public function setUp() {
10
- parent::setUp();
11
- }
12
-
13
- public function tearDown() {
14
- parent::tearDown();
15
- }
16
-
17
- /**
18
- * Tests for our file being present and available.
19
- */
20
- public function test_CPTUI_Admin_UI_Exists() {
21
- $this->assertFileExists( CPTUI_DIRECTORY_PATH . '/classes/class.cptui_admin_ui.php' );
22
- }
23
-
24
- /**
25
- * Test that we are able to instantiate our class and get an object back.
26
- */
27
- public function test_CPTUI_Admin_UI_Objects() {
28
- $ui = new cptui_admin_ui();
29
- $this->assertInstanceOf( 'cptui_admin_ui', $ui );
30
- }
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/CPTUI-Admin-UI-Inputs-Test.php DELETED
@@ -1,365 +0,0 @@
1
- <?php
2
- require_once( 'CPTUI-Base-Tests.php' );
3
-
4
- /**
5
- * An example test case.
6
- */
7
- class CPTUI_Admin_UI_Inputs_Test extends CPTUI_Base_Tests {
8
-
9
- public function setUp() {
10
- parent::setUp();
11
- }
12
-
13
- public function tearDown() {
14
- parent::tearDown();
15
- }
16
-
17
- /**
18
- * Tests our label method.
19
- */
20
- public function test_CPTUI_Label() {
21
- $ui = new cptui_admin_ui();
22
- $expected = '<label for="testing">Testing</label>';
23
-
24
- $this->assertEquals( $expected, $ui->get_label( 'testing', 'Testing' ) );
25
- }
26
-
27
- /**
28
- * Tests our required field method.
29
- */
30
- public function test_CPTUI_Required() {
31
- $ui = new cptui_admin_ui();
32
- $expected = '<span class="required">*</span>';
33
-
34
- $this->assertEquals( $expected, $ui->get_required() );
35
- }
36
-
37
- /**
38
- * Tests our textarea field method.
39
- */
40
- public function test_CPTUI_Textarea() {
41
- $ui = new cptui_admin_ui();
42
-
43
- $expected = '<tr valign="top">
44
- <th scope="row">
45
- <label for="name">Description</label>
46
- <a href="#" title="Helper text." class="cptui-help wp-ui-highlight">?</a>
47
- </th>
48
- <td>
49
- <textarea id="name" name="name_array[name]" rows="4" cols="40">saved value</textarea>
50
- </td>
51
- </tr>';
52
-
53
- $args = array(
54
- 'namearray' => 'name_array',
55
- 'name' => 'name',
56
- 'rows' => '4',
57
- 'cols' => '40',
58
- 'textvalue' => 'saved value',
59
- 'labeltext' => 'Description',
60
- 'helptext' => 'Helper text.'
61
- );
62
-
63
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_textarea_input( $args ) );
64
- }
65
-
66
- /**
67
- * Tests our text field method.
68
- */
69
- public function test_CPTUI_Text() {
70
- $ui = new cptui_admin_ui();
71
-
72
- $expected = '<tr valign="top">
73
- <th scope="row">
74
- <label for="name">Description</label>
75
- <a href="#" title="Helper text." class="cptui-help wp-ui-highlight">?</a>
76
- </th>
77
- <td>
78
- <input type="text" id="name" name="name_array[name]" value="saved value" /><br/>
79
- </td>
80
- </tr>';
81
-
82
- $args = array(
83
- 'namearray' => 'name_array',
84
- 'name' => 'name',
85
- 'rows' => '4',
86
- 'cols' => '40',
87
- 'textvalue' => 'saved value',
88
- 'labeltext' => 'Description',
89
- 'helptext' => 'Helper text.'
90
- );
91
-
92
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_text_input( $args ) );
93
- }
94
-
95
- /**
96
- * Tests our select input.
97
- *
98
- * This test checks for no required boolean and no saved value.
99
- */
100
- public function test_CPTUI_Select_No_Required_No_Saved() {
101
- $ui = new cptui_admin_ui();
102
-
103
- $select = array(
104
- 'options' => array(
105
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
106
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
107
- )
108
- );
109
-
110
- $select['selected'] = '';
111
- $args = array(
112
- 'namearray' => 'cpt_custom_post_type',
113
- 'name' => 'public',
114
- 'labeltext' => __( 'Public', 'cpt-plugin' ),
115
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
116
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI', 'cpt-plugin' ),
117
- 'selections' => $select
118
- );
119
-
120
- $expected = '<tr valign="top">
121
- <th scope="row">
122
- <label for="public">Public</label>
123
- <a href="#" title="Whether posts of this type should be shown in the admin UI" class="cptui-help wp-ui-highlight">?</a>
124
- </th>
125
- <td>
126
- <select id="public" name="cpt_custom_post_type[public]">
127
- <option value="0">False</option>
128
- <option value="1" selected="selected">True</option>
129
- </select>
130
- (default: True)
131
- </td>
132
- </tr>';
133
-
134
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
135
- }
136
-
137
- /**
138
- * Tests our select input.
139
- *
140
- * This test checks for no required boolean and no saved value.
141
- */
142
- public function test_CPTUI_Select_Required_No_Saved() {
143
- $ui = new cptui_admin_ui();
144
-
145
- $select = array(
146
- 'options' => array(
147
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
148
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
149
- )
150
- );
151
-
152
- $select['selected'] = '';
153
- $args = array(
154
- 'namearray' => 'cpt_custom_post_type',
155
- 'name' => 'public',
156
- 'labeltext' => __( 'Public', 'cpt-plugin' ),
157
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
158
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI', 'cpt-plugin' ),
159
- 'selections' => $select,
160
- 'required' => true
161
- );
162
-
163
- $expected = '<tr valign="top">
164
- <th scope="row">
165
- <label for="public">Public</label><span class="required">*</span>
166
- <a href="#" title="Whether posts of this type should be shown in the admin UI" class="cptui-help wp-ui-highlight">?</a>
167
- </th>
168
- <td>
169
- <select id="public" name="cpt_custom_post_type[public]">
170
- <option value="0">False</option>
171
- <option value="1" selected="selected">True</option>
172
- </select>
173
- (default: True)
174
- </td>
175
- </tr>';
176
-
177
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
178
- }
179
-
180
- /**
181
- * Tests our select input.
182
- *
183
- * This test checks for no required boolean and a "true" saved value.
184
- */
185
- public function test_CPTUI_Select_No_Required_True_Saved() {
186
- $ui = new cptui_admin_ui();
187
-
188
- $select = array(
189
- 'options' => array(
190
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
191
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
192
- )
193
- );
194
-
195
- $select['selected'] = '1';
196
- $args = array(
197
- 'namearray' => 'cpt_custom_post_type',
198
- 'name' => 'public',
199
- 'labeltext' => __( 'Public', 'cpt-plugin' ),
200
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
201
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI', 'cpt-plugin' ),
202
- 'selections' => $select,
203
- );
204
-
205
- $expected = '<tr valign="top">
206
- <th scope="row">
207
- <label for="public">Public</label>
208
- <a href="#" title="Whether posts of this type should be shown in the admin UI" class="cptui-help wp-ui-highlight">?</a>
209
- </th>
210
- <td>
211
- <select id="public" name="cpt_custom_post_type[public]">
212
- <option value="0">False</option>
213
- <option value="1" selected="selected">True</option>
214
- </select>
215
- (default: True)
216
- </td>
217
- </tr>';
218
-
219
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
220
- }
221
-
222
- /**
223
- * Tests our select input.
224
- *
225
- * This test checks for no required boolean and a "false" saved value.
226
- */
227
- public function test_CPTUI_Select_No_Required_False_Saved() {
228
- $ui = new cptui_admin_ui();
229
-
230
- $select = array(
231
- 'options' => array(
232
- array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
233
- array( 'attr' => '1', 'text' => __( 'True', 'cpt-plugin' ), 'default' => 'true' )
234
- )
235
- );
236
-
237
- $select['selected'] = '0';
238
- $args = array(
239
- 'namearray' => 'cpt_custom_post_type',
240
- 'name' => 'public',
241
- 'labeltext' => __( 'Public', 'cpt-plugin' ),
242
- 'aftertext' => __( '(default: True)', 'cpt-plugin' ),
243
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI', 'cpt-plugin' ),
244
- 'selections' => $select,
245
- );
246
-
247
- $expected = '<tr valign="top">
248
- <th scope="row">
249
- <label for="public">Public</label>
250
- <a href="#" title="Whether posts of this type should be shown in the admin UI" class="cptui-help wp-ui-highlight">?</a>
251
- </th>
252
- <td>
253
- <select id="public" name="cpt_custom_post_type[public]">
254
- <option value="0" selected="selected">False</option>
255
- <option value="1">True</option>
256
- </select>
257
- (default: True)
258
- </td>
259
- </tr>';
260
-
261
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
262
- }
263
-
264
- /**
265
- * Tests non boolean based select inputs
266
- */
267
- public function test_CPTUI_Select_Non_Bool_No_Option() {
268
- $ui = new cptui_admin_ui();
269
-
270
- $select = array();
271
- $select['options'] = array();
272
-
273
- $select['options'][] = array( 'attr' => '', 'text' => '--' );
274
- $select['options'][] = array( 'attr' => 'movie', 'text' => 'Movies' );
275
- $select['options'][] = array( 'attr' => 'tv_show', 'text' => 'TV Show' );
276
-
277
- $select['selected'] = '';
278
- $args = array(
279
- 'namearray' => 'cptui_selected_post_type',
280
- 'name' => 'post_type',
281
- 'selections' => $select,
282
- 'wrap' => false
283
- );
284
-
285
- $expected = '<select id="post_type" name="cptui_selected_post_type[post_type]">
286
- <option value="">--</option>
287
- <option value="movie">Movies</option>
288
- <option value="tv_show">TV Show</option>
289
- </select>';
290
-
291
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
292
- }
293
-
294
- /**
295
- * Tests non boolean based select inputs
296
- */
297
- public function test_CPTUI_Select_Non_Bool_First_Option() {
298
- $ui = new cptui_admin_ui();
299
-
300
- $select = array();
301
- $select['options'] = array();
302
-
303
- $select['options'][] = array( 'attr' => '', 'text' => '--' );
304
- $select['options'][] = array( 'attr' => 'movie', 'text' => 'Movies' );
305
- $select['options'][] = array( 'attr' => 'tv_show', 'text' => 'TV Show' );
306
-
307
- $select['selected'] = 'movie';
308
- $args = array(
309
- 'namearray' => 'cptui_selected_post_type',
310
- 'name' => 'post_type',
311
- 'selections' => $select,
312
- 'wrap' => false
313
- );
314
-
315
- $expected = '<select id="post_type" name="cptui_selected_post_type[post_type]">
316
- <option value="">--</option>
317
- <option value="movie" selected="selected">Movies</option>
318
- <option value="tv_show">TV Show</option>
319
- </select>';
320
-
321
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
322
- }
323
-
324
- /**
325
- * Tests non boolean based select inputs
326
- */
327
- public function test_CPTUI_Select_Non_Bool_Second_Option() {
328
- $ui = new cptui_admin_ui();
329
-
330
- $select = array();
331
- $select['options'] = array();
332
-
333
- $select['options'][] = array( 'attr' => '', 'text' => '--' );
334
- $select['options'][] = array( 'attr' => 'movie', 'text' => 'Movies' );
335
- $select['options'][] = array( 'attr' => 'tv_show', 'text' => 'TV Show' );
336
-
337
- $select['selected'] = 'tv_show';
338
- $args = array(
339
- 'namearray' => 'cptui_selected_post_type',
340
- 'name' => 'post_type',
341
- 'selections' => $select,
342
- 'wrap' => false
343
- );
344
-
345
- $expected = '<select id="post_type" name="cptui_selected_post_type[post_type]">
346
- <option value="">--</option>
347
- <option value="movie">Movies</option>
348
- <option value="tv_show" selected="selected">TV Show</option>
349
- </select>';
350
-
351
- $this->assertHTMLstringsAreEqual( $expected, $ui->get_select_input( $args ) );
352
- }
353
-
354
- public function providertest_something()
355
- {
356
- return array(
357
- array('This string will be sluggified', 'this-string-will-be-sluggified'),
358
- array('THIS STRING WILL BE SLUGGIFIED', 'this-string-will-be-sluggified'),
359
- array('This1 string2 will3 be 44 sluggified10', 'this1-string2-will3-be-44-sluggified10'),
360
- array('This! @string#$ %$will ()be "sluggified', 'this-string-will-be-sluggified'),
361
- array("Tänk efter nu – förr'n vi föser dig bort", 'tank-efter-nu-forrn-vi-foser-dig-bort'),
362
- array('', ''),
363
- );
364
- }
365
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/CPTUI-Admin-UI-Wrappers-Test.php DELETED
@@ -1,87 +0,0 @@
1
- <?php
2
- require_once( 'CPTUI-Base-Tests.php' );
3
-
4
- /**
5
- * An example test case.
6
- */
7
- class CPTUI_Admin_UI_Wrappers extends CPTUI_Base_Tests {
8
-
9
- public function setUp() {
10
- parent::setUp();
11
- }
12
-
13
- public function tearDown() {
14
- parent::tearDown();
15
- }
16
-
17
- /**
18
- * Tests our opening tr method.
19
- */
20
- public function test_CPTUI_Opening_TR() {
21
- $ui = new cptui_admin_ui();
22
- $expected = '<tr valign="top">';
23
-
24
- $this->assertEquals( $expected, $ui->get_tr_start() );
25
- }
26
-
27
- /**
28
- * Tests our closing tr method.
29
- */
30
- public function test_CPTUI_Closing_TR() {
31
- $ui = new cptui_admin_ui();
32
- $expected = '</tr>';
33
-
34
- $this->assertEquals( $expected, $ui->get_tr_end() );
35
- }
36
-
37
- /**
38
- * Tests our opening th method.
39
- */
40
- public function test_CPTUI_Opening_TH() {
41
- $ui = new cptui_admin_ui();
42
- $expected = '<th scope="row">';
43
-
44
- $this->assertEquals( $expected, $ui->get_th_start() );
45
- }
46
-
47
- /**
48
- * Tests our closing th method.
49
- */
50
- public function test_CPTUI_Closing_TH() {
51
- $ui = new cptui_admin_ui();
52
- $expected = '</th>';
53
-
54
- $this->assertEquals( $expected, $ui->get_th_end() );
55
- }
56
-
57
- /**
58
- * Tests our opening td method.
59
- */
60
- public function test_CPTUI_Opening_TD() {
61
- $ui = new cptui_admin_ui();
62
- $expected = '<td>';
63
-
64
- $this->assertEquals( $expected, $ui->get_td_start() );
65
- }
66
-
67
- /**
68
- * Tests our closing td method.
69
- */
70
- public function test_CPTUI_Closing_TD() {
71
- $ui = new cptui_admin_ui();
72
- $expected = '</td>';
73
-
74
- $this->assertEquals( $expected, $ui->get_td_end() );
75
- }
76
-
77
- /**
78
- * Tests our wrapping p tag.
79
- */
80
- public function test_CPTUI_P_Wrap() {
81
- $ui = new cptui_admin_ui();
82
- $expected = '<p>CPTUI is Awesome!</p>';
83
-
84
- $this->assertEquals( $expected, $ui->get_p( 'CPTUI is Awesome!' ) );
85
-
86
- }
87
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/CPTUI-Base-Tests.php DELETED
@@ -1,49 +0,0 @@
1
- <?php
2
-
3
- abstract class CPTUI_Base_Tests extends WP_UnitTestCase {
4
-
5
- public function setUp() {
6
- parent::setUp();
7
- }
8
-
9
- public function tearDown() {
10
- parent::tearDown();
11
- }
12
-
13
- public function assertHTMLstringsAreEqual( $expected_string, $string_to_test ) {
14
- $expected_string = $this->normalize_string( $expected_string );
15
- $string_to_test = $this->normalize_string( $string_to_test );
16
- $compare = strcmp( $expected_string, $string_to_test );
17
- if ( 0 !== $compare ) {
18
- $compare = strspn( $expected_string ^ $string_to_test, "\0" );
19
- $chars_to_show = 50;
20
- $start = ( $compare - 5 );
21
- $pointer = '|--->>';
22
- $sep = "\n". str_repeat( '-', 75 );
23
- $compare = sprintf(
24
- $sep . "\nFirst difference at position %d:\n\n Expected: \t%s\n Actual: \t%s\n" . $sep,
25
- $compare,
26
- substr( $expected_string, $start, 5 ) . $pointer . substr( $expected_string, $compare, $chars_to_show ),
27
- substr( $string_to_test, $start, 5 ) . $pointer . substr( $string_to_test, $compare, $chars_to_show )
28
- );
29
- }
30
- return $this->assertEquals( $expected_string, $string_to_test, ! empty( $compare ) ? $compare : null );
31
- }
32
-
33
-
34
- public function assertIsDefined( $definition ) {
35
- return $this->assertTrue( defined( $definition ), "$definition is not defined." );
36
- }
37
-
38
- public function normalize_string( $string ) {
39
- return trim( preg_replace( array(
40
- '/[\t\n\r]/', // Remove tabs and newlines
41
- '/\s{2,}/', // Replace repeating spaces with one space
42
- '/> </', // Remove spaces between carats
43
- ), array(
44
- '',
45
- ' ',
46
- '><',
47
- ), $string ) );
48
- }
49
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/CPTUI-Utilities-Test.php DELETED
@@ -1,193 +0,0 @@
1
- <?php
2
- require_once( 'CPTUI-Base-Tests.php' );
3
-
4
- class CPTUI_Utility extends CPTUI_Base_Tests {
5
-
6
- public $post_type_array = array();
7
- public $taxonomy_array = array();
8
-
9
- public function setUp() {
10
- parent::setUp();
11
- }
12
-
13
- public function tearDown() {
14
- parent::tearDown();
15
- }
16
-
17
- /**
18
- * @before
19
- */
20
- public function setupPostTypeTax() {
21
- $this->post_type_array = $this->setup_cpt_option();
22
- $this->taxonomy_array = $this->setup_tax_option();
23
- }
24
-
25
- /**
26
- * @after
27
- */
28
- public function removePostTypeTax() {
29
- _unregister_post_type( 'movie' );
30
- _unregister_taxonomy( 'actors' );
31
- }
32
-
33
- /**
34
- * Tests our setting of our post type option and retrieval afterwards.
35
- */
36
- public function test_CPTUI_set_post_type_option() {
37
- $this->assertTrue( is_array( $this->post_type_array ), 'Option returned false' );
38
- $this->assertArrayHasKey( 'movie', $this->post_type_array, 'Movie was not found in returned option value' );
39
- }
40
-
41
- /**
42
- * Tests that we have our needed post type functions
43
- */
44
- public function test_CPTUI_post_type_registration_function_exists() {
45
- $this->assertTrue( function_exists( 'cptui_register_single_post_type' ) );
46
- }
47
-
48
- /**
49
- * Tests for successful registering of post types with our own custom functions.
50
- */
51
- public function test_CPTUI_registered_post_type() {
52
- $this->register_post_type();
53
-
54
- $registered = get_post_types();
55
- $this->assertArrayHasKey( 'movie', $registered );
56
- }
57
-
58
- /**
59
- * Tests for our registered labels for the post type.
60
- */
61
- public function test_CPTUI_registered_post_type_labels_names() {
62
- $this->register_post_type();
63
-
64
- $movie = get_post_type_object( 'movie' );
65
- $this->assertTrue( is_object( $movie ) );
66
- $this->assertTrue( is_object( $movie->labels ) );
67
- $this->assertNotEmpty( $movie->labels, 'No labels available' );
68
-
69
- $this->assertEquals( 'Movies', $movie->labels->name );
70
- $this->assertEquals( 'Movie', $movie->labels->singular_name );
71
- $this->assertEquals( 'My Movies', $movie->labels->menu_name );
72
- $this->assertEquals( 'All Movies', $movie->labels->all_items );
73
- $this->assertEquals( 'Add New', $movie->labels->add_new );
74
- $this->assertEquals( 'Add New Movie', $movie->labels->add_new_item );
75
- $this->assertEquals( 'Edit', $movie->labels->edit );
76
- $this->assertEquals( 'Edit Movie', $movie->labels->edit_item );
77
- $this->assertEquals( 'New Movie', $movie->labels->new_item );
78
- $this->assertEquals( 'View', $movie->labels->view );
79
- $this->assertEquals( 'View Movie', $movie->labels->view_item );
80
- $this->assertEquals( 'Search Movies', $movie->labels->search_items );
81
- $this->assertEquals( 'No Movies Found', $movie->labels->not_found );
82
- $this->assertEquals( 'No Movies found in trash', $movie->labels->not_found_in_trash );
83
- $this->assertEquals( 'Parent Movie', $movie->labels->parent );
84
- }
85
-
86
- /**
87
- * Tests our setting of our taxonomy option and retrieval afterwards.
88
- */
89
- public function test_CPTUI_set_taxonomy_option() {
90
- $this->assertTrue( is_array( $this->taxonomy_array ), 'Option returned false' );
91
- $this->assertArrayHasKey( 'actors', $this->taxonomy_array, 'Actors was not found in returned option value' );
92
- }
93
-
94
- /**
95
- * Tests that we have our needed taxonomy functions
96
- */
97
- public function test_CPTUI_taxonomy_registration_function_exists() {
98
- $this->assertTrue( function_exists( 'cptui_register_single_taxonomy' ) );
99
- }
100
-
101
- /**
102
- * Tests for successful registering of taxonomies with our own custom functions.
103
- */
104
- public function test_CPTUI_registered_taxonomy() {
105
- $this->register_post_type();
106
- $this->register_taxonomy();
107
-
108
- $registered = get_taxonomies();
109
- $this->assertArrayHasKey( 'actors', $registered );
110
- }
111
-
112
- /**
113
- * Tests for our registered labels for the taxonomy.
114
- */
115
- public function test_CPTUI_registered_taxonomy_labels_names() {
116
- $this->register_post_type();
117
- $this->register_taxonomy();
118
-
119
- $actor = get_taxonomy( 'actors' );
120
- $this->assertTrue( is_object( $actor ) );
121
- $this->assertTrue( is_object( $actor->labels ) );
122
- $this->assertNotEmpty( $actor->labels, 'No labels available' );
123
-
124
- }
125
-
126
- public function test_get_disp_boolean() {
127
-
128
- $this->assertFalse( get_disp_boolean( 0 ) );
129
- $this->assertFalse( get_disp_boolean( '0' ) );
130
- $this->assertFalse( get_disp_boolean( false ) );
131
- $this->assertFalse( get_disp_boolean( 'false' ) );
132
- $this->assertFalse( get_disp_boolean( '' ) );
133
- $this->assertFalse( get_disp_boolean( null ) );
134
-
135
- $this->assertTrue( get_disp_boolean( 1 ) );
136
- $this->assertTrue( get_disp_boolean( '1' ) );
137
- $this->assertTrue( get_disp_boolean( true ) );
138
- $this->assertTrue( get_disp_boolean( 'true' ) );
139
- $this->assertTrue( get_disp_boolean( 'abcd' ) );
140
- $this->assertTrue( get_disp_boolean( 1235 ) );
141
- }
142
-
143
- public function test_disp_boolean() {
144
-
145
- $this->assertEquals( 'false', disp_boolean( 0 ) );
146
- $this->assertEquals( 'false', disp_boolean( '0' ) );
147
- $this->assertEquals( 'false', disp_boolean( false ) );
148
- $this->assertEquals( 'false', disp_boolean( 'false' ) );
149
- $this->assertEquals( 'false', disp_boolean( '' ) );
150
- $this->assertEquals( 'false', disp_boolean( null ) );
151
-
152
- $this->assertEquals( 'true', disp_boolean( 1 ) );
153
- $this->assertEquals( 'true', disp_boolean( '1' ) );
154
- $this->assertEquals( 'true', disp_boolean( true ) );
155
- $this->assertEquals( 'true', disp_boolean( 'true' ) );
156
- $this->assertEquals( 'true', disp_boolean( 'abcd' ) );
157
- $this->assertEquals( 'true', disp_boolean( 1235 ) );
158
-
159
- }
160
-
161
- /**
162
- * Create our base post type to test.
163
- * @return mixed|void
164
- */
165
- public function setup_cpt_option() {
166
-
167
- $custom = 'a:1:{s:5:"movie";a:21:{s:4:"name";s:5:"movie";s:5:"label";s:6:"Movies";s:14:"singular_label";s:5:"Movie";s:11:"description";s:0:"";s:6:"public";s:4:"true";s:7:"show_ui";s:4:"true";s:11:"has_archive";s:5:"false";s:19:"exclude_from_search";s:5:"false";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:5:"false";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:4:"true";s:9:"query_var";s:4:"true";s:13:"menu_position";s:0:"";s:12:"show_in_menu";s:4:"true";s:19:"show_in_menu_string";s:0:"";s:9:"menu_icon";N;s:8:"supports";a:0:{}s:10:"taxonomies";a:0:{}s:6:"labels";a:13:{s:9:"menu_name";s:9:"My Movies";s:9:"all_items";s:10:"All Movies";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:13:"Add New Movie";s:4:"edit";s:4:"Edit";s:9:"edit_item";s:10:"Edit Movie";s:8:"new_item";s:9:"New Movie";s:4:"view";s:4:"View";s:9:"view_item";s:10:"View Movie";s:12:"search_items";s:13:"Search Movies";s:9:"not_found";s:15:"No Movies Found";s:18:"not_found_in_trash";s:24:"No Movies found in trash";s:6:"parent";s:12:"Parent Movie";}}}';
168
- update_option( 'cptui_post_types', maybe_unserialize( $custom ) );
169
-
170
- return get_option( 'cptui_post_types' );
171
- }
172
-
173
- /**
174
- * Create our base taxonomy to test
175
- * @return mixed|void
176
- */
177
- public function setup_tax_option() {
178
-
179
- $custom = 'a:1:{s:6:"actors";a:14:{s:4:"name";s:6:"actors";s:5:"label";s:6:"Actors";s:14:"singular_label";s:5:"Actor";s:12:"hierarchical";s:5:"false";s:7:"show_ui";s:4:"true";s:9:"query_var";s:4:"true";s:14:"query_var_slug";s:0:"";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:1:"1";s:20:"rewrite_hierarchical";s:1:"0";s:17:"show_admin_column";s:5:"false";s:6:"labels";a:0:{}s:11:"object_type";a:1:{i:0;s:5:"movie";}}}';
180
- update_option( 'cptui_taxonomies', maybe_unserialize( $custom ) );
181
-
182
- return get_option( 'cptui_taxonomies' );
183
- }
184
-
185
- public function register_post_type() {
186
- cptui_register_single_post_type( $this->post_type_array['movie'] );
187
- }
188
-
189
- public function register_taxonomy() {
190
- cptui_register_single_taxonomy( $this->taxonomy_array['actors'] );
191
- }
192
-
193
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/bootstrap.php DELETED
@@ -1,53 +0,0 @@
1
- <?php
2
-
3
- ini_set('display_errors','on');
4
- error_reporting(E_ALL);
5
-
6
- /**
7
- * Set `WP_TESTS_DIR` to the base directory of WordPress:
8
- * `svn export http://develop.svn.wordpress.org/trunk/ /tmp/wordpress-tests`
9
- *
10
- * Then add this to your bash environment:
11
- *
12
- * export WP_TESTS_DIR=/tmp/wordpress/tests
13
- */
14
- if ( ! $wp_test_dir = getenv('WP_TESTS_DIR') ) {
15
-
16
- $wp_test_dir = '/tmp/wordpress-tests-lib';
17
-
18
- if ( ! file_exists( $wp_test_dir . '/includes' ) ) {
19
- die( "Fatal Error: Could not find the WordPress tests directory.\n" );
20
- }
21
- }
22
-
23
- /**
24
- * Loads WP utility functions like `tests_add_filter` and `_delete_all_posts`.
25
- */
26
- require_once $wp_test_dir . '/includes/functions.php';
27
-
28
- /**
29
- * Preset wp_options before loading the WordPress stack.
30
- *
31
- * Used to activate themes, plugins, as well as other settings in `wp_options`.
32
- *
33
- * @see wp_tests_options
34
- */
35
- $GLOBALS['wp_tests_options'] = array(
36
- 'active_plugins' => array(
37
- 'hello.php',
38
- ),
39
- );
40
-
41
- /**
42
- * Run custom functionality after mu-plugins are loaded.
43
- */
44
- function _tests_load_cptui() {
45
- define( 'CPTUI_DIRECTORY_PATH', trailingslashit( dirname( dirname( __FILE__ ) ) ) );
46
- require CPTUI_DIRECTORY_PATH . 'custom-post-type-ui.php';
47
- }
48
- tests_add_filter( 'muplugins_loaded', '_tests_load_cptui' );
49
-
50
- /**
51
- * Bootstraps the WordPress stack.
52
- */
53
- require $wp_test_dir . '/includes/bootstrap.php';