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