Custom Post Type UI - Version 1.1.2

Version Description

  • Change export value to plural label for taxonomies.
  • Properly select a post type or taxonomy after deleting an existing value.
  • Updated screenshots
  • Added target="_blank" attribute to one of the inline help links for Menu position. Thanks @JulieKuehl
  • Fixed potential XSS issue.
Download this release

Release Info

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

Code changes from version 1.1.1 to 1.1.2

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.1.1
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.1.1' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
@@ -639,6 +639,7 @@ add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'cptui_edit_pl
639
  function cptui_admin_notices( $action = '', $object_type = '', $success = true , $custom = '' ) {
640
 
641
  $class = ( $success ) ? 'updated' : 'error';
 
642
 
643
  $messagewrapstart = '<div id="message" class="' . $class . '"><p>';
644
  $message = '';
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.2
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.2' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
639
  function cptui_admin_notices( $action = '', $object_type = '', $success = true , $custom = '' ) {
640
 
641
  $class = ( $success ) ? 'updated' : 'error';
642
+ $object_type = esc_attr( $object_type );
643
 
644
  $messagewrapstart = '<div id="message" class="' . $class . '"><p>';
645
  $message = '';
inc/import_export.php CHANGED
@@ -192,7 +192,7 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
192
  ?>
193
 
194
  $labels = array(
195
- "name" => "<?php echo $taxonomy['name']; ?>",
196
  "label" => "<?php echo $taxonomy['label']; ?>",
197
  <?php foreach( $taxonomy['labels'] as $key => $label ) {
198
  if ( !empty( $label ) ) {
192
  ?>
193
 
194
  $labels = array(
195
+ "name" => "<?php echo $taxonomy['label']; ?>",
196
  "label" => "<?php echo $taxonomy['label']; ?>",
197
  <?php foreach( $taxonomy['labels'] as $key => $label ) {
198
  if ( !empty( $label ) ) {
inc/post-types.php CHANGED
@@ -44,6 +44,8 @@ add_action( 'admin_enqueue_scripts', 'cptui_post_type_enqueue_scripts' );
44
  */
45
  function cptui_manage_post_types() {
46
 
 
 
47
  if ( !empty( $_POST ) ) {
48
  if ( isset( $_POST['cpt_submit'] ) ) {
49
  check_admin_referer( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
@@ -51,6 +53,7 @@ function cptui_manage_post_types() {
51
  } elseif ( isset( $_POST['cpt_delete'] ) ) {
52
  check_admin_referer( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
53
  $notice = cptui_delete_post_type( $_POST );
 
54
  }
55
  }
56
 
@@ -69,7 +72,7 @@ function cptui_manage_post_types() {
69
 
70
  $post_types = get_option( 'cptui_post_types' );
71
 
72
- $selected_post_type = cptui_get_current_post_type();
73
 
74
  if ( $selected_post_type ) {
75
  if ( array_key_exists( $selected_post_type, $post_types ) ) {
@@ -582,7 +585,7 @@ function cptui_manage_post_types() {
582
  echo $ui->get_tr_start() . $ui->get_th_start();
583
  echo $ui->get_label( 'menu_position', __( 'Menu Position', 'cpt-plugin' ) );
584
  echo $ui->get_help( esc_attr__( 'The position in the menu order the post type should appear. show_in_menu must be true.', 'cpt-plugin' ) );
585
- echo $ui->get_p( __( 'See <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Parameters">Available options</a> in the "menu_position" section. Range of 5-100', 'cpt-plugin' ) );
586
 
587
  echo $ui->get_th_end() . $ui->get_td_start();
588
  echo $ui->get_text_input( array(
@@ -920,14 +923,21 @@ function cptui_post_types_dropdown( $post_types = array() ) {
920
  *
921
  * @since 1.0.0
922
  *
 
 
923
  * @return bool|string $value False on no result, sanitized post type if set.
924
  */
925
- function cptui_get_current_post_type() {
926
  if ( ! empty( $_POST ) ) {
927
  if ( isset( $_POST['cptui_selected_post_type']['post_type'] ) ) {
928
  return sanitize_text_field( $_POST['cptui_selected_post_type']['post_type'] );
929
  }
930
 
 
 
 
 
 
931
  if ( isset( $_POST['cpt_custom_post_type']['name'] ) ) {
932
  return sanitize_text_field( $_POST['cpt_custom_post_type']['name'] );
933
  }
44
  */
45
  function cptui_manage_post_types() {
46
 
47
+ $post_type_deleted = false;
48
+
49
  if ( !empty( $_POST ) ) {
50
  if ( isset( $_POST['cpt_submit'] ) ) {
51
  check_admin_referer( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
53
  } elseif ( isset( $_POST['cpt_delete'] ) ) {
54
  check_admin_referer( 'cptui_addedit_post_type_nonce_action', 'cptui_addedit_post_type_nonce_field' );
55
  $notice = cptui_delete_post_type( $_POST );
56
+ $post_type_deleted = true;
57
  }
58
  }
59
 
72
 
73
  $post_types = get_option( 'cptui_post_types' );
74
 
75
+ $selected_post_type = cptui_get_current_post_type( $post_type_deleted );
76
 
77
  if ( $selected_post_type ) {
78
  if ( array_key_exists( $selected_post_type, $post_types ) ) {
585
  echo $ui->get_tr_start() . $ui->get_th_start();
586
  echo $ui->get_label( 'menu_position', __( 'Menu Position', 'cpt-plugin' ) );
587
  echo $ui->get_help( esc_attr__( 'The position in the menu order the post type should appear. show_in_menu must be true.', 'cpt-plugin' ) );
588
+ echo $ui->get_p( __( 'See <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Parameters" target="_blank">Available options</a> in the "menu_position" section. Range of 5-100', 'cpt-plugin' ) );
589
 
590
  echo $ui->get_th_end() . $ui->get_td_start();
591
  echo $ui->get_text_input( array(
923
  *
924
  * @since 1.0.0
925
  *
926
+ * @param bool $post_type_deleted Whether or not a post type was recently deleted.
927
+ *
928
  * @return bool|string $value False on no result, sanitized post type if set.
929
  */
930
+ function cptui_get_current_post_type( $post_type_deleted = false ) {
931
  if ( ! empty( $_POST ) ) {
932
  if ( isset( $_POST['cptui_selected_post_type']['post_type'] ) ) {
933
  return sanitize_text_field( $_POST['cptui_selected_post_type']['post_type'] );
934
  }
935
 
936
+ if ( $post_type_deleted ) {
937
+ $post_types = get_option( 'cptui_post_types' );
938
+ return key( $post_types );
939
+ }
940
+
941
  if ( isset( $_POST['cpt_custom_post_type']['name'] ) ) {
942
  return sanitize_text_field( $_POST['cpt_custom_post_type']['name'] );
943
  }
inc/taxonomies.php CHANGED
@@ -38,6 +38,8 @@ add_action( 'admin_enqueue_scripts', 'cptui_taxonomies_enqueue_scripts' );
38
  */
39
  function cptui_manage_taxonomies() {
40
 
 
 
41
  if ( !empty( $_POST ) ) {
42
  if ( isset( $_POST['cpt_submit'] ) ) {
43
  check_admin_referer( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
@@ -45,6 +47,7 @@ function cptui_manage_taxonomies() {
45
  } elseif ( isset( $_POST['cpt_delete'] ) ) {
46
  check_admin_referer( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
47
  $notice = cptui_delete_taxonomy( $_POST );
 
48
  }
49
  }
50
 
@@ -65,7 +68,7 @@ function cptui_manage_taxonomies() {
65
 
66
  $taxonomies = get_option( 'cptui_taxonomies' );
67
 
68
- $selected_taxonomy = cptui_get_current_taxonomy();
69
 
70
  if ( $selected_taxonomy ) {
71
  if ( array_key_exists( $selected_taxonomy, $taxonomies ) ) {
@@ -526,14 +529,21 @@ function cptui_taxonomies_dropdown( $taxonomies = array() ) {
526
  *
527
  * @since 1.0.0
528
  *
 
 
529
  * @return bool|string False on no result, sanitized taxonomy if set.
530
  */
531
- function cptui_get_current_taxonomy() {
532
  if ( !empty( $_POST ) ) {
533
  if ( isset( $_POST['cptui_selected_taxonomy']['taxonomy'] ) ) {
534
  return sanitize_text_field( $_POST['cptui_selected_taxonomy']['taxonomy'] );
535
  }
536
 
 
 
 
 
 
537
  if ( isset( $_POST['cpt_custom_tax']['name'] ) ) {
538
  return sanitize_text_field( $_POST['cpt_custom_tax']['name'] );
539
  }
38
  */
39
  function cptui_manage_taxonomies() {
40
 
41
+ $taxonomy_deleted = false;
42
+
43
  if ( !empty( $_POST ) ) {
44
  if ( isset( $_POST['cpt_submit'] ) ) {
45
  check_admin_referer( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
47
  } elseif ( isset( $_POST['cpt_delete'] ) ) {
48
  check_admin_referer( 'cptui_addedit_taxonomy_nonce_action', 'cptui_addedit_taxonomy_nonce_field' );
49
  $notice = cptui_delete_taxonomy( $_POST );
50
+ $taxonomy_deleted = true;
51
  }
52
  }
53
 
68
 
69
  $taxonomies = get_option( 'cptui_taxonomies' );
70
 
71
+ $selected_taxonomy = cptui_get_current_taxonomy( $taxonomy_deleted );
72
 
73
  if ( $selected_taxonomy ) {
74
  if ( array_key_exists( $selected_taxonomy, $taxonomies ) ) {
529
  *
530
  * @since 1.0.0
531
  *
532
+ * @param bool $taxonomy_deleted Whether or not a taxonomy was recently deleted.
533
+ *
534
  * @return bool|string False on no result, sanitized taxonomy if set.
535
  */
536
+ function cptui_get_current_taxonomy( $taxonomy_deleted = false ) {
537
  if ( !empty( $_POST ) ) {
538
  if ( isset( $_POST['cptui_selected_taxonomy']['taxonomy'] ) ) {
539
  return sanitize_text_field( $_POST['cptui_selected_taxonomy']['taxonomy'] );
540
  }
541
 
542
+ if ( $taxonomy_deleted ) {
543
+ $taxonomies = get_option( 'cptui_taxonomies' );
544
+ return key( $taxonomies );
545
+ }
546
+
547
  if ( isset( $_POST['cpt_custom_tax']['name'] ) ) {
548
  return sanitize_text_field( $_POST['cpt_custom_tax']['name'] );
549
  }
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,8 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 1.1.0\n"
4
- "POT-Creation-Date: 2015-06-15 22:32-0600\n"
5
- "PO-Revision-Date: 2015-06-15 22:32-0600\n"
 
 
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
@@ -10,13 +12,17 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.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"
@@ -204,8 +210,8 @@ 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:374
208
- #: inc/taxonomies.php:340
209
  msgid "Settings"
210
  msgstr "Einstellungen"
211
 
@@ -213,122 +219,122 @@ msgstr "Einstellungen"
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"
@@ -483,16 +489,16 @@ msgstr "Anzahl: %d"
483
  msgid "Post Type"
484
  msgstr "Post Type"
485
 
486
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
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:212 inc/taxonomies.php:198
492
  msgid "Labels"
493
  msgstr "Beschriftungen"
494
 
495
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
496
  msgid "Edit"
497
  msgstr "Bearbeiten"
498
 
@@ -512,7 +518,7 @@ msgstr "Taxonomie"
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."
@@ -521,7 +527,7 @@ msgstr ""
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."
@@ -530,23 +536,23 @@ msgstr ""
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:91 inc/taxonomies.php:88
538
  msgid "Select"
539
  msgstr "Auswählen"
540
 
541
- #: inc/post-types.php:121
542
  msgid "Post Type Slug"
543
  msgstr "Post Type-Kurzlink"
544
 
545
- #: inc/post-types.php:122
546
  msgid "(e.g. movie)"
547
  msgstr "(z. B. film)"
548
 
549
- #: inc/post-types.php:123
550
  msgid ""
551
  "The post type name. Used to retrieve custom post type content. Should be "
552
  "short and unique"
@@ -554,33 +560,33 @@ msgstr ""
554
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
555
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
556
 
557
- #: inc/post-types.php:134 inc/taxonomies.php:126
558
  msgid "Plural Label"
559
  msgstr "Beschriftung (Plural)"
560
 
561
- #: inc/post-types.php:135
562
  msgid "(e.g. Movies)"
563
  msgstr "(z. B. Filme)"
564
 
565
- #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
566
- #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
567
- #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
568
- #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
569
- #: inc/post-types.php:365
570
  msgid "Post type label. Used in the admin menu for displaying post types."
571
  msgstr ""
572
  "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
573
  "verwendet den Post Type anzuzeigen."
574
 
575
- #: inc/post-types.php:146 inc/taxonomies.php:135
576
  msgid "Singular Label"
577
  msgstr "Beschriftung (Singular)"
578
 
579
- #: inc/post-types.php:147
580
  msgid "(e.g. Movie)"
581
  msgstr "(z. B. Film)"
582
 
583
- #: inc/post-types.php:148
584
  msgid ""
585
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
586
  "needed."
@@ -588,11 +594,11 @@ msgstr ""
588
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
589
  "Beschriftungen in der Einzahl benötigt werden."
590
 
591
- #: inc/post-types.php:164
592
  msgid "Description"
593
  msgstr "Beschreibung"
594
 
595
- #: inc/post-types.php:165
596
  msgid ""
597
  "Custom Post Type Description. Describe what your custom post type is used "
598
  "for."
@@ -600,34 +606,34 @@ msgstr ""
600
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
601
  "verwendet wird."
602
 
603
- #: inc/post-types.php:177
604
  msgid "Migrate posts to newly renamed post type?"
605
  msgstr ""
606
  "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
607
 
608
- #: inc/post-types.php:178
609
  msgid "Check this to migrate posts if and when renaming your post type."
610
  msgstr ""
611
  "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
612
  "Type umbenennen willst."
613
 
614
- #: inc/post-types.php:187
615
  msgid "Save Post Type"
616
  msgstr "Post Type speichern"
617
 
618
- #: inc/post-types.php:188
619
  msgid "Delete Post Type"
620
  msgstr "Post Type löschen"
621
 
622
- #: inc/post-types.php:190
623
  msgid "Add Post Type"
624
  msgstr "Post Type hinzufügen"
625
 
626
- #: inc/post-types.php:201 inc/taxonomies.php:187
627
  msgid "Starter Notes"
628
  msgstr "Tips für Einsteiger"
629
 
630
- #: inc/post-types.php:204
631
  #, php-format
632
  msgid ""
633
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -641,7 +647,7 @@ msgstr ""
641
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
642
  "revision, nav_menu_item."
643
 
644
- #: inc/post-types.php:205
645
  #, php-format
646
  msgid ""
647
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -657,7 +663,7 @@ msgstr ""
657
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
658
  "roten Fragezeichen."
659
 
660
- #: inc/post-types.php:206
661
  #, php-format
662
  msgid ""
663
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -668,152 +674,139 @@ msgstr ""
668
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
669
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
670
 
671
- #: inc/post-types.php:220 inc/taxonomies.php:208
672
  msgid "Menu Name"
673
  msgstr "Menü-Name"
674
 
675
- #: inc/post-types.php:221
676
  msgid "Custom menu name for your custom post type."
677
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
678
 
679
- #: inc/post-types.php:225
680
  msgid "(e.g. My Movies)"
681
  msgstr "(z. B. Mein Film)"
682
 
683
- #: inc/post-types.php:232 inc/taxonomies.php:217
684
  msgid "All Items"
685
  msgstr "Alle Einträge"
686
 
687
- #: inc/post-types.php:237
688
  msgid "(e.g. All Movies)"
689
  msgstr "(z. B. Alle Filme)"
690
 
691
- #: inc/post-types.php:244
692
  msgid "Add New"
693
  msgstr "Neu"
694
 
695
- #: inc/post-types.php:249
696
  msgid "(e.g. Add New)"
697
  msgstr "(z. B. Neuen hinzufügen)"
698
 
699
- #: inc/post-types.php:256 inc/taxonomies.php:253
700
  msgid "Add New Item"
701
  msgstr "Neuen Eintrag erstellen"
702
 
703
- #: inc/post-types.php:261
704
  msgid "(e.g. Add New Movie)"
705
  msgstr "(z. B. Neuen Film hinzufügen)"
706
 
707
- #: inc/post-types.php:273
708
  msgid "(e.g. Edit)"
709
  msgstr "(z. B. Bearbeiten)"
710
 
711
- #: inc/post-types.php:280 inc/taxonomies.php:226
712
  msgid "Edit Item"
713
  msgstr "Eintrag bearbeiten"
714
 
715
- #: inc/post-types.php:285
716
  msgid "(e.g. Edit Movie)"
717
  msgstr "(z. B. Film bearbeiten)"
718
 
719
- #: inc/post-types.php:292
720
  msgid "New Item"
721
  msgstr "Neuer Eintrag"
722
 
723
- #: inc/post-types.php:297
724
  msgid "(e.g. New Movie)"
725
  msgstr "(z. B. Neuer Film)"
726
 
727
- #: inc/post-types.php:304
728
  msgid "View"
729
  msgstr "Anzeigen"
730
 
731
- #: inc/post-types.php:309
732
  msgid "(e.g. View)"
733
  msgstr "(z. B. Anzeigen)"
734
 
735
- #: inc/post-types.php:316 inc/taxonomies.php:235
736
  msgid "View Item"
737
  msgstr "Eintrag anzeigen"
738
 
739
- #: inc/post-types.php:321
740
  msgid "(e.g. View Movie)"
741
  msgstr "(z. B. Film anzeigen)"
742
 
743
- #: inc/post-types.php:328
744
  msgid "Search Item"
745
  msgstr "Eintrag suchen"
746
 
747
- #: inc/post-types.php:333
748
  msgid "(e.g. Search Movie)"
749
  msgstr "(z. B. Film suchen)"
750
 
751
- #: inc/post-types.php:340
752
  msgid "Not Found"
753
  msgstr "Nicht gefunden"
754
 
755
- #: inc/post-types.php:345
756
  msgid "(e.g. No Movies found)"
757
  msgstr "(z. B. Keine Filme gefunden)"
758
 
759
- #: inc/post-types.php:352
760
  msgid "Not Found in Trash"
761
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
762
 
763
- #: inc/post-types.php:357
764
  msgid "(e.g. No Movies found in Trash)"
765
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
766
 
767
- #: inc/post-types.php:364
768
  msgid "Parent"
769
  msgstr "Übergeordnet"
770
 
771
- #: inc/post-types.php:369
772
  msgid "(e.g. Parent Movie)"
773
  msgstr "(z. B. Übergeordneter Film)"
774
 
775
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
776
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
777
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
778
- #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
779
- #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
780
- #: inc/taxonomies.php:466 tests/CPTUI-Admin-UI-Inputs-Test.php:105
781
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
782
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
783
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
784
  msgid "False"
785
  msgstr "deaktiviert"
786
 
787
- #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
788
- #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
789
- #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
790
- #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
791
- #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
792
- #: inc/taxonomies.php:467 tests/CPTUI-Admin-UI-Inputs-Test.php:106
793
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
794
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
795
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
796
  msgid "True"
797
  msgstr "aktiviert"
798
 
799
- #: inc/post-types.php:392 tests/CPTUI-Admin-UI-Inputs-Test.php:114
800
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
801
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
802
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
803
  msgid "Public"
804
  msgstr "Öffentlich"
805
 
806
- #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
807
- #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
808
- #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
809
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
810
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
811
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
812
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:242
813
  msgid "(default: True)"
814
  msgstr "(Voreinstellung: aktiviert)"
815
 
816
- #: inc/post-types.php:394
817
  msgid ""
818
  "Whether posts of this type should be shown in the admin UI and is publicly "
819
  "queryable."
@@ -821,111 +814,111 @@ msgstr ""
821
  "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
822
  "öffentlich durchsuchbar sind."
823
 
824
- #: inc/post-types.php:412 inc/taxonomies.php:372
825
  msgid "Show UI"
826
  msgstr "Benutzeroberfläche anzeigen"
827
 
828
- #: inc/post-types.php:414
829
  msgid "Whether to generate a default UI for managing this post type."
830
  msgstr ""
831
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
832
  "angelegt werden."
833
 
834
- #: inc/post-types.php:422
835
  msgid "Has Archive"
836
  msgstr "Hat ein Archiv"
837
 
838
- #: inc/post-types.php:423
839
  msgid "Whether the post type will have a post type archive URL."
840
  msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
841
 
842
- #: inc/post-types.php:424
843
  msgid "If left blank, the archive slug will default to the post type slug."
844
  msgstr ""
845
  "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
846
  "Post Type-Kurzlink gesetzt."
847
 
848
- #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
849
- #: inc/taxonomies.php:356 inc/taxonomies.php:476
850
  msgid "(default: False)"
851
  msgstr "(Voreinstellung: deaktiviert)"
852
 
853
- #: inc/post-types.php:450
854
  msgid "Slug to be used for archive URL."
855
  msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
856
 
857
- #: inc/post-types.php:470
858
  msgid "Exclude From Search"
859
  msgstr "Von der Suche ausschließen"
860
 
861
- #: inc/post-types.php:472
862
  msgid ""
863
  "Whether to exclude posts with this post type from front end search results."
864
  msgstr ""
865
  "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
866
  "ausgeschlossen werden sollen."
867
 
868
- #: inc/post-types.php:483
869
  msgid "Capability Type"
870
  msgstr "Fähigkeiten"
871
 
872
- #: inc/post-types.php:484
873
  msgid "The post type to use for checking read, edit, and delete capabilities"
874
  msgstr ""
875
  "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
876
  "Bearbeiten und Löschen zu prüfen"
877
 
878
- #: inc/post-types.php:501 inc/taxonomies.php:355
879
  msgid "Hierarchical"
880
  msgstr "Hierarchisch"
881
 
882
- #: inc/post-types.php:503
883
  msgid "Whether the post type can have parent-child relationships"
884
  msgstr "Darf der Post Type hierarchische Beziehungen haben"
885
 
886
- #: inc/post-types.php:521 inc/taxonomies.php:415
887
  msgid "Rewrite"
888
  msgstr "Rewrite"
889
 
890
- #: inc/post-types.php:523
891
  msgid "Whether or not WordPress should use rewrites for this post type"
892
  msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
893
 
894
- #: inc/post-types.php:534 inc/taxonomies.php:426
895
  msgid "Custom Rewrite Slug"
896
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
897
 
898
- #: inc/post-types.php:535
899
  msgid "(default: post type slug)"
900
  msgstr "(Voreinstellung: Post Type-Kurzlink)"
901
 
902
- #: inc/post-types.php:536
903
  msgid "Custom post type slug to use instead of the default."
904
  msgstr ""
905
  "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
906
  "benutzt werden soll."
907
 
908
- #: inc/post-types.php:553
909
  msgid "With Front"
910
  msgstr "Front Base voranstellen"
911
 
912
- #: inc/post-types.php:555 inc/taxonomies.php:443
913
  msgid "Should the permastruct be prepended with the front base."
914
  msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
915
 
916
- #: inc/post-types.php:573 inc/taxonomies.php:389
917
  msgid "Query Var"
918
  msgstr "Abfrage Variable"
919
 
920
- #: inc/post-types.php:575
921
  msgid "Sets the query_var key for this post type."
922
  msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
923
 
924
- #: inc/post-types.php:583
925
  msgid "Menu Position"
926
  msgstr "Menü Position"
927
 
928
- #: inc/post-types.php:584
929
  msgid ""
930
  "The position in the menu order the post type should appear. show_in_menu "
931
  "must be true."
@@ -933,27 +926,28 @@ msgstr ""
933
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
934
  "anzeigen\" muss dafür aktiviert sein."
935
 
936
- #: inc/post-types.php:585
 
937
  msgid ""
938
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
939
- "register_post_type#Parameters\">Available options</a> in the \"menu_position"
940
- "\" section. Range of 5-100"
941
  msgstr ""
942
  "<a href=\"http://codex.wordpress.org/Function_Reference/"
943
  "register_post_type#Parameters\">Lies mehr </a> zu den verfügbaren "
944
  "Einstellungsmöglichkeiten für die „Menü Position\" Funktion. Die möglichen "
945
  "Werte reichen von 5 bis 100."
946
 
947
- #: inc/post-types.php:600
948
  msgid "Show in Menu"
949
  msgstr "Im Menü anzeigen"
950
 
951
- #: inc/post-types.php:601
952
  msgid ""
953
  "Whether to show the post type in the admin menu and where to show that menu."
954
  msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
955
 
956
- #: inc/post-types.php:602
957
  msgid ""
958
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
959
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -962,40 +956,40 @@ msgstr ""
962
  "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
963
  "angegeben sein wird der Post Type als Untermenü davon angezeigt."
964
 
965
- #: inc/post-types.php:628
966
  msgid "Top-level page file name to make post type a sub-menu of."
967
  msgstr ""
968
  "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
969
 
970
- #: inc/post-types.php:640
971
  msgid "Menu Icon"
972
  msgstr "Menü-Icon"
973
 
974
- #: inc/post-types.php:641
975
  msgid "(Full URL for icon or Dashicon class)"
976
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
977
 
978
- #: inc/post-types.php:642
979
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
980
  msgstr ""
981
  "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
982
  "Dashicon-Klasse."
983
 
984
- #: inc/post-types.php:655
985
  msgid "Title"
986
  msgstr "Titel"
987
 
988
- #: inc/post-types.php:656
989
  msgid "Adds the title meta box when creating content for this custom post type"
990
  msgstr ""
991
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
992
  "erstellt werden"
993
 
994
- #: inc/post-types.php:670
995
  msgid "Editor"
996
  msgstr "Text-Editor"
997
 
998
- #: inc/post-types.php:671
999
  msgid ""
1000
  "Adds the content editor meta box when creating content for this custom post "
1001
  "type"
@@ -1003,33 +997,33 @@ msgstr ""
1003
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
1004
  "Type erstellt werden"
1005
 
1006
- #: inc/post-types.php:685
1007
  msgid "Excerpt"
1008
  msgstr "Auszug"
1009
 
1010
- #: inc/post-types.php:686
1011
  msgid ""
1012
  "Adds the excerpt meta box when creating content for this custom post type"
1013
  msgstr ""
1014
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1015
  "erstellt werden"
1016
 
1017
- #: inc/post-types.php:700
1018
  msgid "Trackbacks"
1019
  msgstr "Trackbacks"
1020
 
1021
- #: inc/post-types.php:701
1022
  msgid ""
1023
  "Adds the trackbacks meta box when creating content for this custom post type"
1024
  msgstr ""
1025
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1026
  "Type erstellt werden"
1027
 
1028
- #: inc/post-types.php:715
1029
  msgid "Custom Fields"
1030
  msgstr "Eigene Felder"
1031
 
1032
- #: inc/post-types.php:716
1033
  msgid ""
1034
  "Adds the custom fields meta box when creating content for this custom post "
1035
  "type"
@@ -1037,33 +1031,33 @@ msgstr ""
1037
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1038
  "Type erstellt werden"
1039
 
1040
- #: inc/post-types.php:730
1041
  msgid "Comments"
1042
  msgstr "Kommentare"
1043
 
1044
- #: inc/post-types.php:731
1045
  msgid ""
1046
  "Adds the comments meta box when creating content for this custom post type"
1047
  msgstr ""
1048
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1049
  "Type erstellt werden"
1050
 
1051
- #: inc/post-types.php:745
1052
  msgid "Revisions"
1053
  msgstr "Revisionen"
1054
 
1055
- #: inc/post-types.php:746
1056
  msgid ""
1057
  "Adds the revisions meta box when creating content for this custom post type"
1058
  msgstr ""
1059
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1060
  "Type erstellt werden"
1061
 
1062
- #: inc/post-types.php:760
1063
  msgid "Featured Image"
1064
  msgstr "Beitragsbild"
1065
 
1066
- #: inc/post-types.php:761
1067
  msgid ""
1068
  "Adds the featured image meta box when creating content for this custom post "
1069
  "type"
@@ -1071,22 +1065,22 @@ msgstr ""
1071
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1072
  "Type erstellt werden"
1073
 
1074
- #: inc/post-types.php:775
1075
  msgid "Author"
1076
  msgstr "Autor"
1077
 
1078
- #: inc/post-types.php:776
1079
  msgid ""
1080
  "Adds the author meta box when creating content for this custom post type"
1081
  msgstr ""
1082
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1083
  "erstellt werden"
1084
 
1085
- #: inc/post-types.php:790
1086
  msgid "Page Attributes"
1087
  msgstr "Seiten Attribute"
1088
 
1089
- #: inc/post-types.php:791
1090
  msgid ""
1091
  "Adds the page attribute meta box when creating content for this custom post "
1092
  "type"
@@ -1094,67 +1088,67 @@ msgstr ""
1094
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1095
  "Post Type erstellt werden"
1096
 
1097
- #: inc/post-types.php:805
1098
  msgid "Post Formats"
1099
  msgstr "Format"
1100
 
1101
- #: inc/post-types.php:806
1102
  msgid "Adds post format support"
1103
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1104
 
1105
- #: inc/post-types.php:811
1106
  msgid "Use the option below to explicitly set \"supports\" to false."
1107
  msgstr ""
1108
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1109
  "zu deaktivieren."
1110
 
1111
- #: inc/post-types.php:819
1112
  msgid "None"
1113
  msgstr "Keine"
1114
 
1115
- #: inc/post-types.php:820
1116
  msgid "Remove all support features"
1117
  msgstr "Entfernt alle „Unterstützt“-Features"
1118
 
1119
- #: inc/post-types.php:826
1120
  msgid "Custom \"Supports\""
1121
  msgstr "Benutzerdefinierte „Unterstützt“"
1122
 
1123
- #: inc/post-types.php:827
1124
  msgid ""
1125
  "Use this input to register custom \"supports\" values, separated by commas."
1126
  msgstr ""
1127
  "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1128
  "definieren welche durch Kommas getrennt sind."
1129
 
1130
- #: inc/post-types.php:833
1131
  msgid "Provide custom support slugs here."
1132
  msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1133
 
1134
- #: inc/post-types.php:839
1135
  msgid "Built-in Taxonomies"
1136
  msgstr "Vorhandene Taxonomien"
1137
 
1138
- #: inc/post-types.php:868 inc/taxonomies.php:169
1139
  #, php-format
1140
  msgid "Adds %s support"
1141
  msgstr "Fügt %s Unterstützung hinzu"
1142
 
1143
- #: inc/post-types.php:967
1144
  msgid "Please provide a post type to delete"
1145
  msgstr "Bitte gib einen Post Type zum Löschen an"
1146
 
1147
- #: inc/post-types.php:1027
1148
  msgid "Please provide a post type name"
1149
  msgstr "Bitte gib einen Namen für den Post Type an"
1150
 
1151
- #: inc/post-types.php:1051
1152
  msgid "Please do not use quotes in post type names or rewrite slugs"
1153
  msgstr ""
1154
  "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1155
  "Kurzlinks"
1156
 
1157
- #: inc/post-types.php:1058
1158
  #, php-format
1159
  msgid "Please choose a different post type name. %s is already registered."
1160
  msgstr ""
@@ -1364,7 +1358,7 @@ msgstr ""
1364
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1365
  "möglich sein dies anzupassen falls notwendig."
1366
 
1367
- #: inc/taxonomies.php:82
1368
  msgid ""
1369
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1370
  "registers a new taxonomy entry for your install."
@@ -1373,15 +1367,15 @@ msgstr ""
1373
  "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1374
  "Eintrag für Deine Installation."
1375
 
1376
- #: inc/taxonomies.php:115
1377
  msgid "Taxonomy Slug"
1378
  msgstr "Taxonomie-Kurzlink"
1379
 
1380
- #: inc/taxonomies.php:116
1381
  msgid "(e.g. actor)"
1382
  msgstr "(z. B. regisseure)"
1383
 
1384
- #: inc/taxonomies.php:117
1385
  msgid ""
1386
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1387
  "and unique"
@@ -1389,44 +1383,44 @@ msgstr ""
1389
  "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1390
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1391
 
1392
- #: inc/taxonomies.php:125 inc/taxonomies.php:207
1393
  msgid "(e.g. Actors)"
1394
  msgstr "(z. B. Regisseure)"
1395
 
1396
- #: inc/taxonomies.php:127
1397
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1398
  msgstr ""
1399
  "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1400
  "benutzerdefinierte Taxonomien anzuzeigen."
1401
 
1402
- #: inc/taxonomies.php:134
1403
  msgid "(e.g. Actor)"
1404
  msgstr "(z. B. Regisseur)"
1405
 
1406
- #: inc/taxonomies.php:136
1407
  msgid ""
1408
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1409
  msgstr ""
1410
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1411
  "Beschriftungen in der Einzahl benötigt werden."
1412
 
1413
- #: inc/taxonomies.php:139
1414
  msgid "Attach to Post Type"
1415
  msgstr "Mit Post Type verbinden"
1416
 
1417
- #: inc/taxonomies.php:178
1418
  msgid "Save Taxonomy"
1419
  msgstr "Taxonomie speichern"
1420
 
1421
- #: inc/taxonomies.php:179
1422
  msgid "Delete Taxonomy"
1423
  msgstr "Taxonomie löschen"
1424
 
1425
- #: inc/taxonomies.php:181
1426
  msgid "Add Taxonomy"
1427
  msgstr "Taxonomie hinzufügen"
1428
 
1429
- #: inc/taxonomies.php:190
1430
  #, php-format
1431
  msgid ""
1432
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1437,7 +1431,7 @@ msgstr ""
1437
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1438
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1439
 
1440
- #: inc/taxonomies.php:191
1441
  #, php-format
1442
  msgid ""
1443
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1454,7 +1448,7 @@ msgstr ""
1454
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1455
  "roten Fragezeichen."
1456
 
1457
- #: inc/taxonomies.php:192
1458
  #, php-format
1459
  msgid ""
1460
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1469,180 +1463,180 @@ msgstr ""
1469
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1470
  "Begriffe nicht in der Datenbank aktualisiert."
1471
 
1472
- #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1473
- #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1474
- #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1475
- #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1476
- #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1477
  msgid ""
1478
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1479
  msgstr ""
1480
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1481
  "Anzeige von Taxonomien verwendet."
1482
 
1483
- #: inc/taxonomies.php:216
1484
  msgid "(e.g. All Actors)"
1485
  msgstr "(z. B. Alle Regisseure)"
1486
 
1487
- #: inc/taxonomies.php:225
1488
  msgid "(e.g. Edit Actor)"
1489
  msgstr "(z. B. Regisseur bearbeiten)"
1490
 
1491
- #: inc/taxonomies.php:234
1492
  msgid "(e.g. View Actor)"
1493
  msgstr "(z. B. Regisseur anzeigen)"
1494
 
1495
- #: inc/taxonomies.php:243
1496
  msgid "(e.g. Update Actor Name)"
1497
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1498
 
1499
- #: inc/taxonomies.php:244
1500
  msgid "Update Item Name"
1501
  msgstr "Eintragsname aktualisieren"
1502
 
1503
- #: inc/taxonomies.php:252
1504
  msgid "(e.g. Add New Actor)"
1505
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1506
 
1507
- #: inc/taxonomies.php:261
1508
  msgid "(e.g. New Actor Name)"
1509
  msgstr "(z. B. Neuer Regisseursname)"
1510
 
1511
- #: inc/taxonomies.php:262
1512
  msgid "New Item Name"
1513
  msgstr "Neuer Eintragsname"
1514
 
1515
- #: inc/taxonomies.php:270
1516
  msgid "(e.g. Parent Actor)"
1517
  msgstr "(z. B. Übergeordneter Regisseur)"
1518
 
1519
- #: inc/taxonomies.php:271
1520
  msgid "Parent Item"
1521
  msgstr "Übergeordneter Eintrag"
1522
 
1523
- #: inc/taxonomies.php:279
1524
  msgid "(e.g. Parent Actor:)"
1525
  msgstr "(z. B. Übergeordneter Regisseur:)"
1526
 
1527
- #: inc/taxonomies.php:280
1528
  msgid "Parent Item Colon"
1529
  msgstr "Übergeordneter Eintrag Komma"
1530
 
1531
- #: inc/taxonomies.php:288
1532
  msgid "(e.g. Search Actors)"
1533
  msgstr "(z. B. Regisseure durchsuchen)"
1534
 
1535
- #: inc/taxonomies.php:289
1536
  msgid "Search Items"
1537
  msgstr "Einträge durchsuchen"
1538
 
1539
- #: inc/taxonomies.php:297
1540
  msgid "(e.g. Popular Actors)"
1541
  msgstr "(z. B. beliebte Regisseure)"
1542
 
1543
- #: inc/taxonomies.php:298
1544
  msgid "Popular Items"
1545
  msgstr "Beliebte Einträge"
1546
 
1547
- #: inc/taxonomies.php:306
1548
  msgid "(e.g. Separate actors with commas)"
1549
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1550
 
1551
- #: inc/taxonomies.php:307
1552
  msgid "Separate Items with Commas"
1553
  msgstr "Trenne Einträge mittels Komma"
1554
 
1555
- #: inc/taxonomies.php:315
1556
  msgid "(e.g. Add or remove actors)"
1557
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1558
 
1559
- #: inc/taxonomies.php:316
1560
  msgid "Add or Remove Items"
1561
  msgstr "Lösche oder füge Einträge hinzu"
1562
 
1563
- #: inc/taxonomies.php:324
1564
  msgid "(e.g. Choose from the most used actors)"
1565
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1566
 
1567
- #: inc/taxonomies.php:325
1568
  msgid "Choose From Most Used"
1569
  msgstr "Wähle aus den am meisten Verwendeten"
1570
 
1571
- #: inc/taxonomies.php:333
1572
  msgid "(e.g. No actors found)"
1573
  msgstr "(z. B. Keine Regisseure gefunden)"
1574
 
1575
- #: inc/taxonomies.php:334
1576
  msgid "Not found"
1577
  msgstr "Nicht gefunden"
1578
 
1579
- #: inc/taxonomies.php:357
1580
  msgid "Whether the taxonomy can have parent-child relationships"
1581
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1582
 
1583
- #: inc/taxonomies.php:374
1584
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1585
  msgstr ""
1586
  "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1587
  "benutzerdefinierten Taxonomie erstellt werden soll."
1588
 
1589
- #: inc/taxonomies.php:391
1590
  msgid "Sets the query_var key for this taxonomy."
1591
  msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1592
 
1593
- #: inc/taxonomies.php:399
1594
  msgid "(default: none). Query Var needs to be true to use."
1595
  msgstr ""
1596
  "(Voreinstellung: Keine - Abfrage Variable muss aktiviert sein um es benutzen "
1597
  "zu können)"
1598
 
1599
- #: inc/taxonomies.php:400
1600
  msgid "Custom Query Var String"
1601
  msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1602
 
1603
- #: inc/taxonomies.php:401
1604
  msgid "Sets a custom query_var slug for this taxonomy."
1605
  msgstr ""
1606
  "Definiere einen benutzerdefinierten Abfrage Variablen-Kurzlink für diese "
1607
  "Taxonomie."
1608
 
1609
- #: inc/taxonomies.php:417
1610
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1611
  msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1612
 
1613
- #: inc/taxonomies.php:425
1614
  msgid "(default: taxonomy name)"
1615
  msgstr "(Voreinstellung: Taxanomie Name)"
1616
 
1617
- #: inc/taxonomies.php:427
1618
  msgid "Custom taxonomy rewrite slug."
1619
  msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1620
 
1621
- #: inc/taxonomies.php:441
1622
  msgid "Rewrite With Front"
1623
  msgstr "Rewrite mit vorangestellter Front Base"
1624
 
1625
- #: inc/taxonomies.php:442
1626
  msgid "(default: true)"
1627
  msgstr "(Voreinstellung: aktiviert)"
1628
 
1629
- #: inc/taxonomies.php:458
1630
  msgid "Rewrite Hierarchical"
1631
  msgstr "Hierarchischer Rewrite"
1632
 
1633
- #: inc/taxonomies.php:459
1634
  msgid "(default: false)"
1635
  msgstr "(Voreinstellung: deaktiviert)"
1636
 
1637
- #: inc/taxonomies.php:460
1638
  msgid "Should the permastruct allow hierarchical urls."
1639
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1640
 
1641
- #: inc/taxonomies.php:475
1642
  msgid "Show Admin Column"
1643
  msgstr "Anzeige von Admin-Spalten"
1644
 
1645
- #: inc/taxonomies.php:477
1646
  msgid ""
1647
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1648
  "types."
@@ -1650,33 +1644,26 @@ msgstr ""
1650
  "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1651
  "Post Types erlaubt werden."
1652
 
1653
- #: inc/taxonomies.php:575
1654
  msgid "Please provide a taxonomy to delete"
1655
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1656
 
1657
- #: inc/taxonomies.php:626
1658
  msgid "Please provide a taxonomy name"
1659
  msgstr "Gib bitte einen Taxonomie-Namen an"
1660
 
1661
- #: inc/taxonomies.php:642
1662
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1663
  msgstr ""
1664
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1665
  "Kurzlinks"
1666
 
1667
- #: inc/taxonomies.php:648
1668
  #, php-format
1669
  msgid "Please choose a different taxonomy name. %s is already used."
1670
  msgstr ""
1671
  "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1672
 
1673
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:116
1674
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:158
1675
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:201
1676
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:243
1677
- msgid "Whether posts of this type should be shown in the admin UI"
1678
- msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
1679
-
1680
  #. Plugin URI of the plugin/theme
1681
  msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1682
  msgstr "https://github.com/WebDevStudios/custom-post-type-ui/"
@@ -1696,6 +1683,10 @@ msgstr "WebDevStudios"
1696
  msgid "http://webdevstudios.com/"
1697
  msgstr "http://webdevstudios.com/"
1698
 
 
 
 
 
1699
  #~ msgid "(e.g. actors)"
1700
  #~ msgstr "(z. B. regisseure)"
1701
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-post-type-"
5
+ "ui\n"
6
+ "POT-Creation-Date: 2015-08-11 11:36-0500\n"
7
+ "PO-Revision-Date: 2015-08-11 11:36-0500\n"
8
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
10
  "koller@gmail.com>\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.2\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "X-Poedit-Basepath: ..\n"
21
  "X-Poedit-WPHeader: custom-post-type-ui.php\n"
22
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
+ "X-Poedit-SearchPathExcluded-0: tests\n"
25
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
26
 
27
  #: custom-post-type-ui.php:60
28
  msgid "Custom Post Types"
210
  msgstr "Code erhalten"
211
 
212
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
213
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
214
+ #: inc/taxonomies.php:343
215
  msgid "Settings"
216
  msgstr "Einstellungen"
217
 
219
  msgid "Help"
220
  msgstr "Hilfe"
221
 
222
+ #: custom-post-type-ui.php:651
223
  #, php-format
224
  msgid "%s has been successfully added"
225
  msgstr "%s wurde erfolgreich hinzugefügt"
226
 
227
+ #: custom-post-type-ui.php:653
228
  #, php-format
229
  msgid "%s has failed to be added"
230
  msgstr "%s konnte nicht hinzugefügt werden"
231
 
232
+ #: custom-post-type-ui.php:657
233
  #, php-format
234
  msgid "%s has been successfully updated"
235
  msgstr "%s wurde erfolgreich aktualisiert"
236
 
237
+ #: custom-post-type-ui.php:659
238
  #, php-format
239
  msgid "%s has failed to be updated"
240
  msgstr "%s konnte nicht aktualisiert werden"
241
 
242
+ #: custom-post-type-ui.php:663
243
  #, php-format
244
  msgid "%s has been successfully deleted"
245
  msgstr "%s wurde erfolgreich gelöscht"
246
 
247
+ #: custom-post-type-ui.php:665
248
  #, php-format
249
  msgid "%s has failed to be deleted"
250
  msgstr "%s konnte nicht gelöscht werden"
251
 
252
+ #: custom-post-type-ui.php:669
253
  #, php-format
254
  msgid "%s has been successfully imported"
255
  msgstr "%s wurde erfolgreich importiert"
256
 
257
+ #: custom-post-type-ui.php:671
258
  #, php-format
259
  msgid "%s has failed to be imported"
260
  msgstr "%s konnte nicht importiert werden"
261
 
262
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
263
  #, php-format
264
  msgid "Add new %s"
265
  msgstr "Neue %s hinzufügen"
266
 
267
+ #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
268
  #, php-format
269
  msgid "Edit %s"
270
  msgstr "%s bearbeiten"
271
 
272
+ #: custom-post-type-ui.php:756
273
  #, php-format
274
  msgid "New %s"
275
  msgstr "%s hinzufügen"
276
 
277
+ #: custom-post-type-ui.php:757
278
  #, php-format
279
  msgid "View %s"
280
  msgstr "%s anzeigen"
281
 
282
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
283
  #, php-format
284
  msgid "All %s"
285
  msgstr "Alle %s"
286
 
287
+ #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
288
  #, php-format
289
  msgid "Search %s"
290
  msgstr "%s durchsuchen"
291
 
292
+ #: custom-post-type-ui.php:760
293
  #, php-format
294
  msgid "No %s found."
295
  msgstr "Keine %s gefunden."
296
 
297
+ #: custom-post-type-ui.php:761
298
  #, php-format
299
  msgid "No %s found in trash."
300
  msgstr "Keine %s im Papierkorb gefunden."
301
 
302
+ #: custom-post-type-ui.php:765
303
  #, php-format
304
  msgid "Popular %s"
305
  msgstr "Beliebte %s"
306
 
307
+ #: custom-post-type-ui.php:767
308
  #, php-format
309
  msgid "Parent %s"
310
  msgstr "Übergeordnet %s"
311
 
312
+ #: custom-post-type-ui.php:768
313
  #, php-format
314
  msgid "Parent %s:"
315
  msgstr "Übergeordnet %s:"
316
 
317
+ #: custom-post-type-ui.php:770
318
  #, php-format
319
  msgid "Update %s"
320
  msgstr "%s aktualisieren"
321
 
322
+ #: custom-post-type-ui.php:772
323
  #, php-format
324
  msgid "New %s name"
325
  msgstr "Neuer %s Name"
326
 
327
+ #: custom-post-type-ui.php:773
328
  #, php-format
329
  msgid "Separate %s with commas"
330
  msgstr "%s mit Kommas trennen"
331
 
332
+ #: custom-post-type-ui.php:774
333
  #, php-format
334
  msgid "Add or remove %s"
335
  msgstr "%s hinzufügen oder entfernen"
336
 
337
+ #: custom-post-type-ui.php:775
338
  #, php-format
339
  msgid "Choose from the most used %s"
340
  msgstr "Aus den am häufigsten verwendeten %s auswählen"
489
  msgid "Post Type"
490
  msgstr "Post Type"
491
 
492
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
493
  msgid "Supports"
494
  msgstr "Unterstützt"
495
 
496
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
497
+ #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
498
  msgid "Labels"
499
  msgstr "Beschriftungen"
500
 
501
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
502
  msgid "Edit"
503
  msgstr "Bearbeiten"
504
 
518
  msgid "Are you sure you want to delete this?"
519
  msgstr "Bist Du sicher, dass Du dies löschen möchtest?"
520
 
521
+ #: inc/post-types.php:89
522
  msgid ""
523
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
524
  "registers a new post type entry for your install."
527
  "notwendig ist. Die Änderung des Namens registriert einen neue Post Type "
528
  "Eintrag für Deine Installation."
529
 
530
+ #: inc/post-types.php:90
531
  msgid ""
532
  "Use appropriate checkbox above save/delete buttons if you wish to change "
533
  "slugs and update post types for existing posts."
536
  "Kurzlink ändern willst und den Post Type für bereits existierende Beiträge "
537
  "anpassen willst."
538
 
539
+ #: inc/post-types.php:91 inc/taxonomies.php:87
540
  msgid "Select: "
541
  msgstr "Auswählen"
542
 
543
+ #: inc/post-types.php:94 inc/taxonomies.php:91
544
  msgid "Select"
545
  msgstr "Auswählen"
546
 
547
+ #: inc/post-types.php:124
548
  msgid "Post Type Slug"
549
  msgstr "Post Type-Kurzlink"
550
 
551
+ #: inc/post-types.php:125
552
  msgid "(e.g. movie)"
553
  msgstr "(z. B. film)"
554
 
555
+ #: inc/post-types.php:126
556
  msgid ""
557
  "The post type name. Used to retrieve custom post type content. Should be "
558
  "short and unique"
560
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
561
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
562
 
563
+ #: inc/post-types.php:137 inc/taxonomies.php:129
564
  msgid "Plural Label"
565
  msgstr "Beschriftung (Plural)"
566
 
567
+ #: inc/post-types.php:138
568
  msgid "(e.g. Movies)"
569
  msgstr "(z. B. Filme)"
570
 
571
+ #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
572
+ #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
573
+ #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
574
+ #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
575
+ #: inc/post-types.php:368
576
  msgid "Post type label. Used in the admin menu for displaying post types."
577
  msgstr ""
578
  "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
579
  "verwendet den Post Type anzuzeigen."
580
 
581
+ #: inc/post-types.php:149 inc/taxonomies.php:138
582
  msgid "Singular Label"
583
  msgstr "Beschriftung (Singular)"
584
 
585
+ #: inc/post-types.php:150
586
  msgid "(e.g. Movie)"
587
  msgstr "(z. B. Film)"
588
 
589
+ #: inc/post-types.php:151
590
  msgid ""
591
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
592
  "needed."
594
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
595
  "Beschriftungen in der Einzahl benötigt werden."
596
 
597
+ #: inc/post-types.php:167
598
  msgid "Description"
599
  msgstr "Beschreibung"
600
 
601
+ #: inc/post-types.php:168
602
  msgid ""
603
  "Custom Post Type Description. Describe what your custom post type is used "
604
  "for."
606
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
607
  "verwendet wird."
608
 
609
+ #: inc/post-types.php:180
610
  msgid "Migrate posts to newly renamed post type?"
611
  msgstr ""
612
  "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
613
 
614
+ #: inc/post-types.php:181
615
  msgid "Check this to migrate posts if and when renaming your post type."
616
  msgstr ""
617
  "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
618
  "Type umbenennen willst."
619
 
620
+ #: inc/post-types.php:190
621
  msgid "Save Post Type"
622
  msgstr "Post Type speichern"
623
 
624
+ #: inc/post-types.php:191
625
  msgid "Delete Post Type"
626
  msgstr "Post Type löschen"
627
 
628
+ #: inc/post-types.php:193
629
  msgid "Add Post Type"
630
  msgstr "Post Type hinzufügen"
631
 
632
+ #: inc/post-types.php:204 inc/taxonomies.php:190
633
  msgid "Starter Notes"
634
  msgstr "Tips für Einsteiger"
635
 
636
+ #: inc/post-types.php:207
637
  #, php-format
638
  msgid ""
639
  "Post Type names should have %smax 20 characters%s, and only contain "
647
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
648
  "revision, nav_menu_item."
649
 
650
+ #: inc/post-types.php:208
651
  #, php-format
652
  msgid ""
653
  "If you are unfamiliar with the advanced post type settings, just fill in the "
663
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
664
  "roten Fragezeichen."
665
 
666
+ #: inc/post-types.php:209
667
  #, php-format
668
  msgid ""
669
  "Deleting custom post types will %sNOT%s delete any content into the database "
674
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
675
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
676
 
677
+ #: inc/post-types.php:223 inc/taxonomies.php:211
678
  msgid "Menu Name"
679
  msgstr "Menü-Name"
680
 
681
+ #: inc/post-types.php:224
682
  msgid "Custom menu name for your custom post type."
683
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
684
 
685
+ #: inc/post-types.php:228
686
  msgid "(e.g. My Movies)"
687
  msgstr "(z. B. Mein Film)"
688
 
689
+ #: inc/post-types.php:235 inc/taxonomies.php:220
690
  msgid "All Items"
691
  msgstr "Alle Einträge"
692
 
693
+ #: inc/post-types.php:240
694
  msgid "(e.g. All Movies)"
695
  msgstr "(z. B. Alle Filme)"
696
 
697
+ #: inc/post-types.php:247
698
  msgid "Add New"
699
  msgstr "Neu"
700
 
701
+ #: inc/post-types.php:252
702
  msgid "(e.g. Add New)"
703
  msgstr "(z. B. Neuen hinzufügen)"
704
 
705
+ #: inc/post-types.php:259 inc/taxonomies.php:256
706
  msgid "Add New Item"
707
  msgstr "Neuen Eintrag erstellen"
708
 
709
+ #: inc/post-types.php:264
710
  msgid "(e.g. Add New Movie)"
711
  msgstr "(z. B. Neuen Film hinzufügen)"
712
 
713
+ #: inc/post-types.php:276
714
  msgid "(e.g. Edit)"
715
  msgstr "(z. B. Bearbeiten)"
716
 
717
+ #: inc/post-types.php:283 inc/taxonomies.php:229
718
  msgid "Edit Item"
719
  msgstr "Eintrag bearbeiten"
720
 
721
+ #: inc/post-types.php:288
722
  msgid "(e.g. Edit Movie)"
723
  msgstr "(z. B. Film bearbeiten)"
724
 
725
+ #: inc/post-types.php:295
726
  msgid "New Item"
727
  msgstr "Neuer Eintrag"
728
 
729
+ #: inc/post-types.php:300
730
  msgid "(e.g. New Movie)"
731
  msgstr "(z. B. Neuer Film)"
732
 
733
+ #: inc/post-types.php:307
734
  msgid "View"
735
  msgstr "Anzeigen"
736
 
737
+ #: inc/post-types.php:312
738
  msgid "(e.g. View)"
739
  msgstr "(z. B. Anzeigen)"
740
 
741
+ #: inc/post-types.php:319 inc/taxonomies.php:238
742
  msgid "View Item"
743
  msgstr "Eintrag anzeigen"
744
 
745
+ #: inc/post-types.php:324
746
  msgid "(e.g. View Movie)"
747
  msgstr "(z. B. Film anzeigen)"
748
 
749
+ #: inc/post-types.php:331
750
  msgid "Search Item"
751
  msgstr "Eintrag suchen"
752
 
753
+ #: inc/post-types.php:336
754
  msgid "(e.g. Search Movie)"
755
  msgstr "(z. B. Film suchen)"
756
 
757
+ #: inc/post-types.php:343
758
  msgid "Not Found"
759
  msgstr "Nicht gefunden"
760
 
761
+ #: inc/post-types.php:348
762
  msgid "(e.g. No Movies found)"
763
  msgstr "(z. B. Keine Filme gefunden)"
764
 
765
+ #: inc/post-types.php:355
766
  msgid "Not Found in Trash"
767
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
768
 
769
+ #: inc/post-types.php:360
770
  msgid "(e.g. No Movies found in Trash)"
771
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
772
 
773
+ #: inc/post-types.php:367
774
  msgid "Parent"
775
  msgstr "Übergeordnet"
776
 
777
+ #: inc/post-types.php:372
778
  msgid "(e.g. Parent Movie)"
779
  msgstr "(z. B. Übergeordneter Film)"
780
 
781
+ #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
782
+ #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
783
+ #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
784
+ #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
785
+ #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
786
+ #: inc/taxonomies.php:469
 
 
 
787
  msgid "False"
788
  msgstr "deaktiviert"
789
 
790
+ #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
791
+ #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
792
+ #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
793
+ #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
794
+ #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
795
+ #: inc/taxonomies.php:470
 
 
 
796
  msgid "True"
797
  msgstr "aktiviert"
798
 
799
+ #: inc/post-types.php:395
 
 
 
800
  msgid "Public"
801
  msgstr "Öffentlich"
802
 
803
+ #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
804
+ #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
805
+ #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
 
 
 
 
806
  msgid "(default: True)"
807
  msgstr "(Voreinstellung: aktiviert)"
808
 
809
+ #: inc/post-types.php:397
810
  msgid ""
811
  "Whether posts of this type should be shown in the admin UI and is publicly "
812
  "queryable."
814
  "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
815
  "öffentlich durchsuchbar sind."
816
 
817
+ #: inc/post-types.php:415 inc/taxonomies.php:375
818
  msgid "Show UI"
819
  msgstr "Benutzeroberfläche anzeigen"
820
 
821
+ #: inc/post-types.php:417
822
  msgid "Whether to generate a default UI for managing this post type."
823
  msgstr ""
824
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
825
  "angelegt werden."
826
 
827
+ #: inc/post-types.php:425
828
  msgid "Has Archive"
829
  msgstr "Hat ein Archiv"
830
 
831
+ #: inc/post-types.php:426
832
  msgid "Whether the post type will have a post type archive URL."
833
  msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
834
 
835
+ #: inc/post-types.php:427
836
  msgid "If left blank, the archive slug will default to the post type slug."
837
  msgstr ""
838
  "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
839
  "Post Type-Kurzlink gesetzt."
840
 
841
+ #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
842
+ #: inc/taxonomies.php:359 inc/taxonomies.php:479
843
  msgid "(default: False)"
844
  msgstr "(Voreinstellung: deaktiviert)"
845
 
846
+ #: inc/post-types.php:453
847
  msgid "Slug to be used for archive URL."
848
  msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
849
 
850
+ #: inc/post-types.php:473
851
  msgid "Exclude From Search"
852
  msgstr "Von der Suche ausschließen"
853
 
854
+ #: inc/post-types.php:475
855
  msgid ""
856
  "Whether to exclude posts with this post type from front end search results."
857
  msgstr ""
858
  "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
859
  "ausgeschlossen werden sollen."
860
 
861
+ #: inc/post-types.php:486
862
  msgid "Capability Type"
863
  msgstr "Fähigkeiten"
864
 
865
+ #: inc/post-types.php:487
866
  msgid "The post type to use for checking read, edit, and delete capabilities"
867
  msgstr ""
868
  "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
869
  "Bearbeiten und Löschen zu prüfen"
870
 
871
+ #: inc/post-types.php:504 inc/taxonomies.php:358
872
  msgid "Hierarchical"
873
  msgstr "Hierarchisch"
874
 
875
+ #: inc/post-types.php:506
876
  msgid "Whether the post type can have parent-child relationships"
877
  msgstr "Darf der Post Type hierarchische Beziehungen haben"
878
 
879
+ #: inc/post-types.php:524 inc/taxonomies.php:418
880
  msgid "Rewrite"
881
  msgstr "Rewrite"
882
 
883
+ #: inc/post-types.php:526
884
  msgid "Whether or not WordPress should use rewrites for this post type"
885
  msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
886
 
887
+ #: inc/post-types.php:537 inc/taxonomies.php:429
888
  msgid "Custom Rewrite Slug"
889
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
890
 
891
+ #: inc/post-types.php:538
892
  msgid "(default: post type slug)"
893
  msgstr "(Voreinstellung: Post Type-Kurzlink)"
894
 
895
+ #: inc/post-types.php:539
896
  msgid "Custom post type slug to use instead of the default."
897
  msgstr ""
898
  "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
899
  "benutzt werden soll."
900
 
901
+ #: inc/post-types.php:556
902
  msgid "With Front"
903
  msgstr "Front Base voranstellen"
904
 
905
+ #: inc/post-types.php:558 inc/taxonomies.php:446
906
  msgid "Should the permastruct be prepended with the front base."
907
  msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
908
 
909
+ #: inc/post-types.php:576 inc/taxonomies.php:392
910
  msgid "Query Var"
911
  msgstr "Abfrage Variable"
912
 
913
+ #: inc/post-types.php:578
914
  msgid "Sets the query_var key for this post type."
915
  msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
916
 
917
+ #: inc/post-types.php:586
918
  msgid "Menu Position"
919
  msgstr "Menü Position"
920
 
921
+ #: inc/post-types.php:587
922
  msgid ""
923
  "The position in the menu order the post type should appear. show_in_menu "
924
  "must be true."
926
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
927
  "anzeigen\" muss dafür aktiviert sein."
928
 
929
+ #: inc/post-types.php:588
930
+ #, fuzzy
931
  msgid ""
932
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
933
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
934
+ "the \"menu_position\" section. Range of 5-100"
935
  msgstr ""
936
  "<a href=\"http://codex.wordpress.org/Function_Reference/"
937
  "register_post_type#Parameters\">Lies mehr </a> zu den verfügbaren "
938
  "Einstellungsmöglichkeiten für die „Menü Position\" Funktion. Die möglichen "
939
  "Werte reichen von 5 bis 100."
940
 
941
+ #: inc/post-types.php:603
942
  msgid "Show in Menu"
943
  msgstr "Im Menü anzeigen"
944
 
945
+ #: inc/post-types.php:604
946
  msgid ""
947
  "Whether to show the post type in the admin menu and where to show that menu."
948
  msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
949
 
950
+ #: inc/post-types.php:605
951
  msgid ""
952
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
953
  "php\" is indicated for second input, post type will be sub menu of that."
956
  "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
957
  "angegeben sein wird der Post Type als Untermenü davon angezeigt."
958
 
959
+ #: inc/post-types.php:631
960
  msgid "Top-level page file name to make post type a sub-menu of."
961
  msgstr ""
962
  "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
963
 
964
+ #: inc/post-types.php:643
965
  msgid "Menu Icon"
966
  msgstr "Menü-Icon"
967
 
968
+ #: inc/post-types.php:644
969
  msgid "(Full URL for icon or Dashicon class)"
970
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
971
 
972
+ #: inc/post-types.php:645
973
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
974
  msgstr ""
975
  "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
976
  "Dashicon-Klasse."
977
 
978
+ #: inc/post-types.php:658
979
  msgid "Title"
980
  msgstr "Titel"
981
 
982
+ #: inc/post-types.php:659
983
  msgid "Adds the title meta box when creating content for this custom post type"
984
  msgstr ""
985
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
986
  "erstellt werden"
987
 
988
+ #: inc/post-types.php:673
989
  msgid "Editor"
990
  msgstr "Text-Editor"
991
 
992
+ #: inc/post-types.php:674
993
  msgid ""
994
  "Adds the content editor meta box when creating content for this custom post "
995
  "type"
997
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
998
  "Type erstellt werden"
999
 
1000
+ #: inc/post-types.php:688
1001
  msgid "Excerpt"
1002
  msgstr "Auszug"
1003
 
1004
+ #: inc/post-types.php:689
1005
  msgid ""
1006
  "Adds the excerpt meta box when creating content for this custom post type"
1007
  msgstr ""
1008
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1009
  "erstellt werden"
1010
 
1011
+ #: inc/post-types.php:703
1012
  msgid "Trackbacks"
1013
  msgstr "Trackbacks"
1014
 
1015
+ #: inc/post-types.php:704
1016
  msgid ""
1017
  "Adds the trackbacks meta box when creating content for this custom post type"
1018
  msgstr ""
1019
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1020
  "Type erstellt werden"
1021
 
1022
+ #: inc/post-types.php:718
1023
  msgid "Custom Fields"
1024
  msgstr "Eigene Felder"
1025
 
1026
+ #: inc/post-types.php:719
1027
  msgid ""
1028
  "Adds the custom fields meta box when creating content for this custom post "
1029
  "type"
1031
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1032
  "Type erstellt werden"
1033
 
1034
+ #: inc/post-types.php:733
1035
  msgid "Comments"
1036
  msgstr "Kommentare"
1037
 
1038
+ #: inc/post-types.php:734
1039
  msgid ""
1040
  "Adds the comments meta box when creating content for this custom post type"
1041
  msgstr ""
1042
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1043
  "Type erstellt werden"
1044
 
1045
+ #: inc/post-types.php:748
1046
  msgid "Revisions"
1047
  msgstr "Revisionen"
1048
 
1049
+ #: inc/post-types.php:749
1050
  msgid ""
1051
  "Adds the revisions meta box when creating content for this custom post type"
1052
  msgstr ""
1053
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1054
  "Type erstellt werden"
1055
 
1056
+ #: inc/post-types.php:763
1057
  msgid "Featured Image"
1058
  msgstr "Beitragsbild"
1059
 
1060
+ #: inc/post-types.php:764
1061
  msgid ""
1062
  "Adds the featured image meta box when creating content for this custom post "
1063
  "type"
1065
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1066
  "Type erstellt werden"
1067
 
1068
+ #: inc/post-types.php:778
1069
  msgid "Author"
1070
  msgstr "Autor"
1071
 
1072
+ #: inc/post-types.php:779
1073
  msgid ""
1074
  "Adds the author meta box when creating content for this custom post type"
1075
  msgstr ""
1076
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1077
  "erstellt werden"
1078
 
1079
+ #: inc/post-types.php:793
1080
  msgid "Page Attributes"
1081
  msgstr "Seiten Attribute"
1082
 
1083
+ #: inc/post-types.php:794
1084
  msgid ""
1085
  "Adds the page attribute meta box when creating content for this custom post "
1086
  "type"
1088
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1089
  "Post Type erstellt werden"
1090
 
1091
+ #: inc/post-types.php:808
1092
  msgid "Post Formats"
1093
  msgstr "Format"
1094
 
1095
+ #: inc/post-types.php:809
1096
  msgid "Adds post format support"
1097
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1098
 
1099
+ #: inc/post-types.php:814
1100
  msgid "Use the option below to explicitly set \"supports\" to false."
1101
  msgstr ""
1102
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1103
  "zu deaktivieren."
1104
 
1105
+ #: inc/post-types.php:822
1106
  msgid "None"
1107
  msgstr "Keine"
1108
 
1109
+ #: inc/post-types.php:823
1110
  msgid "Remove all support features"
1111
  msgstr "Entfernt alle „Unterstützt“-Features"
1112
 
1113
+ #: inc/post-types.php:829
1114
  msgid "Custom \"Supports\""
1115
  msgstr "Benutzerdefinierte „Unterstützt“"
1116
 
1117
+ #: inc/post-types.php:830
1118
  msgid ""
1119
  "Use this input to register custom \"supports\" values, separated by commas."
1120
  msgstr ""
1121
  "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1122
  "definieren welche durch Kommas getrennt sind."
1123
 
1124
+ #: inc/post-types.php:836
1125
  msgid "Provide custom support slugs here."
1126
  msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1127
 
1128
+ #: inc/post-types.php:842
1129
  msgid "Built-in Taxonomies"
1130
  msgstr "Vorhandene Taxonomien"
1131
 
1132
+ #: inc/post-types.php:871 inc/taxonomies.php:172
1133
  #, php-format
1134
  msgid "Adds %s support"
1135
  msgstr "Fügt %s Unterstützung hinzu"
1136
 
1137
+ #: inc/post-types.php:977
1138
  msgid "Please provide a post type to delete"
1139
  msgstr "Bitte gib einen Post Type zum Löschen an"
1140
 
1141
+ #: inc/post-types.php:1037
1142
  msgid "Please provide a post type name"
1143
  msgstr "Bitte gib einen Namen für den Post Type an"
1144
 
1145
+ #: inc/post-types.php:1061
1146
  msgid "Please do not use quotes in post type names or rewrite slugs"
1147
  msgstr ""
1148
  "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1149
  "Kurzlinks"
1150
 
1151
+ #: inc/post-types.php:1068
1152
  #, php-format
1153
  msgid "Please choose a different post type name. %s is already registered."
1154
  msgstr ""
1358
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1359
  "möglich sein dies anzupassen falls notwendig."
1360
 
1361
+ #: inc/taxonomies.php:85
1362
  msgid ""
1363
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1364
  "registers a new taxonomy entry for your install."
1367
  "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1368
  "Eintrag für Deine Installation."
1369
 
1370
+ #: inc/taxonomies.php:118
1371
  msgid "Taxonomy Slug"
1372
  msgstr "Taxonomie-Kurzlink"
1373
 
1374
+ #: inc/taxonomies.php:119
1375
  msgid "(e.g. actor)"
1376
  msgstr "(z. B. regisseure)"
1377
 
1378
+ #: inc/taxonomies.php:120
1379
  msgid ""
1380
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1381
  "and unique"
1383
  "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1384
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1385
 
1386
+ #: inc/taxonomies.php:128 inc/taxonomies.php:210
1387
  msgid "(e.g. Actors)"
1388
  msgstr "(z. B. Regisseure)"
1389
 
1390
+ #: inc/taxonomies.php:130
1391
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1392
  msgstr ""
1393
  "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1394
  "benutzerdefinierte Taxonomien anzuzeigen."
1395
 
1396
+ #: inc/taxonomies.php:137
1397
  msgid "(e.g. Actor)"
1398
  msgstr "(z. B. Regisseur)"
1399
 
1400
+ #: inc/taxonomies.php:139
1401
  msgid ""
1402
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1403
  msgstr ""
1404
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1405
  "Beschriftungen in der Einzahl benötigt werden."
1406
 
1407
+ #: inc/taxonomies.php:142
1408
  msgid "Attach to Post Type"
1409
  msgstr "Mit Post Type verbinden"
1410
 
1411
+ #: inc/taxonomies.php:181
1412
  msgid "Save Taxonomy"
1413
  msgstr "Taxonomie speichern"
1414
 
1415
+ #: inc/taxonomies.php:182
1416
  msgid "Delete Taxonomy"
1417
  msgstr "Taxonomie löschen"
1418
 
1419
+ #: inc/taxonomies.php:184
1420
  msgid "Add Taxonomy"
1421
  msgstr "Taxonomie hinzufügen"
1422
 
1423
+ #: inc/taxonomies.php:193
1424
  #, php-format
1425
  msgid ""
1426
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1431
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1432
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1433
 
1434
+ #: inc/taxonomies.php:194
1435
  #, php-format
1436
  msgid ""
1437
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1448
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1449
  "roten Fragezeichen."
1450
 
1451
+ #: inc/taxonomies.php:195
1452
  #, php-format
1453
  msgid ""
1454
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1463
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1464
  "Begriffe nicht in der Datenbank aktualisiert."
1465
 
1466
+ #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1467
+ #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1468
+ #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1469
+ #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1470
+ #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1471
  msgid ""
1472
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1473
  msgstr ""
1474
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1475
  "Anzeige von Taxonomien verwendet."
1476
 
1477
+ #: inc/taxonomies.php:219
1478
  msgid "(e.g. All Actors)"
1479
  msgstr "(z. B. Alle Regisseure)"
1480
 
1481
+ #: inc/taxonomies.php:228
1482
  msgid "(e.g. Edit Actor)"
1483
  msgstr "(z. B. Regisseur bearbeiten)"
1484
 
1485
+ #: inc/taxonomies.php:237
1486
  msgid "(e.g. View Actor)"
1487
  msgstr "(z. B. Regisseur anzeigen)"
1488
 
1489
+ #: inc/taxonomies.php:246
1490
  msgid "(e.g. Update Actor Name)"
1491
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1492
 
1493
+ #: inc/taxonomies.php:247
1494
  msgid "Update Item Name"
1495
  msgstr "Eintragsname aktualisieren"
1496
 
1497
+ #: inc/taxonomies.php:255
1498
  msgid "(e.g. Add New Actor)"
1499
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1500
 
1501
+ #: inc/taxonomies.php:264
1502
  msgid "(e.g. New Actor Name)"
1503
  msgstr "(z. B. Neuer Regisseursname)"
1504
 
1505
+ #: inc/taxonomies.php:265
1506
  msgid "New Item Name"
1507
  msgstr "Neuer Eintragsname"
1508
 
1509
+ #: inc/taxonomies.php:273
1510
  msgid "(e.g. Parent Actor)"
1511
  msgstr "(z. B. Übergeordneter Regisseur)"
1512
 
1513
+ #: inc/taxonomies.php:274
1514
  msgid "Parent Item"
1515
  msgstr "Übergeordneter Eintrag"
1516
 
1517
+ #: inc/taxonomies.php:282
1518
  msgid "(e.g. Parent Actor:)"
1519
  msgstr "(z. B. Übergeordneter Regisseur:)"
1520
 
1521
+ #: inc/taxonomies.php:283
1522
  msgid "Parent Item Colon"
1523
  msgstr "Übergeordneter Eintrag Komma"
1524
 
1525
+ #: inc/taxonomies.php:291
1526
  msgid "(e.g. Search Actors)"
1527
  msgstr "(z. B. Regisseure durchsuchen)"
1528
 
1529
+ #: inc/taxonomies.php:292
1530
  msgid "Search Items"
1531
  msgstr "Einträge durchsuchen"
1532
 
1533
+ #: inc/taxonomies.php:300
1534
  msgid "(e.g. Popular Actors)"
1535
  msgstr "(z. B. beliebte Regisseure)"
1536
 
1537
+ #: inc/taxonomies.php:301
1538
  msgid "Popular Items"
1539
  msgstr "Beliebte Einträge"
1540
 
1541
+ #: inc/taxonomies.php:309
1542
  msgid "(e.g. Separate actors with commas)"
1543
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1544
 
1545
+ #: inc/taxonomies.php:310
1546
  msgid "Separate Items with Commas"
1547
  msgstr "Trenne Einträge mittels Komma"
1548
 
1549
+ #: inc/taxonomies.php:318
1550
  msgid "(e.g. Add or remove actors)"
1551
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1552
 
1553
+ #: inc/taxonomies.php:319
1554
  msgid "Add or Remove Items"
1555
  msgstr "Lösche oder füge Einträge hinzu"
1556
 
1557
+ #: inc/taxonomies.php:327
1558
  msgid "(e.g. Choose from the most used actors)"
1559
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1560
 
1561
+ #: inc/taxonomies.php:328
1562
  msgid "Choose From Most Used"
1563
  msgstr "Wähle aus den am meisten Verwendeten"
1564
 
1565
+ #: inc/taxonomies.php:336
1566
  msgid "(e.g. No actors found)"
1567
  msgstr "(z. B. Keine Regisseure gefunden)"
1568
 
1569
+ #: inc/taxonomies.php:337
1570
  msgid "Not found"
1571
  msgstr "Nicht gefunden"
1572
 
1573
+ #: inc/taxonomies.php:360
1574
  msgid "Whether the taxonomy can have parent-child relationships"
1575
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1576
 
1577
+ #: inc/taxonomies.php:377
1578
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1579
  msgstr ""
1580
  "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1581
  "benutzerdefinierten Taxonomie erstellt werden soll."
1582
 
1583
+ #: inc/taxonomies.php:394
1584
  msgid "Sets the query_var key for this taxonomy."
1585
  msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1586
 
1587
+ #: inc/taxonomies.php:402
1588
  msgid "(default: none). Query Var needs to be true to use."
1589
  msgstr ""
1590
  "(Voreinstellung: Keine - Abfrage Variable muss aktiviert sein um es benutzen "
1591
  "zu können)"
1592
 
1593
+ #: inc/taxonomies.php:403
1594
  msgid "Custom Query Var String"
1595
  msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1596
 
1597
+ #: inc/taxonomies.php:404
1598
  msgid "Sets a custom query_var slug for this taxonomy."
1599
  msgstr ""
1600
  "Definiere einen benutzerdefinierten Abfrage Variablen-Kurzlink für diese "
1601
  "Taxonomie."
1602
 
1603
+ #: inc/taxonomies.php:420
1604
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1605
  msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1606
 
1607
+ #: inc/taxonomies.php:428
1608
  msgid "(default: taxonomy name)"
1609
  msgstr "(Voreinstellung: Taxanomie Name)"
1610
 
1611
+ #: inc/taxonomies.php:430
1612
  msgid "Custom taxonomy rewrite slug."
1613
  msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1614
 
1615
+ #: inc/taxonomies.php:444
1616
  msgid "Rewrite With Front"
1617
  msgstr "Rewrite mit vorangestellter Front Base"
1618
 
1619
+ #: inc/taxonomies.php:445
1620
  msgid "(default: true)"
1621
  msgstr "(Voreinstellung: aktiviert)"
1622
 
1623
+ #: inc/taxonomies.php:461
1624
  msgid "Rewrite Hierarchical"
1625
  msgstr "Hierarchischer Rewrite"
1626
 
1627
+ #: inc/taxonomies.php:462
1628
  msgid "(default: false)"
1629
  msgstr "(Voreinstellung: deaktiviert)"
1630
 
1631
+ #: inc/taxonomies.php:463
1632
  msgid "Should the permastruct allow hierarchical urls."
1633
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1634
 
1635
+ #: inc/taxonomies.php:478
1636
  msgid "Show Admin Column"
1637
  msgstr "Anzeige von Admin-Spalten"
1638
 
1639
+ #: inc/taxonomies.php:480
1640
  msgid ""
1641
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1642
  "types."
1644
  "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1645
  "Post Types erlaubt werden."
1646
 
1647
+ #: inc/taxonomies.php:585
1648
  msgid "Please provide a taxonomy to delete"
1649
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1650
 
1651
+ #: inc/taxonomies.php:636
1652
  msgid "Please provide a taxonomy name"
1653
  msgstr "Gib bitte einen Taxonomie-Namen an"
1654
 
1655
+ #: inc/taxonomies.php:652
1656
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1657
  msgstr ""
1658
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1659
  "Kurzlinks"
1660
 
1661
+ #: inc/taxonomies.php:658
1662
  #, php-format
1663
  msgid "Please choose a different taxonomy name. %s is already used."
1664
  msgstr ""
1665
  "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1666
 
 
 
 
 
 
 
 
1667
  #. Plugin URI of the plugin/theme
1668
  msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1669
  msgstr "https://github.com/WebDevStudios/custom-post-type-ui/"
1683
  msgid "http://webdevstudios.com/"
1684
  msgstr "http://webdevstudios.com/"
1685
 
1686
+ #~ msgid "Whether posts of this type should be shown in the admin UI"
1687
+ #~ msgstr ""
1688
+ #~ "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
1689
+
1690
  #~ msgid "(e.g. actors)"
1691
  #~ msgstr "(z. B. regisseure)"
1692
 
languages/cpt-plugin-ja.mo CHANGED
Binary file
languages/cpt-plugin-ja.po CHANGED
@@ -1,79 +1,86 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: cus\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-15 22:31-0600\n"
6
- "PO-Revision-Date: 2015-06-15 22:31-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-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 "
@@ -81,247 +88,251 @@ msgid ""
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:374 ../inc/taxonomies.php:340
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,226 +340,270 @@ msgid ""
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:645
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:212 ../inc/taxonomies.php:198
453
  #, fuzzy
454
  msgid "Labels"
455
  msgstr "ラベル"
456
 
457
- #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:268
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:91 ../inc/taxonomies.php:88
495
  msgid "Select"
496
  msgstr ""
497
 
498
- #: ../inc/post-types.php:121
499
  #, fuzzy
500
  msgid "Post Type Slug"
501
  msgstr "投稿タイプ名"
502
 
503
- #: ../inc/post-types.php:122
504
  msgid "(e.g. movie)"
505
  msgstr ""
506
 
507
- #: ../inc/post-types.php:134 ../inc/taxonomies.php:126
 
 
 
 
 
 
508
  #, fuzzy
509
  msgid "Plural Label"
510
  msgstr "単数形のラベル"
511
 
512
- #: ../inc/post-types.php:135
513
  msgid "(e.g. Movies)"
514
  msgstr ""
515
 
516
- #: ../inc/post-types.php:146 ../inc/taxonomies.php:135
 
 
 
 
 
 
 
 
517
  msgid "Singular Label"
518
  msgstr "単数形のラベル"
519
 
520
- #: ../inc/post-types.php:147
521
  msgid "(e.g. Movie)"
522
  msgstr ""
523
 
524
- #: ../inc/post-types.php:164
 
 
 
 
 
 
525
  msgid "Description"
526
  msgstr "説明"
527
 
528
- #: ../inc/post-types.php:177
 
 
 
 
 
 
529
  msgid "Migrate posts to newly renamed post type?"
530
  msgstr ""
531
 
532
- #: ../inc/post-types.php:187
 
 
 
 
533
  #, fuzzy
534
  msgid "Save Post Type"
535
  msgstr "利用する投稿タイプ"
536
 
537
- #: ../inc/post-types.php:188
538
  #, fuzzy
539
  msgid "Delete Post Type"
540
  msgstr "利用する投稿タイプ"
541
 
542
- #: ../inc/post-types.php:190
543
  #, fuzzy
544
  msgid "Add Post Type"
545
  msgstr "利用する投稿タイプ"
546
 
547
- #: ../inc/post-types.php:201 ../inc/taxonomies.php:187
548
  msgid "Starter Notes"
549
  msgstr ""
550
 
551
- #: ../inc/post-types.php:204
552
  #, php-format
553
  msgid ""
554
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -557,7 +612,7 @@ msgid ""
557
  "revision, nav_menu_item."
558
  msgstr ""
559
 
560
- #: ../inc/post-types.php:205
561
  #, php-format
562
  msgid ""
563
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -566,7 +621,7 @@ msgid ""
566
  "post type name. Hover over the question mark for more details."
567
  msgstr ""
568
 
569
- #: ../inc/post-types.php:206
570
  #, fuzzy, php-format
571
  msgid ""
572
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -577,330 +632,449 @@ msgstr ""
577
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
578
  "ません。"
579
 
580
- #: ../inc/post-types.php:220 ../inc/taxonomies.php:208
581
  #, fuzzy
582
  msgid "Menu Name"
583
  msgstr "名前"
584
 
585
- #: ../inc/post-types.php:225
 
 
 
 
586
  msgid "(e.g. My Movies)"
587
  msgstr ""
588
 
589
- #: ../inc/post-types.php:232 ../inc/taxonomies.php:217
590
  msgid "All Items"
591
  msgstr "すべての項目"
592
 
593
- #: ../inc/post-types.php:237
594
  msgid "(e.g. All Movies)"
595
  msgstr ""
596
 
597
- #: ../inc/post-types.php:244
598
  msgid "Add New"
599
  msgstr "新規追加"
600
 
601
- #: ../inc/post-types.php:249
602
  #, fuzzy
603
  msgid "(e.g. Add New)"
604
  msgstr "新規追加"
605
 
606
- #: ../inc/post-types.php:256 ../inc/taxonomies.php:253
607
  msgid "Add New Item"
608
  msgstr "新規項目追加"
609
 
610
- #: ../inc/post-types.php:261
611
  msgid "(e.g. Add New Movie)"
612
  msgstr ""
613
 
614
- #: ../inc/post-types.php:273
615
  msgid "(e.g. Edit)"
616
  msgstr ""
617
 
618
- #: ../inc/post-types.php:280 ../inc/taxonomies.php:226
619
  msgid "Edit Item"
620
  msgstr "項目を編集"
621
 
622
- #: ../inc/post-types.php:285
623
  msgid "(e.g. Edit Movie)"
624
  msgstr ""
625
 
626
- #: ../inc/post-types.php:292
627
  msgid "New Item"
628
  msgstr "新規項目"
629
 
630
- #: ../inc/post-types.php:297
631
  #, fuzzy
632
  msgid "(e.g. New Movie)"
633
  msgstr "新規項目追加"
634
 
635
- #: ../inc/post-types.php:304
636
  msgid "View"
637
  msgstr "表示"
638
 
639
- #: ../inc/post-types.php:309
640
  msgid "(e.g. View)"
641
  msgstr ""
642
 
643
- #: ../inc/post-types.php:316 ../inc/taxonomies.php:235
644
  msgid "View Item"
645
  msgstr "項目を表示"
646
 
647
- #: ../inc/post-types.php:321
648
  msgid "(e.g. View Movie)"
649
  msgstr ""
650
 
651
- #: ../inc/post-types.php:328
652
  #, fuzzy
653
  msgid "Search Item"
654
  msgstr "項目検索"
655
 
656
- #: ../inc/post-types.php:333
657
  msgid "(e.g. Search Movie)"
658
  msgstr ""
659
 
660
- #: ../inc/post-types.php:340
661
  msgid "Not Found"
662
  msgstr "見つかりません"
663
 
664
- #: ../inc/post-types.php:345
665
  msgid "(e.g. No Movies found)"
666
  msgstr ""
667
 
668
- #: ../inc/post-types.php:352
669
  msgid "Not Found in Trash"
670
  msgstr "ゴミ箱にはありません。"
671
 
672
- #: ../inc/post-types.php:357
673
  #, fuzzy
674
  msgid "(e.g. No Movies found in Trash)"
675
  msgstr "ゴミ箱にはありません。"
676
 
677
- #: ../inc/post-types.php:364
678
  msgid "Parent"
679
  msgstr "親"
680
 
681
- #: ../inc/post-types.php:369
682
  msgid "(e.g. Parent Movie)"
683
  msgstr ""
684
 
685
- #: ../inc/post-types.php:383 ../inc/post-types.php:403
686
- #: ../inc/post-types.php:429 ../inc/post-types.php:461
687
- #: ../inc/post-types.php:492 ../inc/post-types.php:512
688
- #: ../inc/post-types.php:544 ../inc/post-types.php:564
689
- #: ../inc/post-types.php:607 ../inc/taxonomies.php:346
690
- #: ../inc/taxonomies.php:363 ../inc/taxonomies.php:380
691
- #: ../inc/taxonomies.php:406 ../inc/taxonomies.php:432
692
- #: ../inc/taxonomies.php:449 ../inc/taxonomies.php:466
693
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
694
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
695
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
696
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
697
  msgid "False"
698
  msgstr ""
699
 
700
- #: ../inc/post-types.php:384 ../inc/post-types.php:404
701
- #: ../inc/post-types.php:430 ../inc/post-types.php:462
702
- #: ../inc/post-types.php:493 ../inc/post-types.php:513
703
- #: ../inc/post-types.php:545 ../inc/post-types.php:565
704
- #: ../inc/post-types.php:608 ../inc/taxonomies.php:347
705
- #: ../inc/taxonomies.php:364 ../inc/taxonomies.php:381
706
- #: ../inc/taxonomies.php:407 ../inc/taxonomies.php:433
707
- #: ../inc/taxonomies.php:450 ../inc/taxonomies.php:467
708
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
709
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
710
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
711
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
712
  msgid "True"
713
  msgstr ""
714
 
715
- #: ../inc/post-types.php:392 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
716
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
717
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
718
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
719
  msgid "Public"
720
  msgstr "一般公開"
721
 
722
- #: ../inc/post-types.php:393 ../inc/post-types.php:413
723
- #: ../inc/post-types.php:522 ../inc/post-types.php:554
724
- #: ../inc/post-types.php:574 ../inc/post-types.php:616
725
- #: ../inc/taxonomies.php:373 ../inc/taxonomies.php:390
726
- #: ../inc/taxonomies.php:416 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
727
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
728
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
729
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
730
  msgid "(default: True)"
731
  msgstr ""
732
 
733
- #: ../inc/post-types.php:412 ../inc/taxonomies.php:372
 
 
 
 
 
 
734
  msgid "Show UI"
735
  msgstr "UI を表示"
736
 
737
- #: ../inc/post-types.php:422
 
 
 
 
738
  msgid "Has Archive"
739
  msgstr ""
740
 
741
- #: ../inc/post-types.php:424
 
 
 
 
742
  msgid "If left blank, the archive slug will default to the post type slug."
743
  msgstr ""
744
 
745
- #: ../inc/post-types.php:438 ../inc/post-types.php:471
746
- #: ../inc/post-types.php:502 ../inc/taxonomies.php:356
747
- #: ../inc/taxonomies.php:476
748
  msgid "(default: False)"
749
  msgstr ""
750
 
751
- #: ../inc/post-types.php:470
 
 
 
 
752
  msgid "Exclude From Search"
753
  msgstr ""
754
 
755
- #: ../inc/post-types.php:483
 
 
 
 
 
756
  msgid "Capability Type"
757
  msgstr "利用タイプ"
758
 
759
- #: ../inc/post-types.php:501 ../inc/taxonomies.php:355
 
 
 
 
760
  msgid "Hierarchical"
761
  msgstr "階層"
762
 
763
- #: ../inc/post-types.php:521 ../inc/taxonomies.php:415
 
 
 
 
764
  msgid "Rewrite"
765
  msgstr "リライト"
766
 
767
- #: ../inc/post-types.php:534 ../inc/taxonomies.php:426
 
 
 
 
768
  msgid "Custom Rewrite Slug"
769
  msgstr "カスタムリライトスラッグ"
770
 
771
- #: ../inc/post-types.php:535
772
  msgid "(default: post type slug)"
773
  msgstr ""
774
 
775
- #: ../inc/post-types.php:553
 
 
 
 
776
  msgid "With Front"
777
  msgstr ""
778
 
779
- #: ../inc/post-types.php:573 ../inc/taxonomies.php:389
 
 
 
 
780
  msgid "Query Var"
781
  msgstr "クエリーバージョン"
782
 
783
- #: ../inc/post-types.php:583
 
 
 
 
784
  msgid "Menu Position"
785
  msgstr "メニューの位置"
786
 
787
- #: ../inc/post-types.php:585
 
 
 
 
 
 
788
  msgid ""
789
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
790
- "register_post_type#Parameters\">Available options</a> in the \"menu_position"
791
- "\" section. Range of 5-100"
792
  msgstr ""
793
 
794
- #: ../inc/post-types.php:600
795
  msgid "Show in Menu"
796
  msgstr ""
797
 
798
- #: ../inc/post-types.php:602
 
 
 
 
 
799
  msgid ""
800
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
801
  "php\" is indicated for second input, post type will be sub menu of that."
802
  msgstr ""
803
 
804
- #: ../inc/post-types.php:640
 
 
 
 
805
  #, fuzzy
806
  msgid "Menu Icon"
807
  msgstr "メニューの位置"
808
 
809
- #: ../inc/post-types.php:641
810
  msgid "(Full URL for icon or Dashicon class)"
811
  msgstr ""
812
 
813
- #: ../inc/post-types.php:655
 
 
 
 
814
  msgid "Title"
815
  msgstr ""
816
 
817
- #: ../inc/post-types.php:670
 
 
 
 
818
  #, fuzzy
819
  msgid "Editor"
820
  msgstr "編集"
821
 
822
- #: ../inc/post-types.php:685
 
 
 
 
 
 
823
  msgid "Excerpt"
824
  msgstr ""
825
 
826
- #: ../inc/post-types.php:700
 
 
 
 
 
827
  msgid "Trackbacks"
828
  msgstr ""
829
 
830
- #: ../inc/post-types.php:715
 
 
 
 
 
831
  #, fuzzy
832
  msgid "Custom Fields"
833
  msgstr "カスタムリライトスラッグ"
834
 
835
- #: ../inc/post-types.php:730
 
 
 
 
 
 
836
  msgid "Comments"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:745
 
 
 
 
 
840
  msgid "Revisions"
841
  msgstr ""
842
 
843
- #: ../inc/post-types.php:760
 
 
 
 
 
844
  msgid "Featured Image"
845
  msgstr ""
846
 
847
- #: ../inc/post-types.php:775
 
 
 
 
 
 
848
  msgid "Author"
849
  msgstr ""
850
 
851
- #: ../inc/post-types.php:790
 
 
 
 
 
852
  msgid "Page Attributes"
853
  msgstr ""
854
 
855
- #: ../inc/post-types.php:805
 
 
 
 
 
 
856
  msgid "Post Formats"
857
  msgstr ""
858
 
859
- #: ../inc/post-types.php:811
 
 
 
 
860
  msgid "Use the option below to explicitly set \"supports\" to false."
861
  msgstr ""
862
 
863
- #: ../inc/post-types.php:819
864
  msgid "None"
865
  msgstr ""
866
 
867
- #: ../inc/post-types.php:826
 
 
 
 
868
  #, fuzzy
869
  msgid "Custom \"Supports\""
870
  msgstr "サポート"
871
 
872
- #: ../inc/post-types.php:827
873
  msgid ""
874
  "Use this input to register custom \"supports\" values, separated by commas."
875
  msgstr ""
876
 
877
- #: ../inc/post-types.php:839
 
 
 
 
878
  msgid "Built-in Taxonomies"
879
  msgstr "ビルトイン分類"
880
 
881
- #: ../inc/post-types.php:967
 
 
 
 
 
882
  msgid "Please provide a post type to delete"
883
  msgstr ""
884
 
885
- #: ../inc/post-types.php:1027
886
  msgid "Please provide a post type name"
887
  msgstr ""
888
 
889
- #: ../inc/post-types.php:1051
890
  msgid "Please do not use quotes in post type names or rewrite slugs"
891
  msgstr ""
892
 
893
- #: ../inc/post-types.php:1058
894
  #, php-format
895
  msgid "Please choose a different post type name. %s is already registered."
896
  msgstr ""
897
 
898
- #: ../inc/support.php:41
899
  #, fuzzy
900
  msgid "Custom Post Type UI Support"
901
  msgstr "Custom Post Types UI"
902
 
903
- #: ../inc/support.php:43
904
  #, php-format
905
  msgid ""
906
  "Please note that this plugin will NOT handle display of registered post "
@@ -908,34 +1082,34 @@ msgid ""
908
  "you. If all else fails, visit us on the %s"
909
  msgstr ""
910
 
911
- #: ../inc/support.php:44
912
  #, fuzzy
913
  msgid "Support Forums"
914
  msgstr "サポート"
915
 
916
- #: ../inc/support.php:50
917
  msgid "General"
918
  msgstr ""
919
 
920
- #: ../inc/support.php:53
921
  msgid ""
922
  "I changed my custom post type name and now I can not get to my posts. How do "
923
  "I get them back?"
924
  msgstr ""
925
 
926
- #: ../inc/support.php:54
927
  msgid ""
928
  "You can either change the custom post type name back to the original name or "
929
  "try the Post Type Switcher plugin"
930
  msgstr ""
931
 
932
- #: ../inc/support.php:59
933
  msgid ""
934
  "I changed my custom post type or taxonomy slug and now I have duplicates "
935
  "shown. How do I remove the duplicate?"
936
  msgstr ""
937
 
938
- #: ../inc/support.php:60
939
  msgid ""
940
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
941
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -943,37 +1117,37 @@ msgid ""
943
  "delete the previous version's entry."
944
  msgstr ""
945
 
946
- #: ../inc/support.php:63
947
  msgid ""
948
  "I have added post thumbnail and/or post format support to my post type, but "
949
  "those do not appear when adding a post type post."
950
  msgstr ""
951
 
952
- #: ../inc/support.php:64
953
  msgid ""
954
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
955
  msgstr ""
956
 
957
- #: ../inc/support.php:69
958
  msgid "Front-end Display"
959
  msgstr ""
960
 
961
- #: ../inc/support.php:72
962
  msgid "What template files should I edit to alter my post type display?"
963
  msgstr ""
964
 
965
- #: ../inc/support.php:73
966
  #, php-format
967
  msgid ""
968
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
969
  "details about available templates."
970
  msgstr ""
971
 
972
- #: ../inc/support.php:80
973
  msgid "How do I display my custom post type on my site?"
974
  msgstr ""
975
 
976
- #: ../inc/support.php:81
977
  #, php-format
978
  msgid ""
979
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -981,13 +1155,13 @@ msgid ""
981
  "should be something like \"http://www.mysite.com/post-type-slug\""
982
  msgstr ""
983
 
984
- #: ../inc/support.php:87
985
  msgid ""
986
  "I have added categories and tags to my custom post type, but they do not "
987
  "appear in the archives."
988
  msgstr ""
989
 
990
- #: ../inc/support.php:88
991
  #, php-format
992
  msgid ""
993
  "You will need to add your newly created post type to the types that the "
@@ -995,109 +1169,124 @@ msgid ""
995
  "that at %s"
996
  msgstr ""
997
 
998
- #: ../inc/support.php:97
999
  msgid "Advanced"
1000
  msgstr ""
1001
 
1002
- #: ../inc/support.php:100
1003
  msgid "How do I add custom metaboxes to my post type?"
1004
  msgstr ""
1005
 
1006
- #: ../inc/support.php:102
1007
  #, php-format
1008
  msgid ""
1009
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1010
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1011
  msgstr ""
1012
 
1013
- #: ../inc/support.php:108
1014
  msgid ""
1015
  "How do I add a newly registered taxonomy to a post type that already exists?"
1016
  msgstr ""
1017
 
1018
- #: ../inc/support.php:110
1019
  #, php-format
1020
  msgid "Check out the %s function for documentation and usage examples."
1021
  msgstr ""
1022
 
1023
- #: ../inc/support.php:116
1024
  #, fuzzy
1025
  msgid "Post relationships?"
1026
  msgstr "利用する投稿タイプ"
1027
 
1028
- #: ../inc/support.php:117
1029
  #, php-format
1030
  msgid ""
1031
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1032
  "plugin that should be a good start."
1033
  msgstr ""
1034
 
1035
- #: ../inc/support.php:126
1036
  msgid "Is there any function reference list?"
1037
  msgstr ""
1038
 
1039
- #: ../inc/support.php:127
1040
  #, php-format
1041
  msgid ""
1042
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1043
  "will be useful as they are attached to hooks."
1044
  msgstr ""
1045
 
1046
- #: ../inc/support.php:131
1047
  msgid ""
1048
  "How do I filter the \"enter title here\" text in the post editor screen?"
1049
  msgstr ""
1050
 
1051
- #: ../inc/support.php:132
1052
  msgid ""
1053
  "Change text inside the post/page editor title field. Should be able to adapt "
1054
  "as necessary."
1055
  msgstr ""
1056
 
1057
- #: ../inc/taxonomies.php:82
1058
  msgid ""
1059
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1060
  "registers a new taxonomy entry for your install."
1061
  msgstr ""
1062
 
1063
- #: ../inc/taxonomies.php:115
1064
  #, fuzzy
1065
  msgid "Taxonomy Slug"
1066
  msgstr "分類名"
1067
 
1068
- #: ../inc/taxonomies.php:116
1069
  #, fuzzy
1070
  msgid "(e.g. actor)"
1071
  msgstr "項目の追加もしくは削除"
1072
 
1073
- #: ../inc/taxonomies.php:125 ../inc/taxonomies.php:207
 
 
 
 
 
 
1074
  msgid "(e.g. Actors)"
1075
  msgstr ""
1076
 
1077
- #: ../inc/taxonomies.php:134
 
 
 
 
1078
  msgid "(e.g. Actor)"
1079
  msgstr ""
1080
 
1081
- #: ../inc/taxonomies.php:139
 
 
 
 
 
1082
  msgid "Attach to Post Type"
1083
  msgstr "利用する投稿タイプ"
1084
 
1085
- #: ../inc/taxonomies.php:178
1086
  #, fuzzy
1087
  msgid "Save Taxonomy"
1088
  msgstr "分類名"
1089
 
1090
- #: ../inc/taxonomies.php:179
1091
  #, fuzzy
1092
  msgid "Delete Taxonomy"
1093
  msgstr "カスタム分類作成"
1094
 
1095
- #: ../inc/taxonomies.php:181
1096
  #, fuzzy
1097
  msgid "Add Taxonomy"
1098
  msgstr "分類名"
1099
 
1100
- #: ../inc/taxonomies.php:190
1101
  #, php-format
1102
  msgid ""
1103
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1105,7 +1294,7 @@ msgid ""
1105
  "letters that do not have accents."
1106
  msgstr ""
1107
 
1108
- #: ../inc/taxonomies.php:191
1109
  #, php-format
1110
  msgid ""
1111
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1115,7 +1304,7 @@ msgid ""
1115
  "marks for more details."
1116
  msgstr ""
1117
 
1118
- #: ../inc/taxonomies.php:192
1119
  #, fuzzy, php-format
1120
  msgid ""
1121
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1126,158 +1315,218 @@ msgstr ""
1126
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1127
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1128
 
1129
- #: ../inc/taxonomies.php:216
 
 
 
 
 
 
 
 
 
1130
  msgid "(e.g. All Actors)"
1131
  msgstr ""
1132
 
1133
- #: ../inc/taxonomies.php:225
1134
  msgid "(e.g. Edit Actor)"
1135
  msgstr ""
1136
 
1137
- #: ../inc/taxonomies.php:234
1138
  msgid "(e.g. View Actor)"
1139
  msgstr ""
1140
 
1141
- #: ../inc/taxonomies.php:243
1142
  msgid "(e.g. Update Actor Name)"
1143
  msgstr ""
1144
 
1145
- #: ../inc/taxonomies.php:244
1146
  #, fuzzy
1147
  msgid "Update Item Name"
1148
  msgstr "項目をアップデート"
1149
 
1150
- #: ../inc/taxonomies.php:252
1151
  msgid "(e.g. Add New Actor)"
1152
  msgstr ""
1153
 
1154
- #: ../inc/taxonomies.php:261
1155
  msgid "(e.g. New Actor Name)"
1156
  msgstr ""
1157
 
1158
- #: ../inc/taxonomies.php:262
1159
  msgid "New Item Name"
1160
  msgstr "新規項目名"
1161
 
1162
- #: ../inc/taxonomies.php:270
1163
  msgid "(e.g. Parent Actor)"
1164
  msgstr ""
1165
 
1166
- #: ../inc/taxonomies.php:271
1167
  msgid "Parent Item"
1168
  msgstr "親項目"
1169
 
1170
- #: ../inc/taxonomies.php:279
1171
  msgid "(e.g. Parent Actor:)"
1172
  msgstr ""
1173
 
1174
- #: ../inc/taxonomies.php:280
1175
  msgid "Parent Item Colon"
1176
  msgstr "親項目コロン"
1177
 
1178
- #: ../inc/taxonomies.php:288
1179
  msgid "(e.g. Search Actors)"
1180
  msgstr ""
1181
 
1182
- #: ../inc/taxonomies.php:289
1183
  msgid "Search Items"
1184
  msgstr "項目検索"
1185
 
1186
- #: ../inc/taxonomies.php:297
1187
  msgid "(e.g. Popular Actors)"
1188
  msgstr ""
1189
 
1190
- #: ../inc/taxonomies.php:298
1191
  msgid "Popular Items"
1192
  msgstr "よく利用されている項目"
1193
 
1194
- #: ../inc/taxonomies.php:306
1195
  #, fuzzy
1196
  msgid "(e.g. Separate actors with commas)"
1197
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1198
 
1199
- #: ../inc/taxonomies.php:307
1200
  msgid "Separate Items with Commas"
1201
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1202
 
1203
- #: ../inc/taxonomies.php:315
1204
  #, fuzzy
1205
  msgid "(e.g. Add or remove actors)"
1206
  msgstr "項目の追加もしくは削除"
1207
 
1208
- #: ../inc/taxonomies.php:316
1209
  msgid "Add or Remove Items"
1210
  msgstr "項目の追加もしくは削除"
1211
 
1212
- #: ../inc/taxonomies.php:324
1213
  #, fuzzy
1214
  msgid "(e.g. Choose from the most used actors)"
1215
  msgstr "最もよく使われているものから選択"
1216
 
1217
- #: ../inc/taxonomies.php:325
1218
  msgid "Choose From Most Used"
1219
  msgstr "最もよく使われているものから選択"
1220
 
1221
- #: ../inc/taxonomies.php:333
1222
  msgid "(e.g. No actors found)"
1223
  msgstr ""
1224
 
1225
- #: ../inc/taxonomies.php:334
1226
  #, fuzzy
1227
  msgid "Not found"
1228
  msgstr "見つかりません"
1229
 
1230
- #: ../inc/taxonomies.php:399
 
 
 
 
 
 
 
 
 
 
 
 
1231
  msgid "(default: none). Query Var needs to be true to use."
1232
  msgstr ""
1233
 
1234
- #: ../inc/taxonomies.php:400
1235
  msgid "Custom Query Var String"
1236
  msgstr ""
1237
 
1238
- #: ../inc/taxonomies.php:425
 
 
 
 
 
 
 
 
1239
  #, fuzzy
1240
  msgid "(default: taxonomy name)"
1241
  msgstr "新規項目名"
1242
 
1243
- #: ../inc/taxonomies.php:441
 
 
 
 
1244
  msgid "Rewrite With Front"
1245
  msgstr ""
1246
 
1247
- #: ../inc/taxonomies.php:442
1248
  msgid "(default: true)"
1249
  msgstr ""
1250
 
1251
- #: ../inc/taxonomies.php:458
1252
  #, fuzzy
1253
  msgid "Rewrite Hierarchical"
1254
  msgstr "階層"
1255
 
1256
- #: ../inc/taxonomies.php:459
1257
  msgid "(default: false)"
1258
  msgstr ""
1259
 
1260
- #: ../inc/taxonomies.php:475
 
 
 
 
1261
  msgid "Show Admin Column"
1262
  msgstr ""
1263
 
1264
- #: ../inc/taxonomies.php:575
 
 
 
 
 
 
1265
  msgid "Please provide a taxonomy to delete"
1266
  msgstr ""
1267
 
1268
- #: ../inc/taxonomies.php:626
1269
  msgid "Please provide a taxonomy name"
1270
  msgstr ""
1271
 
1272
- #: ../inc/taxonomies.php:642
1273
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1274
  msgstr ""
1275
 
1276
- #: ../inc/taxonomies.php:648
1277
  #, php-format
1278
  msgid "Please choose a different taxonomy name. %s is already used."
1279
  msgstr ""
1280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1281
  #, fuzzy
1282
  #~ msgid "Edit Post Type"
1283
  #~ msgstr "利用する投稿タイプ"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-08-11 11:36-0500\n"
6
+ "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.2\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: tests\n"
23
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
24
+
25
+ #: custom-post-type-ui.php:60
26
  #, fuzzy
27
  msgid "Custom Post Types"
28
  msgstr "利用する投稿タイプ"
29
 
30
+ #: custom-post-type-ui.php:60
31
  msgid "CPT UI"
32
  msgstr ""
33
 
34
+ #: custom-post-type-ui.php:61
35
  #, fuzzy
36
  msgid "Add/Edit Post Types"
37
  msgstr "カスタム投稿タイプを編集"
38
 
39
+ #: custom-post-type-ui.php:62
40
  #, fuzzy
41
  msgid "Add/Edit Taxonomies"
42
  msgstr "ビルトイン分類"
43
 
44
+ #: custom-post-type-ui.php:63
45
  msgid "Registered Types and Taxes"
46
  msgstr ""
47
 
48
+ #: custom-post-type-ui.php:63
49
  msgid "Registered Types/Taxes"
50
  msgstr ""
51
 
52
+ #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
53
  msgid "Import/Export"
54
  msgstr ""
55
 
56
+ #: custom-post-type-ui.php:65
57
  #, fuzzy
58
  msgid "Help/Support"
59
  msgstr "サポート"
60
 
61
+ #: custom-post-type-ui.php:69
62
  msgid "About CPT UI"
63
  msgstr ""
64
 
65
+ #. Plugin Name of the plugin/theme
66
+ #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
67
  #, fuzzy
68
  msgid "Custom Post Type UI"
69
  msgstr "利用する投稿タイプ"
70
 
71
+ #: custom-post-type-ui.php:342
72
  msgid ""
73
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
74
  "with our plugin provides efficiency and speed in creating post types and "
75
  "taxonomies, to better organize your content, without having to touch code."
76
  msgstr ""
77
 
78
+ #: custom-post-type-ui.php:348
79
  #, fuzzy
80
  msgid "Post type migration"
81
  msgstr "投稿タイプ名"
82
 
83
+ #: custom-post-type-ui.php:349
84
  msgid ""
85
  "In the past, if you changed your post type slug, you would lose immediate "
86
  "access to the posts in the post type and need to recover another way. We "
88
  "the new post type you renamed it to."
89
  msgstr ""
90
 
91
+ #: custom-post-type-ui.php:352
92
  msgid "UI Refinement"
93
  msgstr ""
94
 
95
+ #: custom-post-type-ui.php:353
96
  msgid ""
97
  "After receiving feedback regarding the 1.0.x changes, we have further "
98
  "simplified the UI to reduce the amount of clicking necessary to manage your "
99
  "post types and taxonomies."
100
  msgstr ""
101
 
102
+ #: custom-post-type-ui.php:356
103
  msgid "Registered Post Type and Taxonomy Listings"
104
  msgstr ""
105
 
106
+ #: custom-post-type-ui.php:357
107
  msgid ""
108
  "We are bringing back the listing of all CPTUI-registered post types and "
109
  "taxonomies for easier quick view of what you have going."
110
  msgstr ""
111
 
112
+ #: custom-post-type-ui.php:362
113
  msgid "Help Support This Plugin!"
114
  msgstr ""
115
 
116
+ #: custom-post-type-ui.php:366
117
  msgid "Professional WordPress<br />Third Edition"
118
  msgstr ""
119
 
120
+ #: custom-post-type-ui.php:371
121
  msgid ""
122
  "The leading book on WordPress design and development! Brand new third "
123
  "edition!"
124
  msgstr ""
125
 
126
+ #: custom-post-type-ui.php:374
127
  msgid "Professional WordPress<br />Plugin Development"
128
  msgstr ""
129
 
130
+ #: custom-post-type-ui.php:379
131
  msgid "Highest rated WordPress development book on Amazon!"
132
  msgstr ""
133
 
134
+ #: custom-post-type-ui.php:382
135
  msgid "PayPal Donation"
136
  msgstr ""
137
 
138
+ #: custom-post-type-ui.php:386
139
+ msgid "PayPal - The safer, easier way to pay online!"
140
+ msgstr ""
141
+
142
+ #: custom-post-type-ui.php:389
143
  msgid "Please donate to the development of Custom Post Type UI:"
144
  msgstr ""
145
 
146
+ #: custom-post-type-ui.php:415
147
  #, php-format
148
  msgid "%s version %s by %s"
149
  msgstr ""
150
 
151
+ #: custom-post-type-ui.php:426
152
  msgid "Please Report Bugs"
153
  msgstr ""
154
 
155
+ #: custom-post-type-ui.php:429
156
  msgid "Follow on Twitter:"
157
  msgstr ""
158
 
159
+ #: custom-post-type-ui.php:493
160
  #, fuzzy
161
  msgid "Manage Taxonomies"
162
  msgstr "カスタム分類の管理"
163
 
164
+ #: custom-post-type-ui.php:497
165
  #, fuzzy
166
  msgid "Manage Post Types"
167
  msgstr "カスタム投稿タイプの管理"
168
 
169
+ #: custom-post-type-ui.php:523
170
  #, fuzzy
171
  msgid "Add New Post Type"
172
  msgstr "利用する投稿タイプ"
173
 
174
+ #: custom-post-type-ui.php:526
175
  #, fuzzy
176
  msgid "Edit Post Types"
177
  msgstr "カスタム投稿タイプを編集"
178
 
179
+ #: custom-post-type-ui.php:530
180
  #, fuzzy
181
  msgid "Add New Taxonomy"
182
  msgstr "分類名"
183
 
184
+ #: custom-post-type-ui.php:533
185
  #, fuzzy
186
  msgid "Edit Taxonomies"
187
  msgstr "ビルトイン分類"
188
 
189
+ #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
190
+ #: inc/listings.php:224
191
  #, fuzzy
192
  msgid "Post Types"
193
  msgstr "投稿タイプ名"
194
 
195
+ #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
196
+ #: inc/listings.php:122 inc/listings.php:132
197
  #, fuzzy
198
  msgid "Taxonomies"
199
  msgstr "ビルトイン分類"
200
 
201
+ #: custom-post-type-ui.php:539
202
  msgid "Get Code"
203
  msgstr ""
204
 
205
+ #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
206
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
207
+ #: inc/taxonomies.php:343
208
  msgid "Settings"
209
  msgstr ""
210
 
211
+ #: custom-post-type-ui.php:622
212
  msgid "Help"
213
  msgstr ""
214
 
215
+ #: custom-post-type-ui.php:651
216
  #, php-format
217
  msgid "%s has been successfully added"
218
  msgstr ""
219
 
220
+ #: custom-post-type-ui.php:653
221
  #, php-format
222
  msgid "%s has failed to be added"
223
  msgstr ""
224
 
225
+ #: custom-post-type-ui.php:657
226
  #, php-format
227
  msgid "%s has been successfully updated"
228
  msgstr ""
229
 
230
+ #: custom-post-type-ui.php:659
231
  #, php-format
232
  msgid "%s has failed to be updated"
233
  msgstr ""
234
 
235
+ #: custom-post-type-ui.php:663
236
  #, php-format
237
  msgid "%s has been successfully deleted"
238
  msgstr ""
239
 
240
+ #: custom-post-type-ui.php:665
241
  #, php-format
242
  msgid "%s has failed to be deleted"
243
  msgstr ""
244
 
245
+ #: custom-post-type-ui.php:669
246
  #, php-format
247
  msgid "%s has been successfully imported"
248
  msgstr ""
249
 
250
+ #: custom-post-type-ui.php:671
251
  #, php-format
252
  msgid "%s has failed to be imported"
253
  msgstr ""
254
 
255
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
256
  #, fuzzy, php-format
257
  msgid "Add new %s"
258
  msgstr "新規追加"
259
 
260
+ #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
261
  #, fuzzy, php-format
262
  msgid "Edit %s"
263
  msgstr "編集"
264
 
265
+ #: custom-post-type-ui.php:756
266
  #, php-format
267
  msgid "New %s"
268
  msgstr ""
269
 
270
+ #: custom-post-type-ui.php:757
271
  #, fuzzy, php-format
272
  msgid "View %s"
273
  msgstr "表示"
274
 
275
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
276
  #, fuzzy, php-format
277
  msgid "All %s"
278
  msgstr "すべての項目"
279
 
280
+ #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
281
  #, fuzzy, php-format
282
  msgid "Search %s"
283
  msgstr "項目検索"
284
 
285
+ #: custom-post-type-ui.php:760
286
  #, fuzzy, php-format
287
  msgid "No %s found."
288
  msgstr "見つかりません"
289
 
290
+ #: custom-post-type-ui.php:761
291
  #, fuzzy, php-format
292
  msgid "No %s found in trash."
293
  msgstr "ゴミ箱にはありません。"
294
 
295
+ #: custom-post-type-ui.php:765
296
  #, fuzzy, php-format
297
  msgid "Popular %s"
298
  msgstr "よく利用されている項目"
299
 
300
+ #: custom-post-type-ui.php:767
301
  #, fuzzy, php-format
302
  msgid "Parent %s"
303
  msgstr "親"
304
 
305
+ #: custom-post-type-ui.php:768
306
  #, fuzzy, php-format
307
  msgid "Parent %s:"
308
  msgstr "親"
309
 
310
+ #: custom-post-type-ui.php:770
311
  #, php-format
312
  msgid "Update %s"
313
  msgstr ""
314
 
315
+ #: custom-post-type-ui.php:772
316
  #, fuzzy, php-format
317
  msgid "New %s name"
318
  msgstr "新規項目名"
319
 
320
+ #: custom-post-type-ui.php:773
321
  #, fuzzy, php-format
322
  msgid "Separate %s with commas"
323
  msgstr "項目が複数ある場合はコンマで区切ってください。"
324
 
325
+ #: custom-post-type-ui.php:774
326
  #, fuzzy, php-format
327
  msgid "Add or remove %s"
328
  msgstr "項目の追加もしくは削除"
329
 
330
+ #: custom-post-type-ui.php:775
331
  #, fuzzy, php-format
332
  msgid "Choose from the most used %s"
333
  msgstr "最もよく使われているものから選択"
334
 
335
+ #: inc/import_export.php:42
336
  msgid ""
337
  "If you are wanting to migrate registered post types or taxonomies from this "
338
  "site to another, that will also use Custom Post Type UI, use the import and "
340
  "the information in the \"Get Code\" tab."
341
  msgstr ""
342
 
343
+ #: inc/import_export.php:45
344
  msgid "NOTE"
345
  msgstr ""
346
 
347
+ #: inc/import_export.php:46
348
  msgid "This will not export the associated posts, just the settings."
349
  msgstr ""
350
 
351
+ #: inc/import_export.php:53
352
  #, fuzzy
353
  msgid "Import Post Types"
354
  msgstr "利用する投稿タイプ"
355
 
356
+ #: inc/import_export.php:55 inc/import_export.php:80
357
+ msgid "Paste content here."
358
+ msgstr ""
359
+
360
+ #: inc/import_export.php:56 inc/import_export.php:81
361
  msgid "Note:"
362
  msgstr ""
363
 
364
+ #: inc/import_export.php:56 inc/import_export.php:81
365
  msgid "Importing will overwrite previous registered settings."
366
  msgstr ""
367
 
368
+ #: inc/import_export.php:57
369
  msgid ""
370
  "To import post types from a different WordPress site, paste the exported "
371
  "content from that site and click the \"Import\" button."
372
  msgstr ""
373
 
374
+ #: inc/import_export.php:58 inc/import_export.php:83
375
+ msgid "Import"
376
+ msgstr ""
377
+
378
+ #: inc/import_export.php:62
379
  #, fuzzy
380
  msgid "Export Post Types"
381
  msgstr "利用する投稿タイプ"
382
 
383
+ #: inc/import_export.php:68
384
  msgid "No post types registered yet."
385
  msgstr ""
386
 
387
+ #: inc/import_export.php:71 inc/import_export.php:96
388
+ msgid ""
389
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
390
+ "(Mac)."
391
+ msgstr ""
392
+
393
+ #: inc/import_export.php:72
394
  msgid ""
395
  "Use the content above to import current post types into a different "
396
  "WordPress site. You can also use this to simply back up your post type "
397
  "settings."
398
  msgstr ""
399
 
400
+ #: inc/import_export.php:78
401
  #, fuzzy
402
  msgid "Import Taxonomies"
403
  msgstr "ビルトイン分類"
404
 
405
+ #: inc/import_export.php:82
406
  msgid ""
407
  "To import taxonomies from a different WordPress site, paste the exported "
408
  "content from that site and click the \"Import\" button."
409
  msgstr ""
410
 
411
+ #: inc/import_export.php:87
412
  #, fuzzy
413
  msgid "Export Taxonomies"
414
  msgstr "ビルトイン分類"
415
 
416
+ #: inc/import_export.php:93
417
  msgid "No taxonomies registered yet."
418
  msgstr ""
419
 
420
+ #: inc/import_export.php:97
421
  msgid ""
422
  "Use the content above to import current taxonomies into a different "
423
  "WordPress site. You can also use this to simply back up your taxonomy "
424
  "settings."
425
  msgstr ""
426
 
427
+ #: inc/import_export.php:105
428
  msgid "Get Post Type and Taxonomy Code"
429
  msgstr ""
430
 
431
+ #: inc/import_export.php:107
432
  #, fuzzy
433
  msgid "All CPT UI Post Types"
434
  msgstr "追加されているカスタム投稿タイプ"
435
 
436
+ #: inc/import_export.php:108 inc/import_export.php:112
437
  msgid "Copy/paste the code below into your functions.php file."
438
  msgstr ""
439
 
440
+ #: inc/import_export.php:111
441
  #, fuzzy
442
  msgid "All CPT UI Taxonomies"
443
  msgstr "ビルトイン分類"
444
 
445
+ #: inc/import_export.php:142
446
  msgid "No taxonomies to display at this time"
447
  msgstr ""
448
 
449
+ #: inc/import_export.php:241
450
  msgid "No post types to display at this time"
451
  msgstr ""
452
 
453
+ #: inc/import_export.php:367
454
  #, fuzzy
455
  msgid "Post types"
456
  msgstr "投稿タイプ名"
457
 
458
+ #: inc/listings.php:10
459
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
460
  msgstr ""
461
 
462
+ #: inc/listings.php:18 inc/listings.php:134
463
  #, php-format
464
  msgid "Total count: %d"
465
  msgstr ""
466
 
467
+ #: inc/listings.php:31 inc/listings.php:119
468
  #, fuzzy
469
  msgid "Post Type"
470
  msgstr "利用する投稿タイプ"
471
 
472
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
473
  msgid "Supports"
474
  msgstr "サポート"
475
 
476
+ #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
477
+ #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
478
  #, fuzzy
479
  msgid "Labels"
480
  msgstr "ラベル"
481
 
482
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
483
  msgid "Edit"
484
  msgstr "編集"
485
 
486
+ #: inc/listings.php:75
487
  msgid "View frontend archive"
488
  msgstr ""
489
 
490
+ #: inc/listings.php:108 inc/listings.php:211
491
  msgid "No custom labels to display"
492
  msgstr ""
493
 
494
+ #: inc/listings.php:147 inc/listings.php:222
495
  #, fuzzy
496
  msgid "Taxonomy"
497
  msgstr "分類名"
498
 
499
+ #: inc/post-types.php:30 inc/taxonomies.php:25
500
  msgid "Are you sure you want to delete this?"
501
  msgstr ""
502
 
503
+ #: inc/post-types.php:89
504
  msgid ""
505
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
506
  "registers a new post type entry for your install."
507
  msgstr ""
508
 
509
+ #: inc/post-types.php:90
510
  msgid ""
511
  "Use appropriate checkbox above save/delete buttons if you wish to change "
512
  "slugs and update post types for existing posts."
513
  msgstr ""
514
 
515
+ #: inc/post-types.php:91 inc/taxonomies.php:87
516
  msgid "Select: "
517
  msgstr ""
518
 
519
+ #: inc/post-types.php:94 inc/taxonomies.php:91
520
  msgid "Select"
521
  msgstr ""
522
 
523
+ #: inc/post-types.php:124
524
  #, fuzzy
525
  msgid "Post Type Slug"
526
  msgstr "投稿タイプ名"
527
 
528
+ #: inc/post-types.php:125
529
  msgid "(e.g. movie)"
530
  msgstr ""
531
 
532
+ #: inc/post-types.php:126
533
+ msgid ""
534
+ "The post type name. Used to retrieve custom post type content. Should be "
535
+ "short and unique"
536
+ msgstr ""
537
+
538
+ #: inc/post-types.php:137 inc/taxonomies.php:129
539
  #, fuzzy
540
  msgid "Plural Label"
541
  msgstr "単数形のラベル"
542
 
543
+ #: inc/post-types.php:138
544
  msgid "(e.g. Movies)"
545
  msgstr ""
546
 
547
+ #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
548
+ #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
549
+ #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
550
+ #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
551
+ #: inc/post-types.php:368
552
+ msgid "Post type label. Used in the admin menu for displaying post types."
553
+ msgstr ""
554
+
555
+ #: inc/post-types.php:149 inc/taxonomies.php:138
556
  msgid "Singular Label"
557
  msgstr "単数形のラベル"
558
 
559
+ #: inc/post-types.php:150
560
  msgid "(e.g. Movie)"
561
  msgstr ""
562
 
563
+ #: inc/post-types.php:151
564
+ msgid ""
565
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
566
+ "needed."
567
+ msgstr ""
568
+
569
+ #: inc/post-types.php:167
570
  msgid "Description"
571
  msgstr "説明"
572
 
573
+ #: inc/post-types.php:168
574
+ msgid ""
575
+ "Custom Post Type Description. Describe what your custom post type is used "
576
+ "for."
577
+ msgstr ""
578
+
579
+ #: inc/post-types.php:180
580
  msgid "Migrate posts to newly renamed post type?"
581
  msgstr ""
582
 
583
+ #: inc/post-types.php:181
584
+ msgid "Check this to migrate posts if and when renaming your post type."
585
+ msgstr ""
586
+
587
+ #: inc/post-types.php:190
588
  #, fuzzy
589
  msgid "Save Post Type"
590
  msgstr "利用する投稿タイプ"
591
 
592
+ #: inc/post-types.php:191
593
  #, fuzzy
594
  msgid "Delete Post Type"
595
  msgstr "利用する投稿タイプ"
596
 
597
+ #: inc/post-types.php:193
598
  #, fuzzy
599
  msgid "Add Post Type"
600
  msgstr "利用する投稿タイプ"
601
 
602
+ #: inc/post-types.php:204 inc/taxonomies.php:190
603
  msgid "Starter Notes"
604
  msgstr ""
605
 
606
+ #: inc/post-types.php:207
607
  #, php-format
608
  msgid ""
609
  "Post Type names should have %smax 20 characters%s, and only contain "
612
  "revision, nav_menu_item."
613
  msgstr ""
614
 
615
+ #: inc/post-types.php:208
616
  #, php-format
617
  msgid ""
618
  "If you are unfamiliar with the advanced post type settings, just fill in the "
621
  "post type name. Hover over the question mark for more details."
622
  msgstr ""
623
 
624
+ #: inc/post-types.php:209
625
  #, fuzzy, php-format
626
  msgid ""
627
  "Deleting custom post types will %sNOT%s delete any content into the database "
632
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
633
  "ません。"
634
 
635
+ #: inc/post-types.php:223 inc/taxonomies.php:211
636
  #, fuzzy
637
  msgid "Menu Name"
638
  msgstr "名前"
639
 
640
+ #: inc/post-types.php:224
641
+ msgid "Custom menu name for your custom post type."
642
+ msgstr ""
643
+
644
+ #: inc/post-types.php:228
645
  msgid "(e.g. My Movies)"
646
  msgstr ""
647
 
648
+ #: inc/post-types.php:235 inc/taxonomies.php:220
649
  msgid "All Items"
650
  msgstr "すべての項目"
651
 
652
+ #: inc/post-types.php:240
653
  msgid "(e.g. All Movies)"
654
  msgstr ""
655
 
656
+ #: inc/post-types.php:247
657
  msgid "Add New"
658
  msgstr "新規追加"
659
 
660
+ #: inc/post-types.php:252
661
  #, fuzzy
662
  msgid "(e.g. Add New)"
663
  msgstr "新規追加"
664
 
665
+ #: inc/post-types.php:259 inc/taxonomies.php:256
666
  msgid "Add New Item"
667
  msgstr "新規項目追加"
668
 
669
+ #: inc/post-types.php:264
670
  msgid "(e.g. Add New Movie)"
671
  msgstr ""
672
 
673
+ #: inc/post-types.php:276
674
  msgid "(e.g. Edit)"
675
  msgstr ""
676
 
677
+ #: inc/post-types.php:283 inc/taxonomies.php:229
678
  msgid "Edit Item"
679
  msgstr "項目を編集"
680
 
681
+ #: inc/post-types.php:288
682
  msgid "(e.g. Edit Movie)"
683
  msgstr ""
684
 
685
+ #: inc/post-types.php:295
686
  msgid "New Item"
687
  msgstr "新規項目"
688
 
689
+ #: inc/post-types.php:300
690
  #, fuzzy
691
  msgid "(e.g. New Movie)"
692
  msgstr "新規項目追加"
693
 
694
+ #: inc/post-types.php:307
695
  msgid "View"
696
  msgstr "表示"
697
 
698
+ #: inc/post-types.php:312
699
  msgid "(e.g. View)"
700
  msgstr ""
701
 
702
+ #: inc/post-types.php:319 inc/taxonomies.php:238
703
  msgid "View Item"
704
  msgstr "項目を表示"
705
 
706
+ #: inc/post-types.php:324
707
  msgid "(e.g. View Movie)"
708
  msgstr ""
709
 
710
+ #: inc/post-types.php:331
711
  #, fuzzy
712
  msgid "Search Item"
713
  msgstr "項目検索"
714
 
715
+ #: inc/post-types.php:336
716
  msgid "(e.g. Search Movie)"
717
  msgstr ""
718
 
719
+ #: inc/post-types.php:343
720
  msgid "Not Found"
721
  msgstr "見つかりません"
722
 
723
+ #: inc/post-types.php:348
724
  msgid "(e.g. No Movies found)"
725
  msgstr ""
726
 
727
+ #: inc/post-types.php:355
728
  msgid "Not Found in Trash"
729
  msgstr "ゴミ箱にはありません。"
730
 
731
+ #: inc/post-types.php:360
732
  #, fuzzy
733
  msgid "(e.g. No Movies found in Trash)"
734
  msgstr "ゴミ箱にはありません。"
735
 
736
+ #: inc/post-types.php:367
737
  msgid "Parent"
738
  msgstr "親"
739
 
740
+ #: inc/post-types.php:372
741
  msgid "(e.g. Parent Movie)"
742
  msgstr ""
743
 
744
+ #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
745
+ #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
746
+ #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
747
+ #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
748
+ #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
749
+ #: inc/taxonomies.php:469
 
 
 
 
 
 
750
  msgid "False"
751
  msgstr ""
752
 
753
+ #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
754
+ #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
755
+ #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
756
+ #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
757
+ #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
758
+ #: inc/taxonomies.php:470
 
 
 
 
 
 
759
  msgid "True"
760
  msgstr ""
761
 
762
+ #: inc/post-types.php:395
 
 
 
763
  msgid "Public"
764
  msgstr "一般公開"
765
 
766
+ #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
767
+ #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
768
+ #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
 
 
 
 
 
769
  msgid "(default: True)"
770
  msgstr ""
771
 
772
+ #: inc/post-types.php:397
773
+ msgid ""
774
+ "Whether posts of this type should be shown in the admin UI and is publicly "
775
+ "queryable."
776
+ msgstr ""
777
+
778
+ #: inc/post-types.php:415 inc/taxonomies.php:375
779
  msgid "Show UI"
780
  msgstr "UI を表示"
781
 
782
+ #: inc/post-types.php:417
783
+ msgid "Whether to generate a default UI for managing this post type."
784
+ msgstr ""
785
+
786
+ #: inc/post-types.php:425
787
  msgid "Has Archive"
788
  msgstr ""
789
 
790
+ #: inc/post-types.php:426
791
+ msgid "Whether the post type will have a post type archive URL."
792
+ msgstr ""
793
+
794
+ #: inc/post-types.php:427
795
  msgid "If left blank, the archive slug will default to the post type slug."
796
  msgstr ""
797
 
798
+ #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
799
+ #: inc/taxonomies.php:359 inc/taxonomies.php:479
 
800
  msgid "(default: False)"
801
  msgstr ""
802
 
803
+ #: inc/post-types.php:453
804
+ msgid "Slug to be used for archive URL."
805
+ msgstr ""
806
+
807
+ #: inc/post-types.php:473
808
  msgid "Exclude From Search"
809
  msgstr ""
810
 
811
+ #: inc/post-types.php:475
812
+ msgid ""
813
+ "Whether to exclude posts with this post type from front end search results."
814
+ msgstr ""
815
+
816
+ #: inc/post-types.php:486
817
  msgid "Capability Type"
818
  msgstr "利用タイプ"
819
 
820
+ #: inc/post-types.php:487
821
+ msgid "The post type to use for checking read, edit, and delete capabilities"
822
+ msgstr ""
823
+
824
+ #: inc/post-types.php:504 inc/taxonomies.php:358
825
  msgid "Hierarchical"
826
  msgstr "階層"
827
 
828
+ #: inc/post-types.php:506
829
+ msgid "Whether the post type can have parent-child relationships"
830
+ msgstr ""
831
+
832
+ #: inc/post-types.php:524 inc/taxonomies.php:418
833
  msgid "Rewrite"
834
  msgstr "リライト"
835
 
836
+ #: inc/post-types.php:526
837
+ msgid "Whether or not WordPress should use rewrites for this post type"
838
+ msgstr ""
839
+
840
+ #: inc/post-types.php:537 inc/taxonomies.php:429
841
  msgid "Custom Rewrite Slug"
842
  msgstr "カスタムリライトスラッグ"
843
 
844
+ #: inc/post-types.php:538
845
  msgid "(default: post type slug)"
846
  msgstr ""
847
 
848
+ #: inc/post-types.php:539
849
+ msgid "Custom post type slug to use instead of the default."
850
+ msgstr ""
851
+
852
+ #: inc/post-types.php:556
853
  msgid "With Front"
854
  msgstr ""
855
 
856
+ #: inc/post-types.php:558 inc/taxonomies.php:446
857
+ msgid "Should the permastruct be prepended with the front base."
858
+ msgstr ""
859
+
860
+ #: inc/post-types.php:576 inc/taxonomies.php:392
861
  msgid "Query Var"
862
  msgstr "クエリーバージョン"
863
 
864
+ #: inc/post-types.php:578
865
+ msgid "Sets the query_var key for this post type."
866
+ msgstr ""
867
+
868
+ #: inc/post-types.php:586
869
  msgid "Menu Position"
870
  msgstr "メニューの位置"
871
 
872
+ #: inc/post-types.php:587
873
+ msgid ""
874
+ "The position in the menu order the post type should appear. show_in_menu "
875
+ "must be true."
876
+ msgstr ""
877
+
878
+ #: inc/post-types.php:588
879
  msgid ""
880
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
881
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
882
+ "the \"menu_position\" section. Range of 5-100"
883
  msgstr ""
884
 
885
+ #: inc/post-types.php:603
886
  msgid "Show in Menu"
887
  msgstr ""
888
 
889
+ #: inc/post-types.php:604
890
+ msgid ""
891
+ "Whether to show the post type in the admin menu and where to show that menu."
892
+ msgstr ""
893
+
894
+ #: inc/post-types.php:605
895
  msgid ""
896
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
897
  "php\" is indicated for second input, post type will be sub menu of that."
898
  msgstr ""
899
 
900
+ #: inc/post-types.php:631
901
+ msgid "Top-level page file name to make post type a sub-menu of."
902
+ msgstr ""
903
+
904
+ #: inc/post-types.php:643
905
  #, fuzzy
906
  msgid "Menu Icon"
907
  msgstr "メニューの位置"
908
 
909
+ #: inc/post-types.php:644
910
  msgid "(Full URL for icon or Dashicon class)"
911
  msgstr ""
912
 
913
+ #: inc/post-types.php:645
914
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
915
+ msgstr ""
916
+
917
+ #: inc/post-types.php:658
918
  msgid "Title"
919
  msgstr ""
920
 
921
+ #: inc/post-types.php:659
922
+ msgid "Adds the title meta box when creating content for this custom post type"
923
+ msgstr ""
924
+
925
+ #: inc/post-types.php:673
926
  #, fuzzy
927
  msgid "Editor"
928
  msgstr "編集"
929
 
930
+ #: inc/post-types.php:674
931
+ msgid ""
932
+ "Adds the content editor meta box when creating content for this custom post "
933
+ "type"
934
+ msgstr ""
935
+
936
+ #: inc/post-types.php:688
937
  msgid "Excerpt"
938
  msgstr ""
939
 
940
+ #: inc/post-types.php:689
941
+ msgid ""
942
+ "Adds the excerpt meta box when creating content for this custom post type"
943
+ msgstr ""
944
+
945
+ #: inc/post-types.php:703
946
  msgid "Trackbacks"
947
  msgstr ""
948
 
949
+ #: inc/post-types.php:704
950
+ msgid ""
951
+ "Adds the trackbacks meta box when creating content for this custom post type"
952
+ msgstr ""
953
+
954
+ #: inc/post-types.php:718
955
  #, fuzzy
956
  msgid "Custom Fields"
957
  msgstr "カスタムリライトスラッグ"
958
 
959
+ #: inc/post-types.php:719
960
+ msgid ""
961
+ "Adds the custom fields meta box when creating content for this custom post "
962
+ "type"
963
+ msgstr ""
964
+
965
+ #: inc/post-types.php:733
966
  msgid "Comments"
967
  msgstr ""
968
 
969
+ #: inc/post-types.php:734
970
+ msgid ""
971
+ "Adds the comments meta box when creating content for this custom post type"
972
+ msgstr ""
973
+
974
+ #: inc/post-types.php:748
975
  msgid "Revisions"
976
  msgstr ""
977
 
978
+ #: inc/post-types.php:749
979
+ msgid ""
980
+ "Adds the revisions meta box when creating content for this custom post type"
981
+ msgstr ""
982
+
983
+ #: inc/post-types.php:763
984
  msgid "Featured Image"
985
  msgstr ""
986
 
987
+ #: inc/post-types.php:764
988
+ msgid ""
989
+ "Adds the featured image meta box when creating content for this custom post "
990
+ "type"
991
+ msgstr ""
992
+
993
+ #: inc/post-types.php:778
994
  msgid "Author"
995
  msgstr ""
996
 
997
+ #: inc/post-types.php:779
998
+ msgid ""
999
+ "Adds the author meta box when creating content for this custom post type"
1000
+ msgstr ""
1001
+
1002
+ #: inc/post-types.php:793
1003
  msgid "Page Attributes"
1004
  msgstr ""
1005
 
1006
+ #: inc/post-types.php:794
1007
+ msgid ""
1008
+ "Adds the page attribute meta box when creating content for this custom post "
1009
+ "type"
1010
+ msgstr ""
1011
+
1012
+ #: inc/post-types.php:808
1013
  msgid "Post Formats"
1014
  msgstr ""
1015
 
1016
+ #: inc/post-types.php:809
1017
+ msgid "Adds post format support"
1018
+ msgstr ""
1019
+
1020
+ #: inc/post-types.php:814
1021
  msgid "Use the option below to explicitly set \"supports\" to false."
1022
  msgstr ""
1023
 
1024
+ #: inc/post-types.php:822
1025
  msgid "None"
1026
  msgstr ""
1027
 
1028
+ #: inc/post-types.php:823
1029
+ msgid "Remove all support features"
1030
+ msgstr ""
1031
+
1032
+ #: inc/post-types.php:829
1033
  #, fuzzy
1034
  msgid "Custom \"Supports\""
1035
  msgstr "サポート"
1036
 
1037
+ #: inc/post-types.php:830
1038
  msgid ""
1039
  "Use this input to register custom \"supports\" values, separated by commas."
1040
  msgstr ""
1041
 
1042
+ #: inc/post-types.php:836
1043
+ msgid "Provide custom support slugs here."
1044
+ msgstr ""
1045
+
1046
+ #: inc/post-types.php:842
1047
  msgid "Built-in Taxonomies"
1048
  msgstr "ビルトイン分類"
1049
 
1050
+ #: inc/post-types.php:871 inc/taxonomies.php:172
1051
+ #, php-format
1052
+ msgid "Adds %s support"
1053
+ msgstr ""
1054
+
1055
+ #: inc/post-types.php:977
1056
  msgid "Please provide a post type to delete"
1057
  msgstr ""
1058
 
1059
+ #: inc/post-types.php:1037
1060
  msgid "Please provide a post type name"
1061
  msgstr ""
1062
 
1063
+ #: inc/post-types.php:1061
1064
  msgid "Please do not use quotes in post type names or rewrite slugs"
1065
  msgstr ""
1066
 
1067
+ #: inc/post-types.php:1068
1068
  #, php-format
1069
  msgid "Please choose a different post type name. %s is already registered."
1070
  msgstr ""
1071
 
1072
+ #: inc/support.php:41
1073
  #, fuzzy
1074
  msgid "Custom Post Type UI Support"
1075
  msgstr "Custom Post Types UI"
1076
 
1077
+ #: inc/support.php:43
1078
  #, php-format
1079
  msgid ""
1080
  "Please note that this plugin will NOT handle display of registered post "
1082
  "you. If all else fails, visit us on the %s"
1083
  msgstr ""
1084
 
1085
+ #: inc/support.php:44
1086
  #, fuzzy
1087
  msgid "Support Forums"
1088
  msgstr "サポート"
1089
 
1090
+ #: inc/support.php:50
1091
  msgid "General"
1092
  msgstr ""
1093
 
1094
+ #: inc/support.php:53
1095
  msgid ""
1096
  "I changed my custom post type name and now I can not get to my posts. How do "
1097
  "I get them back?"
1098
  msgstr ""
1099
 
1100
+ #: inc/support.php:54
1101
  msgid ""
1102
  "You can either change the custom post type name back to the original name or "
1103
  "try the Post Type Switcher plugin"
1104
  msgstr ""
1105
 
1106
+ #: inc/support.php:59
1107
  msgid ""
1108
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1109
  "shown. How do I remove the duplicate?"
1110
  msgstr ""
1111
 
1112
+ #: inc/support.php:60
1113
  msgid ""
1114
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1115
  "saved option which gets registered as its own post type or taxonomy. Since "
1117
  "delete the previous version's entry."
1118
  msgstr ""
1119
 
1120
+ #: inc/support.php:63
1121
  msgid ""
1122
  "I have added post thumbnail and/or post format support to my post type, but "
1123
  "those do not appear when adding a post type post."
1124
  msgstr ""
1125
 
1126
+ #: inc/support.php:64
1127
  msgid ""
1128
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1129
  msgstr ""
1130
 
1131
+ #: inc/support.php:69
1132
  msgid "Front-end Display"
1133
  msgstr ""
1134
 
1135
+ #: inc/support.php:72
1136
  msgid "What template files should I edit to alter my post type display?"
1137
  msgstr ""
1138
 
1139
+ #: inc/support.php:73
1140
  #, php-format
1141
  msgid ""
1142
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1143
  "details about available templates."
1144
  msgstr ""
1145
 
1146
+ #: inc/support.php:80
1147
  msgid "How do I display my custom post type on my site?"
1148
  msgstr ""
1149
 
1150
+ #: inc/support.php:81
1151
  #, php-format
1152
  msgid ""
1153
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1155
  "should be something like \"http://www.mysite.com/post-type-slug\""
1156
  msgstr ""
1157
 
1158
+ #: inc/support.php:87
1159
  msgid ""
1160
  "I have added categories and tags to my custom post type, but they do not "
1161
  "appear in the archives."
1162
  msgstr ""
1163
 
1164
+ #: inc/support.php:88
1165
  #, php-format
1166
  msgid ""
1167
  "You will need to add your newly created post type to the types that the "
1169
  "that at %s"
1170
  msgstr ""
1171
 
1172
+ #: inc/support.php:97
1173
  msgid "Advanced"
1174
  msgstr ""
1175
 
1176
+ #: inc/support.php:100
1177
  msgid "How do I add custom metaboxes to my post type?"
1178
  msgstr ""
1179
 
1180
+ #: inc/support.php:102
1181
  #, php-format
1182
  msgid ""
1183
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1184
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1185
  msgstr ""
1186
 
1187
+ #: inc/support.php:108
1188
  msgid ""
1189
  "How do I add a newly registered taxonomy to a post type that already exists?"
1190
  msgstr ""
1191
 
1192
+ #: inc/support.php:110
1193
  #, php-format
1194
  msgid "Check out the %s function for documentation and usage examples."
1195
  msgstr ""
1196
 
1197
+ #: inc/support.php:116
1198
  #, fuzzy
1199
  msgid "Post relationships?"
1200
  msgstr "利用する投稿タイプ"
1201
 
1202
+ #: inc/support.php:117
1203
  #, php-format
1204
  msgid ""
1205
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1206
  "plugin that should be a good start."
1207
  msgstr ""
1208
 
1209
+ #: inc/support.php:126
1210
  msgid "Is there any function reference list?"
1211
  msgstr ""
1212
 
1213
+ #: inc/support.php:127
1214
  #, php-format
1215
  msgid ""
1216
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1217
  "will be useful as they are attached to hooks."
1218
  msgstr ""
1219
 
1220
+ #: inc/support.php:131
1221
  msgid ""
1222
  "How do I filter the \"enter title here\" text in the post editor screen?"
1223
  msgstr ""
1224
 
1225
+ #: inc/support.php:132
1226
  msgid ""
1227
  "Change text inside the post/page editor title field. Should be able to adapt "
1228
  "as necessary."
1229
  msgstr ""
1230
 
1231
+ #: inc/taxonomies.php:85
1232
  msgid ""
1233
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1234
  "registers a new taxonomy entry for your install."
1235
  msgstr ""
1236
 
1237
+ #: inc/taxonomies.php:118
1238
  #, fuzzy
1239
  msgid "Taxonomy Slug"
1240
  msgstr "分類名"
1241
 
1242
+ #: inc/taxonomies.php:119
1243
  #, fuzzy
1244
  msgid "(e.g. actor)"
1245
  msgstr "項目の追加もしくは削除"
1246
 
1247
+ #: inc/taxonomies.php:120
1248
+ msgid ""
1249
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1250
+ "and unique"
1251
+ msgstr ""
1252
+
1253
+ #: inc/taxonomies.php:128 inc/taxonomies.php:210
1254
  msgid "(e.g. Actors)"
1255
  msgstr ""
1256
 
1257
+ #: inc/taxonomies.php:130
1258
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1259
+ msgstr ""
1260
+
1261
+ #: inc/taxonomies.php:137
1262
  msgid "(e.g. Actor)"
1263
  msgstr ""
1264
 
1265
+ #: inc/taxonomies.php:139
1266
+ msgid ""
1267
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1268
+ msgstr ""
1269
+
1270
+ #: inc/taxonomies.php:142
1271
  msgid "Attach to Post Type"
1272
  msgstr "利用する投稿タイプ"
1273
 
1274
+ #: inc/taxonomies.php:181
1275
  #, fuzzy
1276
  msgid "Save Taxonomy"
1277
  msgstr "分類名"
1278
 
1279
+ #: inc/taxonomies.php:182
1280
  #, fuzzy
1281
  msgid "Delete Taxonomy"
1282
  msgstr "カスタム分類作成"
1283
 
1284
+ #: inc/taxonomies.php:184
1285
  #, fuzzy
1286
  msgid "Add Taxonomy"
1287
  msgstr "分類名"
1288
 
1289
+ #: inc/taxonomies.php:193
1290
  #, php-format
1291
  msgid ""
1292
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1294
  "letters that do not have accents."
1295
  msgstr ""
1296
 
1297
+ #: inc/taxonomies.php:194
1298
  #, php-format
1299
  msgid ""
1300
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1304
  "marks for more details."
1305
  msgstr ""
1306
 
1307
+ #: inc/taxonomies.php:195
1308
  #, fuzzy, php-format
1309
  msgid ""
1310
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1315
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1316
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1317
 
1318
+ #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1319
+ #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1320
+ #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1321
+ #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1322
+ #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1323
+ msgid ""
1324
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1325
+ msgstr ""
1326
+
1327
+ #: inc/taxonomies.php:219
1328
  msgid "(e.g. All Actors)"
1329
  msgstr ""
1330
 
1331
+ #: inc/taxonomies.php:228
1332
  msgid "(e.g. Edit Actor)"
1333
  msgstr ""
1334
 
1335
+ #: inc/taxonomies.php:237
1336
  msgid "(e.g. View Actor)"
1337
  msgstr ""
1338
 
1339
+ #: inc/taxonomies.php:246
1340
  msgid "(e.g. Update Actor Name)"
1341
  msgstr ""
1342
 
1343
+ #: inc/taxonomies.php:247
1344
  #, fuzzy
1345
  msgid "Update Item Name"
1346
  msgstr "項目をアップデート"
1347
 
1348
+ #: inc/taxonomies.php:255
1349
  msgid "(e.g. Add New Actor)"
1350
  msgstr ""
1351
 
1352
+ #: inc/taxonomies.php:264
1353
  msgid "(e.g. New Actor Name)"
1354
  msgstr ""
1355
 
1356
+ #: inc/taxonomies.php:265
1357
  msgid "New Item Name"
1358
  msgstr "新規項目名"
1359
 
1360
+ #: inc/taxonomies.php:273
1361
  msgid "(e.g. Parent Actor)"
1362
  msgstr ""
1363
 
1364
+ #: inc/taxonomies.php:274
1365
  msgid "Parent Item"
1366
  msgstr "親項目"
1367
 
1368
+ #: inc/taxonomies.php:282
1369
  msgid "(e.g. Parent Actor:)"
1370
  msgstr ""
1371
 
1372
+ #: inc/taxonomies.php:283
1373
  msgid "Parent Item Colon"
1374
  msgstr "親項目コロン"
1375
 
1376
+ #: inc/taxonomies.php:291
1377
  msgid "(e.g. Search Actors)"
1378
  msgstr ""
1379
 
1380
+ #: inc/taxonomies.php:292
1381
  msgid "Search Items"
1382
  msgstr "項目検索"
1383
 
1384
+ #: inc/taxonomies.php:300
1385
  msgid "(e.g. Popular Actors)"
1386
  msgstr ""
1387
 
1388
+ #: inc/taxonomies.php:301
1389
  msgid "Popular Items"
1390
  msgstr "よく利用されている項目"
1391
 
1392
+ #: inc/taxonomies.php:309
1393
  #, fuzzy
1394
  msgid "(e.g. Separate actors with commas)"
1395
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1396
 
1397
+ #: inc/taxonomies.php:310
1398
  msgid "Separate Items with Commas"
1399
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1400
 
1401
+ #: inc/taxonomies.php:318
1402
  #, fuzzy
1403
  msgid "(e.g. Add or remove actors)"
1404
  msgstr "項目の追加もしくは削除"
1405
 
1406
+ #: inc/taxonomies.php:319
1407
  msgid "Add or Remove Items"
1408
  msgstr "項目の追加もしくは削除"
1409
 
1410
+ #: inc/taxonomies.php:327
1411
  #, fuzzy
1412
  msgid "(e.g. Choose from the most used actors)"
1413
  msgstr "最もよく使われているものから選択"
1414
 
1415
+ #: inc/taxonomies.php:328
1416
  msgid "Choose From Most Used"
1417
  msgstr "最もよく使われているものから選択"
1418
 
1419
+ #: inc/taxonomies.php:336
1420
  msgid "(e.g. No actors found)"
1421
  msgstr ""
1422
 
1423
+ #: inc/taxonomies.php:337
1424
  #, fuzzy
1425
  msgid "Not found"
1426
  msgstr "見つかりません"
1427
 
1428
+ #: inc/taxonomies.php:360
1429
+ msgid "Whether the taxonomy can have parent-child relationships"
1430
+ msgstr ""
1431
+
1432
+ #: inc/taxonomies.php:377
1433
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
1434
+ msgstr ""
1435
+
1436
+ #: inc/taxonomies.php:394
1437
+ msgid "Sets the query_var key for this taxonomy."
1438
+ msgstr ""
1439
+
1440
+ #: inc/taxonomies.php:402
1441
  msgid "(default: none). Query Var needs to be true to use."
1442
  msgstr ""
1443
 
1444
+ #: inc/taxonomies.php:403
1445
  msgid "Custom Query Var String"
1446
  msgstr ""
1447
 
1448
+ #: inc/taxonomies.php:404
1449
+ msgid "Sets a custom query_var slug for this taxonomy."
1450
+ msgstr ""
1451
+
1452
+ #: inc/taxonomies.php:420
1453
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
1454
+ msgstr ""
1455
+
1456
+ #: inc/taxonomies.php:428
1457
  #, fuzzy
1458
  msgid "(default: taxonomy name)"
1459
  msgstr "新規項目名"
1460
 
1461
+ #: inc/taxonomies.php:430
1462
+ msgid "Custom taxonomy rewrite slug."
1463
+ msgstr ""
1464
+
1465
+ #: inc/taxonomies.php:444
1466
  msgid "Rewrite With Front"
1467
  msgstr ""
1468
 
1469
+ #: inc/taxonomies.php:445
1470
  msgid "(default: true)"
1471
  msgstr ""
1472
 
1473
+ #: inc/taxonomies.php:461
1474
  #, fuzzy
1475
  msgid "Rewrite Hierarchical"
1476
  msgstr "階層"
1477
 
1478
+ #: inc/taxonomies.php:462
1479
  msgid "(default: false)"
1480
  msgstr ""
1481
 
1482
+ #: inc/taxonomies.php:463
1483
+ msgid "Should the permastruct allow hierarchical urls."
1484
+ msgstr ""
1485
+
1486
+ #: inc/taxonomies.php:478
1487
  msgid "Show Admin Column"
1488
  msgstr ""
1489
 
1490
+ #: inc/taxonomies.php:480
1491
+ msgid ""
1492
+ "Whether to allow automatic creation of taxonomy columns on associated post-"
1493
+ "types."
1494
+ msgstr ""
1495
+
1496
+ #: inc/taxonomies.php:585
1497
  msgid "Please provide a taxonomy to delete"
1498
  msgstr ""
1499
 
1500
+ #: inc/taxonomies.php:636
1501
  msgid "Please provide a taxonomy name"
1502
  msgstr ""
1503
 
1504
+ #: inc/taxonomies.php:652
1505
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1506
  msgstr ""
1507
 
1508
+ #: inc/taxonomies.php:658
1509
  #, php-format
1510
  msgid "Please choose a different taxonomy name. %s is already used."
1511
  msgstr ""
1512
 
1513
+ #. Plugin URI of the plugin/theme
1514
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1515
+ msgstr ""
1516
+
1517
+ #. Description of the plugin/theme
1518
+ msgid ""
1519
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1520
+ msgstr ""
1521
+
1522
+ #. Author of the plugin/theme
1523
+ msgid "WebDevStudios"
1524
+ msgstr ""
1525
+
1526
+ #. Author URI of the plugin/theme
1527
+ msgid "http://webdevstudios.com/"
1528
+ msgstr ""
1529
+
1530
  #, fuzzy
1531
  #~ msgid "Edit Post Type"
1532
  #~ msgstr "利用する投稿タイプ"
languages/cpt-plugin-pt_PT.mo CHANGED
Binary file
languages/cpt-plugin-pt_PT.po CHANGED
@@ -1,26 +1,26 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI\n"
4
- "POT-Creation-Date: 2015-06-15 22:31-0600\n"
5
- "PO-Revision-Date: 2015-06-15 22:31-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"
@@ -58,6 +58,7 @@ msgstr "Ajuda/suporte"
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"
@@ -204,8 +205,8 @@ 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:374
208
- #: inc/taxonomies.php:340
209
  msgid "Settings"
210
  msgstr "Definições"
211
 
@@ -213,122 +214,122 @@ msgstr "Definições"
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)"
@@ -439,7 +440,7 @@ msgstr ""
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"
@@ -478,16 +479,16 @@ msgstr "Contagem total: %d"
478
  msgid "Post Type"
479
  msgstr "Tipo de artigo"
480
 
481
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
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:212 inc/taxonomies.php:198
487
  msgid "Labels"
488
  msgstr "Legendas"
489
 
490
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
491
  msgid "Edit"
492
  msgstr "Editar"
493
 
@@ -507,7 +508,7 @@ msgstr "Taxionomia"
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."
@@ -515,7 +516,7 @@ 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."
@@ -523,23 +524,23 @@ 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:91 inc/taxonomies.php:88
531
  msgid "Select"
532
  msgstr "Seleccionar"
533
 
534
- #: inc/post-types.php:121
535
  msgid "Post Type Slug"
536
  msgstr "URL do tipo de artigo"
537
 
538
- #: inc/post-types.php:122
539
  msgid "(e.g. movie)"
540
  msgstr "(p. ex. filme)"
541
 
542
- #: inc/post-types.php:123
543
  msgid ""
544
  "The post type name. Used to retrieve custom post type content. Should be "
545
  "short and unique"
@@ -547,33 +548,33 @@ msgstr ""
547
  "O nome do tipo de artigo. Utilizado para obter o conteúdo do tipo de artigo "
548
  "personalizado. Deverá ser curto e único."
549
 
550
- #: inc/post-types.php:134 inc/taxonomies.php:126
551
  msgid "Plural Label"
552
  msgstr "Legenda no plural"
553
 
554
- #: inc/post-types.php:135
555
  msgid "(e.g. Movies)"
556
  msgstr "(p. ex. Filmes)"
557
 
558
- #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
559
- #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
560
- #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
561
- #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
562
- #: inc/post-types.php:365
563
  msgid "Post type label. Used in the admin menu for displaying post types."
564
  msgstr ""
565
  "Legenda do tipo de artigo. Utilizada no menu de administração para mostrar "
566
  "tipos de artigo."
567
 
568
- #: inc/post-types.php:146 inc/taxonomies.php:135
569
  msgid "Singular Label"
570
  msgstr "Legenda no singular"
571
 
572
- #: inc/post-types.php:147
573
  msgid "(e.g. Movie)"
574
  msgstr "(p. ex. Filme)"
575
 
576
- #: inc/post-types.php:148
577
  msgid ""
578
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
579
  "needed."
@@ -581,11 +582,11 @@ msgstr ""
581
  "Legenda no singular do tipo de artigo personalizado. Utilizada no WordPress "
582
  "quando é necessária uma legenda no singular."
583
 
584
- #: inc/post-types.php:164
585
  msgid "Description"
586
  msgstr "Descrição"
587
 
588
- #: inc/post-types.php:165
589
  msgid ""
590
  "Custom Post Type Description. Describe what your custom post type is used "
591
  "for."
@@ -593,31 +594,31 @@ msgstr ""
593
  "Descrição do tipo de artigo personalizado. Descreva para que serve o seu "
594
  "tipo de artigo personalizado."
595
 
596
- #: inc/post-types.php:177
597
  msgid "Migrate posts to newly renamed post type?"
598
  msgstr "Migrar artigos para o recém renomeado tipo de artigo?"
599
 
600
- #: inc/post-types.php:178
601
  msgid "Check this to migrate posts if and when renaming your post type."
602
  msgstr "Seleccione isto para migrar artigos ao renomear o seu tipo de artigo."
603
 
604
- #: inc/post-types.php:187
605
  msgid "Save Post Type"
606
  msgstr "Guardar tipo de artigo"
607
 
608
- #: inc/post-types.php:188
609
  msgid "Delete Post Type"
610
  msgstr "Apagar tipo de artigo"
611
 
612
- #: inc/post-types.php:190
613
  msgid "Add Post Type"
614
  msgstr "Adicionar tipo de artigo"
615
 
616
- #: inc/post-types.php:201 inc/taxonomies.php:187
617
  msgid "Starter Notes"
618
  msgstr "Notas para principiantes"
619
 
620
- #: inc/post-types.php:204
621
  #, php-format
622
  msgid ""
623
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -629,7 +630,7 @@ msgstr ""
629
  "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
630
  "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
631
 
632
- #: inc/post-types.php:205
633
  #, php-format
634
  msgid ""
635
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -643,7 +644,7 @@ msgstr ""
643
  "branco, as legendas serão automaticamente criadas com base no nome do tipo "
644
  "de artigo. Ver o ponto de interrogação para mais detalhes."
645
 
646
- #: inc/post-types.php:206
647
  #, php-format
648
  msgid ""
649
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -654,139 +655,139 @@ msgstr ""
654
  "base de dados ou adicionados a esses tipos de artigo. Pode facilmente "
655
  "recriar os seus tipos de artigo e o conteúdo continuará a existir."
656
 
657
- #: inc/post-types.php:220 inc/taxonomies.php:208
658
  msgid "Menu Name"
659
  msgstr "Nome do menu"
660
 
661
- #: inc/post-types.php:221
662
  msgid "Custom menu name for your custom post type."
663
  msgstr "Nome de menu personalizado para o seu tipo de artigo personalizado."
664
 
665
- #: inc/post-types.php:225
666
  msgid "(e.g. My Movies)"
667
  msgstr "(p. ex. Os meus filmes)"
668
 
669
- #: inc/post-types.php:232 inc/taxonomies.php:217
670
  msgid "All Items"
671
  msgstr "Todos os itens"
672
 
673
- #: inc/post-types.php:237
674
  msgid "(e.g. All Movies)"
675
  msgstr "(p. ex. Todos os filmes)"
676
 
677
- #: inc/post-types.php:244
678
  msgid "Add New"
679
  msgstr "Adicionar novo"
680
 
681
- #: inc/post-types.php:249
682
  msgid "(e.g. Add New)"
683
  msgstr "(p. ex. Adicionar novo)"
684
 
685
- #: inc/post-types.php:256 inc/taxonomies.php:253
686
  msgid "Add New Item"
687
  msgstr "Adicionar novo item"
688
 
689
- #: inc/post-types.php:261
690
  msgid "(e.g. Add New Movie)"
691
  msgstr "(p. ex. Adicionar novo filme)"
692
 
693
- #: inc/post-types.php:273
694
  msgid "(e.g. Edit)"
695
  msgstr "(p. ex. Editar)"
696
 
697
- #: inc/post-types.php:280 inc/taxonomies.php:226
698
  msgid "Edit Item"
699
  msgstr "Editar item"
700
 
701
- #: inc/post-types.php:285
702
  msgid "(e.g. Edit Movie)"
703
  msgstr "(p. ex. Editar filme)"
704
 
705
- #: inc/post-types.php:292
706
  msgid "New Item"
707
  msgstr "Novo item"
708
 
709
- #: inc/post-types.php:297
710
  msgid "(e.g. New Movie)"
711
  msgstr "(p. ex. Novo filme)"
712
 
713
- #: inc/post-types.php:304
714
  msgid "View"
715
  msgstr "Ver"
716
 
717
- #: inc/post-types.php:309
718
  msgid "(e.g. View)"
719
  msgstr "(p. ex. Ver)"
720
 
721
- #: inc/post-types.php:316 inc/taxonomies.php:235
722
  msgid "View Item"
723
  msgstr "Ver item"
724
 
725
- #: inc/post-types.php:321
726
  msgid "(e.g. View Movie)"
727
  msgstr "(p. ex. Ver filme)"
728
 
729
- #: inc/post-types.php:328
730
  msgid "Search Item"
731
  msgstr "Pesquisar item"
732
 
733
- #: inc/post-types.php:333
734
  msgid "(e.g. Search Movie)"
735
  msgstr "(p. ex. Pesquisar filme)"
736
 
737
- #: inc/post-types.php:340
738
  msgid "Not Found"
739
  msgstr "Não encontrado"
740
 
741
- #: inc/post-types.php:345
742
  msgid "(e.g. No Movies found)"
743
  msgstr "(p. ex. Nenhum filme encontrado)"
744
 
745
- #: inc/post-types.php:352
746
  msgid "Not Found in Trash"
747
  msgstr "Não encontrado no lixo"
748
 
749
- #: inc/post-types.php:357
750
  msgid "(e.g. No Movies found in Trash)"
751
  msgstr "(p. ex. Nenhum fime encontrado no lixo)"
752
 
753
- #: inc/post-types.php:364
754
  msgid "Parent"
755
  msgstr "Superior"
756
 
757
- #: inc/post-types.php:369
758
  msgid "(e.g. Parent Movie)"
759
  msgstr "(p. ex. Filme superior)"
760
 
761
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
762
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
763
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
764
- #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
765
- #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
766
- #: inc/taxonomies.php:466
767
  msgid "False"
768
  msgstr "Falso"
769
 
770
- #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
771
- #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
772
- #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
773
- #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
774
- #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
775
- #: inc/taxonomies.php:467
776
  msgid "True"
777
  msgstr "Verdadeiro"
778
 
779
- #: inc/post-types.php:392
780
  msgid "Public"
781
  msgstr "Público"
782
 
783
- #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
784
- #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
785
- #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
786
  msgid "(default: True)"
787
  msgstr "(padrão: Verdadeiro)"
788
 
789
- #: inc/post-types.php:394
790
  msgid ""
791
  "Whether posts of this type should be shown in the admin UI and is publicly "
792
  "queryable."
@@ -794,108 +795,108 @@ msgstr ""
794
  "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
795
  "administração e pesquisáveis publicamente."
796
 
797
- #: inc/post-types.php:412 inc/taxonomies.php:372
798
  msgid "Show UI"
799
  msgstr "Mostrar interface do utilizador"
800
 
801
- #: inc/post-types.php:414
802
  msgid "Whether to generate a default UI for managing this post type."
803
  msgstr ""
804
  "Se cria um interface de utilizador padrão para gerir este tipo de artigo."
805
 
806
- #: inc/post-types.php:422
807
  msgid "Has Archive"
808
  msgstr "Tem arquivo"
809
 
810
- #: inc/post-types.php:423
811
  msgid "Whether the post type will have a post type archive URL."
812
  msgstr "Se o tipo de artigo terá um URL para o arquivo deste tipo de artigo."
813
 
814
- #: inc/post-types.php:424
815
  msgid "If left blank, the archive slug will default to the post type slug."
816
  msgstr ""
817
  "Se deixar em branco, o URL do arquivo será o mesmo que o URL do tipo de "
818
  "artigo."
819
 
820
- #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
821
- #: inc/taxonomies.php:356 inc/taxonomies.php:476
822
  msgid "(default: False)"
823
  msgstr "(padrão: Falso)"
824
 
825
- #: inc/post-types.php:450
826
  msgid "Slug to be used for archive URL."
827
  msgstr "URL utilizado para a página de arquivo."
828
 
829
- #: inc/post-types.php:470
830
  msgid "Exclude From Search"
831
  msgstr "Excluir da pesquisa"
832
 
833
- #: inc/post-types.php:472
834
  msgid ""
835
  "Whether to exclude posts with this post type from front end search results."
836
  msgstr ""
837
  "Se exclui artigos deste tipo dos resultados de pesquisa na frente do site."
838
 
839
- #: inc/post-types.php:483
840
  msgid "Capability Type"
841
  msgstr "Tipo de capacidade"
842
 
843
- #: inc/post-types.php:484
844
  msgid "The post type to use for checking read, edit, and delete capabilities"
845
  msgstr ""
846
  "O tipo de artigo a utilizar para verificar as capacidades de leitura, edição "
847
  "e exclusão"
848
 
849
- #: inc/post-types.php:501 inc/taxonomies.php:355
850
  msgid "Hierarchical"
851
  msgstr "Hierárquico"
852
 
853
- #: inc/post-types.php:503
854
  msgid "Whether the post type can have parent-child relationships"
855
  msgstr "Se o tipo de artigo pode ter relações de superior/dependente"
856
 
857
- #: inc/post-types.php:521 inc/taxonomies.php:415
858
  msgid "Rewrite"
859
  msgstr "Reescrever URL"
860
 
861
- #: inc/post-types.php:523
862
  msgid "Whether or not WordPress should use rewrites for this post type"
863
  msgstr ""
864
  "Se o WordPress deverão usar ou não a reescrita para este tipo de artigo"
865
 
866
- #: inc/post-types.php:534 inc/taxonomies.php:426
867
  msgid "Custom Rewrite Slug"
868
  msgstr "Reescrever URL personalizado"
869
 
870
- #: inc/post-types.php:535
871
  msgid "(default: post type slug)"
872
  msgstr "(padrão: URL do tipo de artigo)"
873
 
874
- #: inc/post-types.php:536
875
  msgid "Custom post type slug to use instead of the default."
876
  msgstr "URL do tipo de artigo personalizado a utilizar em vez do valor padrão."
877
 
878
- #: inc/post-types.php:553
879
  msgid "With Front"
880
  msgstr "Com superior"
881
 
882
- #: inc/post-types.php:555 inc/taxonomies.php:443
883
  msgid "Should the permastruct be prepended with the front base."
884
  msgstr "Preceder as ligações permanentes com URL superior."
885
 
886
- #: inc/post-types.php:573 inc/taxonomies.php:389
887
  msgid "Query Var"
888
  msgstr "Query Var"
889
 
890
- #: inc/post-types.php:575
891
  msgid "Sets the query_var key for this post type."
892
  msgstr "Define a chave query_var para este tipo de artigo."
893
 
894
- #: inc/post-types.php:583
895
  msgid "Menu Position"
896
  msgstr "Posição do menu"
897
 
898
- #: inc/post-types.php:584
899
  msgid ""
900
  "The position in the menu order the post type should appear. show_in_menu "
901
  "must be true."
@@ -903,27 +904,28 @@ msgstr ""
903
  "A posição em que o tipo de artigo deverá aparecer no menu. \"Mostrar no menu"
904
  "\" tem que ser \"Verdadeiro\"."
905
 
906
- #: inc/post-types.php:585
 
907
  msgid ""
908
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
909
- "register_post_type#Parameters\">Available options</a> in the \"menu_position"
910
- "\" section. Range of 5-100"
911
  msgstr ""
912
  "Veja as <a href=\"http://codex.wordpress.org/Function_Reference/"
913
  "register_post_type#Parameters\">opções disponíveis</a> na secção "
914
  "\"menu_position\". Ordem de 5-100"
915
 
916
- #: inc/post-types.php:600
917
  msgid "Show in Menu"
918
  msgstr "Mostrar no menu"
919
 
920
- #: inc/post-types.php:601
921
  msgid ""
922
  "Whether to show the post type in the admin menu and where to show that menu."
923
  msgstr ""
924
  "Se mostra o tipo de artigo no menu de administração e onde mostra esse menu."
925
 
926
- #: inc/post-types.php:602
927
  msgid ""
928
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
929
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -932,38 +934,38 @@ msgstr ""
932
  "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
933
  "o tipo de artigo será seu submenu."
934
 
935
- #: inc/post-types.php:628
936
  msgid "Top-level page file name to make post type a sub-menu of."
937
  msgstr ""
938
  "Nome da página de nível de topo para tornar o tipo de artigo seu submenu."
939
 
940
- #: inc/post-types.php:640
941
  msgid "Menu Icon"
942
  msgstr "Ícone do menu"
943
 
944
- #: inc/post-types.php:641
945
  msgid "(Full URL for icon or Dashicon class)"
946
  msgstr "(URL completo ou classe para o para o ícone do painel)"
947
 
948
- #: inc/post-types.php:642
949
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
950
  msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
951
 
952
- #: inc/post-types.php:655
953
  msgid "Title"
954
  msgstr "Título"
955
 
956
- #: inc/post-types.php:656
957
  msgid "Adds the title meta box when creating content for this custom post type"
958
  msgstr ""
959
  "Adiciona a caixa de título ao criar conteúdo para este tipo de artigo "
960
  "personalizado"
961
 
962
- #: inc/post-types.php:670
963
  msgid "Editor"
964
  msgstr "Editor"
965
 
966
- #: inc/post-types.php:671
967
  msgid ""
968
  "Adds the content editor meta box when creating content for this custom post "
969
  "type"
@@ -971,33 +973,33 @@ msgstr ""
971
  "Adiciona a caixa de editor de conteúdo ao criar conteúdo para este tipo de "
972
  "artigo personalizado"
973
 
974
- #: inc/post-types.php:685
975
  msgid "Excerpt"
976
  msgstr "Excerto"
977
 
978
- #: inc/post-types.php:686
979
  msgid ""
980
  "Adds the excerpt meta box when creating content for this custom post type"
981
  msgstr ""
982
  "Adiciona a caixa de excerto ao criar conteúdo para este tipo de artigo "
983
  "personalizado"
984
 
985
- #: inc/post-types.php:700
986
  msgid "Trackbacks"
987
  msgstr "Trackbacks"
988
 
989
- #: inc/post-types.php:701
990
  msgid ""
991
  "Adds the trackbacks meta box when creating content for this custom post type"
992
  msgstr ""
993
  "Adiciona a caixa de trackbacks ao criar conteúdo para este tipo de artigo "
994
  "personalizado"
995
 
996
- #: inc/post-types.php:715
997
  msgid "Custom Fields"
998
  msgstr "Campos personalizados"
999
 
1000
- #: inc/post-types.php:716
1001
  msgid ""
1002
  "Adds the custom fields meta box when creating content for this custom post "
1003
  "type"
@@ -1005,33 +1007,33 @@ msgstr ""
1005
  "Adiciona a caixa de campos personalizados ao criar conteúdo para este tipo "
1006
  "de artigo personalizado"
1007
 
1008
- #: inc/post-types.php:730
1009
  msgid "Comments"
1010
  msgstr "Comentários"
1011
 
1012
- #: inc/post-types.php:731
1013
  msgid ""
1014
  "Adds the comments meta box when creating content for this custom post type"
1015
  msgstr ""
1016
  "Adiciona a caixa de comentários ao criar conteúdo para este tipo de artigo "
1017
  "personalizado"
1018
 
1019
- #: inc/post-types.php:745
1020
  msgid "Revisions"
1021
  msgstr "Revisões"
1022
 
1023
- #: inc/post-types.php:746
1024
  msgid ""
1025
  "Adds the revisions meta box when creating content for this custom post type"
1026
  msgstr ""
1027
  "Adiciona a caixa de revisões ao criar conteúdo para este tipo de artigo "
1028
  "personalizado"
1029
 
1030
- #: inc/post-types.php:760
1031
  msgid "Featured Image"
1032
  msgstr "Imagem de destaque"
1033
 
1034
- #: inc/post-types.php:761
1035
  msgid ""
1036
  "Adds the featured image meta box when creating content for this custom post "
1037
  "type"
@@ -1039,22 +1041,22 @@ msgstr ""
1039
  "Adiciona a caixa de imagem de destaque ao criar conteúdo para este tipo de "
1040
  "artigo personalizado"
1041
 
1042
- #: inc/post-types.php:775
1043
  msgid "Author"
1044
  msgstr "Autor"
1045
 
1046
- #: inc/post-types.php:776
1047
  msgid ""
1048
  "Adds the author meta box when creating content for this custom post type"
1049
  msgstr ""
1050
  "Adiciona a caixa de autor ao criar conteúdo para este tipo de artigo "
1051
  "personalizado"
1052
 
1053
- #: inc/post-types.php:790
1054
  msgid "Page Attributes"
1055
  msgstr "Atributos da página"
1056
 
1057
- #: inc/post-types.php:791
1058
  msgid ""
1059
  "Adds the page attribute meta box when creating content for this custom post "
1060
  "type"
@@ -1062,66 +1064,66 @@ msgstr ""
1062
  "Adiciona a caixa de atributos da página ao criar conteúdo para este tipo de "
1063
  "artigo personalizado"
1064
 
1065
- #: inc/post-types.php:805
1066
  msgid "Post Formats"
1067
  msgstr "Formatos de artigo"
1068
 
1069
- #: inc/post-types.php:806
1070
  msgid "Adds post format support"
1071
  msgstr "Adiciona suporte para formato de artigo"
1072
 
1073
- #: inc/post-types.php:811
1074
  msgid "Use the option below to explicitly set \"supports\" to false."
1075
  msgstr ""
1076
  "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1077
 
1078
- #: inc/post-types.php:819
1079
  msgid "None"
1080
  msgstr "Nenhum"
1081
 
1082
- #: inc/post-types.php:820
1083
  msgid "Remove all support features"
1084
  msgstr "Remove suporte para todos os recursos"
1085
 
1086
- #: inc/post-types.php:826
1087
  msgid "Custom \"Supports\""
1088
  msgstr "\"Suporte\" personalizado"
1089
 
1090
- #: inc/post-types.php:827
1091
  msgid ""
1092
  "Use this input to register custom \"supports\" values, separated by commas."
1093
  msgstr ""
1094
  "Utilize este campo para registar \"suporte\" de valores personalizados, "
1095
  "separados por vírgulas."
1096
 
1097
- #: inc/post-types.php:833
1098
  msgid "Provide custom support slugs here."
1099
  msgstr "Insira aqui os valores personalizados a suportar."
1100
 
1101
- #: inc/post-types.php:839
1102
  msgid "Built-in Taxonomies"
1103
  msgstr "Taxonomias incorporadas"
1104
 
1105
- #: inc/post-types.php:868 inc/taxonomies.php:169
1106
  #, php-format
1107
  msgid "Adds %s support"
1108
  msgstr "Adiciona suporte para %s"
1109
 
1110
- #: inc/post-types.php:967
1111
  msgid "Please provide a post type to delete"
1112
  msgstr "Por favor introduza um tipo de artigo a apagar"
1113
 
1114
- #: inc/post-types.php:1027
1115
  msgid "Please provide a post type name"
1116
  msgstr "Por favor introduza um nome de tipo de artigo"
1117
 
1118
- #: inc/post-types.php:1051
1119
  msgid "Please do not use quotes in post type names or rewrite slugs"
1120
  msgstr ""
1121
  "Por favor não utilize aspas nos nomes dos tipos de artigo ou nos URL "
1122
  "reescritos"
1123
 
1124
- #: inc/post-types.php:1058
1125
  #, php-format
1126
  msgid "Please choose a different post type name. %s is already registered."
1127
  msgstr ""
@@ -1323,7 +1325,7 @@ msgstr ""
1323
  "Modifique o texto dentro do campo do título no editor de artigo/página. "
1324
  "Deverá adaptar-se conforme necessário."
1325
 
1326
- #: inc/taxonomies.php:82
1327
  msgid ""
1328
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1329
  "registers a new taxonomy entry for your install."
@@ -1331,16 +1333,16 @@ msgstr ""
1331
  "NÃO EDITE o URL da taxonomia a não ser que estritamente necessário. Alterar "
1332
  "este valor regista uma nova taxonomia na sua instalação."
1333
 
1334
- #: inc/taxonomies.php:115
1335
  msgid "Taxonomy Slug"
1336
  msgstr "URL da taxonomia"
1337
 
1338
- #: inc/taxonomies.php:116
1339
  #, fuzzy
1340
  msgid "(e.g. actor)"
1341
  msgstr "(p. ex. Actor)"
1342
 
1343
- #: inc/taxonomies.php:117
1344
  msgid ""
1345
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1346
  "and unique"
@@ -1348,44 +1350,44 @@ msgstr ""
1348
  "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1349
  "personalizada. Deverá ser curto e único."
1350
 
1351
- #: inc/taxonomies.php:125 inc/taxonomies.php:207
1352
  msgid "(e.g. Actors)"
1353
  msgstr "(p. ex. Actores)"
1354
 
1355
- #: inc/taxonomies.php:127
1356
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1357
  msgstr ""
1358
  "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1359
  "taxonomia personalizada."
1360
 
1361
- #: inc/taxonomies.php:134
1362
  msgid "(e.g. Actor)"
1363
  msgstr "(p. ex. Actor)"
1364
 
1365
- #: inc/taxonomies.php:136
1366
  msgid ""
1367
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1368
  msgstr ""
1369
  "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1370
  "quando é necessária uma legenda no singular."
1371
 
1372
- #: inc/taxonomies.php:139
1373
  msgid "Attach to Post Type"
1374
  msgstr "Anexar ao tipo de artigo"
1375
 
1376
- #: inc/taxonomies.php:178
1377
  msgid "Save Taxonomy"
1378
  msgstr "Guardar taxonomia"
1379
 
1380
- #: inc/taxonomies.php:179
1381
  msgid "Delete Taxonomy"
1382
  msgstr "Apagar taxonomia"
1383
 
1384
- #: inc/taxonomies.php:181
1385
  msgid "Add Taxonomy"
1386
  msgstr "Adicionar taxonomia"
1387
 
1388
- #: inc/taxonomies.php:190
1389
  #, php-format
1390
  msgid ""
1391
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1396,7 +1398,7 @@ msgstr ""
1396
  "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1397
  "letras sem acentos."
1398
 
1399
- #: inc/taxonomies.php:191
1400
  #, php-format
1401
  msgid ""
1402
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1411,7 +1413,7 @@ msgstr ""
1411
  "deixadas em branco, as legendas serão automaticamente criadas com base no "
1412
  "nome da taxonomia. Ver o ponto de interrogação para mais detalhes."
1413
 
1414
- #: inc/taxonomies.php:192
1415
  #, php-format
1416
  msgid ""
1417
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1424,178 +1426,178 @@ msgstr ""
1424
  "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1425
  "actualizará os termos na base de dados."
1426
 
1427
- #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1428
- #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1429
- #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1430
- #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1431
- #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1432
  msgid ""
1433
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1434
  msgstr ""
1435
  "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1436
  "mostrar taxonomias."
1437
 
1438
- #: inc/taxonomies.php:216
1439
  msgid "(e.g. All Actors)"
1440
  msgstr "(p. ex. Todos os actores)"
1441
 
1442
- #: inc/taxonomies.php:225
1443
  msgid "(e.g. Edit Actor)"
1444
  msgstr "(p. ex. Editar actor)"
1445
 
1446
- #: inc/taxonomies.php:234
1447
  msgid "(e.g. View Actor)"
1448
  msgstr "(p. ex. Ver actor)"
1449
 
1450
- #: inc/taxonomies.php:243
1451
  msgid "(e.g. Update Actor Name)"
1452
  msgstr "(p. ex. Actualizar nome de actor)"
1453
 
1454
- #: inc/taxonomies.php:244
1455
  msgid "Update Item Name"
1456
  msgstr "Actualizar nome do item"
1457
 
1458
- #: inc/taxonomies.php:252
1459
  msgid "(e.g. Add New Actor)"
1460
  msgstr "(p. ex. Adicionar novo actor)"
1461
 
1462
- #: inc/taxonomies.php:261
1463
  msgid "(e.g. New Actor Name)"
1464
  msgstr "(p. ex. Nome do novo actor)"
1465
 
1466
- #: inc/taxonomies.php:262
1467
  msgid "New Item Name"
1468
  msgstr "Nome do novo item"
1469
 
1470
- #: inc/taxonomies.php:270
1471
  msgid "(e.g. Parent Actor)"
1472
  msgstr "(p. ex. Actor superior)"
1473
 
1474
- #: inc/taxonomies.php:271
1475
  msgid "Parent Item"
1476
  msgstr "Item superior"
1477
 
1478
- #: inc/taxonomies.php:279
1479
  msgid "(e.g. Parent Actor:)"
1480
  msgstr "(p. ex. Actor superior:)"
1481
 
1482
- #: inc/taxonomies.php:280
1483
  msgid "Parent Item Colon"
1484
  msgstr "Item superior com pontuação"
1485
 
1486
- #: inc/taxonomies.php:288
1487
  msgid "(e.g. Search Actors)"
1488
  msgstr "(p. ex. Pesquisar actores)"
1489
 
1490
- #: inc/taxonomies.php:289
1491
  msgid "Search Items"
1492
  msgstr "Pesquisar itens"
1493
 
1494
- #: inc/taxonomies.php:297
1495
  msgid "(e.g. Popular Actors)"
1496
  msgstr "(p. ex. Actores populares)"
1497
 
1498
- #: inc/taxonomies.php:298
1499
  msgid "Popular Items"
1500
  msgstr "Itens populares"
1501
 
1502
- #: inc/taxonomies.php:306
1503
  msgid "(e.g. Separate actors with commas)"
1504
  msgstr "(p. ex. Actores separados por vírgulas)"
1505
 
1506
- #: inc/taxonomies.php:307
1507
  msgid "Separate Items with Commas"
1508
  msgstr "Itens separados por vírgulas"
1509
 
1510
- #: inc/taxonomies.php:315
1511
  msgid "(e.g. Add or remove actors)"
1512
  msgstr "(p. ex. Adicionar ou remover actores)"
1513
 
1514
- #: inc/taxonomies.php:316
1515
  msgid "Add or Remove Items"
1516
  msgstr "Adicionar ou remover itens"
1517
 
1518
- #: inc/taxonomies.php:324
1519
  msgid "(e.g. Choose from the most used actors)"
1520
  msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1521
 
1522
- #: inc/taxonomies.php:325
1523
  msgid "Choose From Most Used"
1524
  msgstr "Escolher entre os mais utilizados"
1525
 
1526
- #: inc/taxonomies.php:333
1527
  msgid "(e.g. No actors found)"
1528
  msgstr "(p. ex. Nenhum actor encontrado)"
1529
 
1530
- #: inc/taxonomies.php:334
1531
  msgid "Not found"
1532
  msgstr "Não encontrado"
1533
 
1534
- #: inc/taxonomies.php:357
1535
  msgid "Whether the taxonomy can have parent-child relationships"
1536
  msgstr "Se a taxonomia pode ter relações superior/dependente"
1537
 
1538
- #: inc/taxonomies.php:374
1539
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1540
  msgstr ""
1541
  "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1542
  "personalizada."
1543
 
1544
- #: inc/taxonomies.php:391
1545
  msgid "Sets the query_var key for this taxonomy."
1546
  msgstr "Define a chave query_var para esta taxonomia."
1547
 
1548
- #: inc/taxonomies.php:399
1549
  msgid "(default: none). Query Var needs to be true to use."
1550
  msgstr ""
1551
  "(padrão: nenhum). Na opção Query var tem que estar verdadeiro para ser "
1552
  "utilizada."
1553
 
1554
- #: inc/taxonomies.php:400
1555
  msgid "Custom Query Var String"
1556
  msgstr "Valor personalizado da Query Var"
1557
 
1558
- #: inc/taxonomies.php:401
1559
  msgid "Sets a custom query_var slug for this taxonomy."
1560
  msgstr "Define um URL personalizado para a query_var desta taxonomia."
1561
 
1562
- #: inc/taxonomies.php:417
1563
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1564
  msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1565
 
1566
- #: inc/taxonomies.php:425
1567
  msgid "(default: taxonomy name)"
1568
  msgstr "(padrão: nome da taxonomia)"
1569
 
1570
- #: inc/taxonomies.php:427
1571
  msgid "Custom taxonomy rewrite slug."
1572
  msgstr "Reescrever URL da taxonomia personalizada."
1573
 
1574
- #: inc/taxonomies.php:441
1575
  msgid "Rewrite With Front"
1576
  msgstr "Reescrever URL com base"
1577
 
1578
- #: inc/taxonomies.php:442
1579
  msgid "(default: true)"
1580
  msgstr "(padrão: verdadeiro)"
1581
 
1582
- #: inc/taxonomies.php:458
1583
  msgid "Rewrite Hierarchical"
1584
  msgstr "Reescrever URL hierarquicamente"
1585
 
1586
- #: inc/taxonomies.php:459
1587
  msgid "(default: false)"
1588
  msgstr "(Default: false)"
1589
 
1590
- #: inc/taxonomies.php:460
1591
  msgid "Should the permastruct allow hierarchical urls."
1592
  msgstr "Permitir URL hierárquicos nas ligações permanentes."
1593
 
1594
- #: inc/taxonomies.php:475
1595
  msgid "Show Admin Column"
1596
  msgstr "Mostrar coluna de administração"
1597
 
1598
- #: inc/taxonomies.php:477
1599
  msgid ""
1600
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1601
  "types."
@@ -1603,24 +1605,45 @@ msgstr ""
1603
  "Se permite a criação automática de colunas de taxonomias em tipos de artigos "
1604
  "associados."
1605
 
1606
- #: inc/taxonomies.php:575
1607
  msgid "Please provide a taxonomy to delete"
1608
  msgstr "Por favor introduza uma taxonomia a apagar"
1609
 
1610
- #: inc/taxonomies.php:626
1611
  msgid "Please provide a taxonomy name"
1612
  msgstr "Por favor introduza um nome de taxonomia"
1613
 
1614
- #: inc/taxonomies.php:642
1615
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1616
  msgstr ""
1617
  "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1618
 
1619
- #: inc/taxonomies.php:648
1620
  #, php-format
1621
  msgid "Please choose a different taxonomy name. %s is already used."
1622
  msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1623
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1624
  #~ msgid "Custom Post Type UI Registered Types and Taxonomies."
1625
  #~ msgstr "Tipos e taxonomias registados pelo Custom Post Type UI"
1626
 
@@ -1681,10 +1704,6 @@ msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1681
  #~ msgid "Custom Taxonomy Rewrite Slug"
1682
  #~ msgstr "Reescrever URL personalizado"
1683
 
1684
- #~ msgid "Whether posts of this type should be shown in the admin UI"
1685
- #~ msgstr ""
1686
- #~ "Se os artigos deste tipo deverão ser mostrados no painel de administração"
1687
-
1688
  #~ msgid ""
1689
  #~ "To get started with creating some post types, please visit %s and for "
1690
  #~ "taxonomies, visit %s. If you need some help, check the %s page. If "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-08-11 11:36-0500\n"
6
+ "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
9
  "Language: pt_PT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.2\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
21
  "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: tests\n"
23
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
 
 
24
 
25
  #: custom-post-type-ui.php:60
26
  msgid "Custom Post Types"
58
  msgid "About CPT UI"
59
  msgstr "Sobre o CPT UI"
60
 
61
+ #. Plugin Name of the plugin/theme
62
  #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
63
  msgid "Custom Post Type UI"
64
  msgstr "Custom Post Type UI"
205
  msgstr "Obter código"
206
 
207
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
208
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
209
+ #: inc/taxonomies.php:343
210
  msgid "Settings"
211
  msgstr "Definições"
212
 
214
  msgid "Help"
215
  msgstr "Ajuda"
216
 
217
+ #: custom-post-type-ui.php:651
218
  #, php-format
219
  msgid "%s has been successfully added"
220
  msgstr "%s foi adicionado com sucesso"
221
 
222
+ #: custom-post-type-ui.php:653
223
  #, php-format
224
  msgid "%s has failed to be added"
225
  msgstr "%s falhou ao ser adicionado"
226
 
227
+ #: custom-post-type-ui.php:657
228
  #, php-format
229
  msgid "%s has been successfully updated"
230
  msgstr "%s foi actualizado com sucesso"
231
 
232
+ #: custom-post-type-ui.php:659
233
  #, php-format
234
  msgid "%s has failed to be updated"
235
  msgstr "%s falhou ao ser actualizado"
236
 
237
+ #: custom-post-type-ui.php:663
238
  #, php-format
239
  msgid "%s has been successfully deleted"
240
  msgstr "%s foi apagado com sucesso"
241
 
242
+ #: custom-post-type-ui.php:665
243
  #, php-format
244
  msgid "%s has failed to be deleted"
245
  msgstr "%s falhou ao ser apagado"
246
 
247
+ #: custom-post-type-ui.php:669
248
  #, php-format
249
  msgid "%s has been successfully imported"
250
  msgstr "%s foi importado com sucesso"
251
 
252
+ #: custom-post-type-ui.php:671
253
  #, php-format
254
  msgid "%s has failed to be imported"
255
  msgstr "%s falhou ao ser importado"
256
 
257
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
258
  #, php-format
259
  msgid "Add new %s"
260
  msgstr "Adicionar novo %s"
261
 
262
+ #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
263
  #, php-format
264
  msgid "Edit %s"
265
  msgstr "Editar %s"
266
 
267
+ #: custom-post-type-ui.php:756
268
  #, php-format
269
  msgid "New %s"
270
  msgstr "Novo %s"
271
 
272
+ #: custom-post-type-ui.php:757
273
  #, php-format
274
  msgid "View %s"
275
  msgstr "Ver %s"
276
 
277
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
278
  #, php-format
279
  msgid "All %s"
280
  msgstr "Todos(as) os(as) %s"
281
 
282
+ #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
283
  #, php-format
284
  msgid "Search %s"
285
  msgstr "Pesquisar %s"
286
 
287
+ #: custom-post-type-ui.php:760
288
  #, php-format
289
  msgid "No %s found."
290
  msgstr "%s não encontrados(as)."
291
 
292
+ #: custom-post-type-ui.php:761
293
  #, php-format
294
  msgid "No %s found in trash."
295
  msgstr "%s não encontrados(as) no lixo."
296
 
297
+ #: custom-post-type-ui.php:765
298
  #, php-format
299
  msgid "Popular %s"
300
  msgstr "%s mais populares"
301
 
302
+ #: custom-post-type-ui.php:767
303
  #, php-format
304
  msgid "Parent %s"
305
  msgstr "%s superior"
306
 
307
+ #: custom-post-type-ui.php:768
308
  #, php-format
309
  msgid "Parent %s:"
310
  msgstr "%s superior:"
311
 
312
+ #: custom-post-type-ui.php:770
313
  #, php-format
314
  msgid "Update %s"
315
  msgstr "Actualizar %s"
316
 
317
+ #: custom-post-type-ui.php:772
318
  #, php-format
319
  msgid "New %s name"
320
  msgstr "Novo nome de %s"
321
 
322
+ #: custom-post-type-ui.php:773
323
  #, php-format
324
  msgid "Separate %s with commas"
325
  msgstr "Separar %s por vírgulas"
326
 
327
+ #: custom-post-type-ui.php:774
328
  #, php-format
329
  msgid "Add or remove %s"
330
  msgstr "Adicionar ou remover %s"
331
 
332
+ #: custom-post-type-ui.php:775
333
  #, php-format
334
  msgid "Choose from the most used %s"
335
  msgstr "Escolher entre os(as) %s mais utilizados(as)"
440
 
441
  #: inc/import_export.php:105
442
  msgid "Get Post Type and Taxonomy Code"
443
+ msgstr "Obter código do tipo de artigo e da taxonomia"
444
 
445
  #: inc/import_export.php:107
446
  msgid "All CPT UI Post Types"
479
  msgid "Post Type"
480
  msgstr "Tipo de artigo"
481
 
482
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
483
  msgid "Supports"
484
  msgstr "Suporte"
485
 
486
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
487
+ #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
488
  msgid "Labels"
489
  msgstr "Legendas"
490
 
491
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
492
  msgid "Edit"
493
  msgstr "Editar"
494
 
508
  msgid "Are you sure you want to delete this?"
509
  msgstr "Tem a certeza que quer apagar isto?"
510
 
511
+ #: inc/post-types.php:89
512
  msgid ""
513
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
514
  "registers a new post type entry for your install."
516
  "NÃO EDITE o URL do tipo de artigo a não ser que estritamente necessário. "
517
  "Alterar este valor regista um novo tipo de artigo na sua instalação."
518
 
519
+ #: inc/post-types.php:90
520
  msgid ""
521
  "Use appropriate checkbox above save/delete buttons if you wish to change "
522
  "slugs and update post types for existing posts."
524
  "Utilize a caixa de selecção apropriada acima dos botões guardar/apagar se "
525
  "quiser alterar o URL e actualizar os tipos de artigo existentes."
526
 
527
+ #: inc/post-types.php:91 inc/taxonomies.php:87
528
  msgid "Select: "
529
  msgstr "Selecionar:"
530
 
531
+ #: inc/post-types.php:94 inc/taxonomies.php:91
532
  msgid "Select"
533
  msgstr "Seleccionar"
534
 
535
+ #: inc/post-types.php:124
536
  msgid "Post Type Slug"
537
  msgstr "URL do tipo de artigo"
538
 
539
+ #: inc/post-types.php:125
540
  msgid "(e.g. movie)"
541
  msgstr "(p. ex. filme)"
542
 
543
+ #: inc/post-types.php:126
544
  msgid ""
545
  "The post type name. Used to retrieve custom post type content. Should be "
546
  "short and unique"
548
  "O nome do tipo de artigo. Utilizado para obter o conteúdo do tipo de artigo "
549
  "personalizado. Deverá ser curto e único."
550
 
551
+ #: inc/post-types.php:137 inc/taxonomies.php:129
552
  msgid "Plural Label"
553
  msgstr "Legenda no plural"
554
 
555
+ #: inc/post-types.php:138
556
  msgid "(e.g. Movies)"
557
  msgstr "(p. ex. Filmes)"
558
 
559
+ #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
560
+ #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
561
+ #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
562
+ #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
563
+ #: inc/post-types.php:368
564
  msgid "Post type label. Used in the admin menu for displaying post types."
565
  msgstr ""
566
  "Legenda do tipo de artigo. Utilizada no menu de administração para mostrar "
567
  "tipos de artigo."
568
 
569
+ #: inc/post-types.php:149 inc/taxonomies.php:138
570
  msgid "Singular Label"
571
  msgstr "Legenda no singular"
572
 
573
+ #: inc/post-types.php:150
574
  msgid "(e.g. Movie)"
575
  msgstr "(p. ex. Filme)"
576
 
577
+ #: inc/post-types.php:151
578
  msgid ""
579
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
580
  "needed."
582
  "Legenda no singular do tipo de artigo personalizado. Utilizada no WordPress "
583
  "quando é necessária uma legenda no singular."
584
 
585
+ #: inc/post-types.php:167
586
  msgid "Description"
587
  msgstr "Descrição"
588
 
589
+ #: inc/post-types.php:168
590
  msgid ""
591
  "Custom Post Type Description. Describe what your custom post type is used "
592
  "for."
594
  "Descrição do tipo de artigo personalizado. Descreva para que serve o seu "
595
  "tipo de artigo personalizado."
596
 
597
+ #: inc/post-types.php:180
598
  msgid "Migrate posts to newly renamed post type?"
599
  msgstr "Migrar artigos para o recém renomeado tipo de artigo?"
600
 
601
+ #: inc/post-types.php:181
602
  msgid "Check this to migrate posts if and when renaming your post type."
603
  msgstr "Seleccione isto para migrar artigos ao renomear o seu tipo de artigo."
604
 
605
+ #: inc/post-types.php:190
606
  msgid "Save Post Type"
607
  msgstr "Guardar tipo de artigo"
608
 
609
+ #: inc/post-types.php:191
610
  msgid "Delete Post Type"
611
  msgstr "Apagar tipo de artigo"
612
 
613
+ #: inc/post-types.php:193
614
  msgid "Add Post Type"
615
  msgstr "Adicionar tipo de artigo"
616
 
617
+ #: inc/post-types.php:204 inc/taxonomies.php:190
618
  msgid "Starter Notes"
619
  msgstr "Notas para principiantes"
620
 
621
+ #: inc/post-types.php:207
622
  #, php-format
623
  msgid ""
624
  "Post Type names should have %smax 20 characters%s, and only contain "
630
  "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
631
  "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
632
 
633
+ #: inc/post-types.php:208
634
  #, php-format
635
  msgid ""
636
  "If you are unfamiliar with the advanced post type settings, just fill in the "
644
  "branco, as legendas serão automaticamente criadas com base no nome do tipo "
645
  "de artigo. Ver o ponto de interrogação para mais detalhes."
646
 
647
+ #: inc/post-types.php:209
648
  #, php-format
649
  msgid ""
650
  "Deleting custom post types will %sNOT%s delete any content into the database "
655
  "base de dados ou adicionados a esses tipos de artigo. Pode facilmente "
656
  "recriar os seus tipos de artigo e o conteúdo continuará a existir."
657
 
658
+ #: inc/post-types.php:223 inc/taxonomies.php:211
659
  msgid "Menu Name"
660
  msgstr "Nome do menu"
661
 
662
+ #: inc/post-types.php:224
663
  msgid "Custom menu name for your custom post type."
664
  msgstr "Nome de menu personalizado para o seu tipo de artigo personalizado."
665
 
666
+ #: inc/post-types.php:228
667
  msgid "(e.g. My Movies)"
668
  msgstr "(p. ex. Os meus filmes)"
669
 
670
+ #: inc/post-types.php:235 inc/taxonomies.php:220
671
  msgid "All Items"
672
  msgstr "Todos os itens"
673
 
674
+ #: inc/post-types.php:240
675
  msgid "(e.g. All Movies)"
676
  msgstr "(p. ex. Todos os filmes)"
677
 
678
+ #: inc/post-types.php:247
679
  msgid "Add New"
680
  msgstr "Adicionar novo"
681
 
682
+ #: inc/post-types.php:252
683
  msgid "(e.g. Add New)"
684
  msgstr "(p. ex. Adicionar novo)"
685
 
686
+ #: inc/post-types.php:259 inc/taxonomies.php:256
687
  msgid "Add New Item"
688
  msgstr "Adicionar novo item"
689
 
690
+ #: inc/post-types.php:264
691
  msgid "(e.g. Add New Movie)"
692
  msgstr "(p. ex. Adicionar novo filme)"
693
 
694
+ #: inc/post-types.php:276
695
  msgid "(e.g. Edit)"
696
  msgstr "(p. ex. Editar)"
697
 
698
+ #: inc/post-types.php:283 inc/taxonomies.php:229
699
  msgid "Edit Item"
700
  msgstr "Editar item"
701
 
702
+ #: inc/post-types.php:288
703
  msgid "(e.g. Edit Movie)"
704
  msgstr "(p. ex. Editar filme)"
705
 
706
+ #: inc/post-types.php:295
707
  msgid "New Item"
708
  msgstr "Novo item"
709
 
710
+ #: inc/post-types.php:300
711
  msgid "(e.g. New Movie)"
712
  msgstr "(p. ex. Novo filme)"
713
 
714
+ #: inc/post-types.php:307
715
  msgid "View"
716
  msgstr "Ver"
717
 
718
+ #: inc/post-types.php:312
719
  msgid "(e.g. View)"
720
  msgstr "(p. ex. Ver)"
721
 
722
+ #: inc/post-types.php:319 inc/taxonomies.php:238
723
  msgid "View Item"
724
  msgstr "Ver item"
725
 
726
+ #: inc/post-types.php:324
727
  msgid "(e.g. View Movie)"
728
  msgstr "(p. ex. Ver filme)"
729
 
730
+ #: inc/post-types.php:331
731
  msgid "Search Item"
732
  msgstr "Pesquisar item"
733
 
734
+ #: inc/post-types.php:336
735
  msgid "(e.g. Search Movie)"
736
  msgstr "(p. ex. Pesquisar filme)"
737
 
738
+ #: inc/post-types.php:343
739
  msgid "Not Found"
740
  msgstr "Não encontrado"
741
 
742
+ #: inc/post-types.php:348
743
  msgid "(e.g. No Movies found)"
744
  msgstr "(p. ex. Nenhum filme encontrado)"
745
 
746
+ #: inc/post-types.php:355
747
  msgid "Not Found in Trash"
748
  msgstr "Não encontrado no lixo"
749
 
750
+ #: inc/post-types.php:360
751
  msgid "(e.g. No Movies found in Trash)"
752
  msgstr "(p. ex. Nenhum fime encontrado no lixo)"
753
 
754
+ #: inc/post-types.php:367
755
  msgid "Parent"
756
  msgstr "Superior"
757
 
758
+ #: inc/post-types.php:372
759
  msgid "(e.g. Parent Movie)"
760
  msgstr "(p. ex. Filme superior)"
761
 
762
+ #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
763
+ #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
764
+ #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
765
+ #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
766
+ #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
767
+ #: inc/taxonomies.php:469
768
  msgid "False"
769
  msgstr "Falso"
770
 
771
+ #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
772
+ #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
773
+ #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
774
+ #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
775
+ #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
776
+ #: inc/taxonomies.php:470
777
  msgid "True"
778
  msgstr "Verdadeiro"
779
 
780
+ #: inc/post-types.php:395
781
  msgid "Public"
782
  msgstr "Público"
783
 
784
+ #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
785
+ #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
786
+ #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
787
  msgid "(default: True)"
788
  msgstr "(padrão: Verdadeiro)"
789
 
790
+ #: inc/post-types.php:397
791
  msgid ""
792
  "Whether posts of this type should be shown in the admin UI and is publicly "
793
  "queryable."
795
  "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
796
  "administração e pesquisáveis publicamente."
797
 
798
+ #: inc/post-types.php:415 inc/taxonomies.php:375
799
  msgid "Show UI"
800
  msgstr "Mostrar interface do utilizador"
801
 
802
+ #: inc/post-types.php:417
803
  msgid "Whether to generate a default UI for managing this post type."
804
  msgstr ""
805
  "Se cria um interface de utilizador padrão para gerir este tipo de artigo."
806
 
807
+ #: inc/post-types.php:425
808
  msgid "Has Archive"
809
  msgstr "Tem arquivo"
810
 
811
+ #: inc/post-types.php:426
812
  msgid "Whether the post type will have a post type archive URL."
813
  msgstr "Se o tipo de artigo terá um URL para o arquivo deste tipo de artigo."
814
 
815
+ #: inc/post-types.php:427
816
  msgid "If left blank, the archive slug will default to the post type slug."
817
  msgstr ""
818
  "Se deixar em branco, o URL do arquivo será o mesmo que o URL do tipo de "
819
  "artigo."
820
 
821
+ #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
822
+ #: inc/taxonomies.php:359 inc/taxonomies.php:479
823
  msgid "(default: False)"
824
  msgstr "(padrão: Falso)"
825
 
826
+ #: inc/post-types.php:453
827
  msgid "Slug to be used for archive URL."
828
  msgstr "URL utilizado para a página de arquivo."
829
 
830
+ #: inc/post-types.php:473
831
  msgid "Exclude From Search"
832
  msgstr "Excluir da pesquisa"
833
 
834
+ #: inc/post-types.php:475
835
  msgid ""
836
  "Whether to exclude posts with this post type from front end search results."
837
  msgstr ""
838
  "Se exclui artigos deste tipo dos resultados de pesquisa na frente do site."
839
 
840
+ #: inc/post-types.php:486
841
  msgid "Capability Type"
842
  msgstr "Tipo de capacidade"
843
 
844
+ #: inc/post-types.php:487
845
  msgid "The post type to use for checking read, edit, and delete capabilities"
846
  msgstr ""
847
  "O tipo de artigo a utilizar para verificar as capacidades de leitura, edição "
848
  "e exclusão"
849
 
850
+ #: inc/post-types.php:504 inc/taxonomies.php:358
851
  msgid "Hierarchical"
852
  msgstr "Hierárquico"
853
 
854
+ #: inc/post-types.php:506
855
  msgid "Whether the post type can have parent-child relationships"
856
  msgstr "Se o tipo de artigo pode ter relações de superior/dependente"
857
 
858
+ #: inc/post-types.php:524 inc/taxonomies.php:418
859
  msgid "Rewrite"
860
  msgstr "Reescrever URL"
861
 
862
+ #: inc/post-types.php:526
863
  msgid "Whether or not WordPress should use rewrites for this post type"
864
  msgstr ""
865
  "Se o WordPress deverão usar ou não a reescrita para este tipo de artigo"
866
 
867
+ #: inc/post-types.php:537 inc/taxonomies.php:429
868
  msgid "Custom Rewrite Slug"
869
  msgstr "Reescrever URL personalizado"
870
 
871
+ #: inc/post-types.php:538
872
  msgid "(default: post type slug)"
873
  msgstr "(padrão: URL do tipo de artigo)"
874
 
875
+ #: inc/post-types.php:539
876
  msgid "Custom post type slug to use instead of the default."
877
  msgstr "URL do tipo de artigo personalizado a utilizar em vez do valor padrão."
878
 
879
+ #: inc/post-types.php:556
880
  msgid "With Front"
881
  msgstr "Com superior"
882
 
883
+ #: inc/post-types.php:558 inc/taxonomies.php:446
884
  msgid "Should the permastruct be prepended with the front base."
885
  msgstr "Preceder as ligações permanentes com URL superior."
886
 
887
+ #: inc/post-types.php:576 inc/taxonomies.php:392
888
  msgid "Query Var"
889
  msgstr "Query Var"
890
 
891
+ #: inc/post-types.php:578
892
  msgid "Sets the query_var key for this post type."
893
  msgstr "Define a chave query_var para este tipo de artigo."
894
 
895
+ #: inc/post-types.php:586
896
  msgid "Menu Position"
897
  msgstr "Posição do menu"
898
 
899
+ #: inc/post-types.php:587
900
  msgid ""
901
  "The position in the menu order the post type should appear. show_in_menu "
902
  "must be true."
904
  "A posição em que o tipo de artigo deverá aparecer no menu. \"Mostrar no menu"
905
  "\" tem que ser \"Verdadeiro\"."
906
 
907
+ #: inc/post-types.php:588
908
+ #, fuzzy
909
  msgid ""
910
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
911
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
912
+ "the \"menu_position\" section. Range of 5-100"
913
  msgstr ""
914
  "Veja as <a href=\"http://codex.wordpress.org/Function_Reference/"
915
  "register_post_type#Parameters\">opções disponíveis</a> na secção "
916
  "\"menu_position\". Ordem de 5-100"
917
 
918
+ #: inc/post-types.php:603
919
  msgid "Show in Menu"
920
  msgstr "Mostrar no menu"
921
 
922
+ #: inc/post-types.php:604
923
  msgid ""
924
  "Whether to show the post type in the admin menu and where to show that menu."
925
  msgstr ""
926
  "Se mostra o tipo de artigo no menu de administração e onde mostra esse menu."
927
 
928
+ #: inc/post-types.php:605
929
  msgid ""
930
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
931
  "php\" is indicated for second input, post type will be sub menu of that."
934
  "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
935
  "o tipo de artigo será seu submenu."
936
 
937
+ #: inc/post-types.php:631
938
  msgid "Top-level page file name to make post type a sub-menu of."
939
  msgstr ""
940
  "Nome da página de nível de topo para tornar o tipo de artigo seu submenu."
941
 
942
+ #: inc/post-types.php:643
943
  msgid "Menu Icon"
944
  msgstr "Ícone do menu"
945
 
946
+ #: inc/post-types.php:644
947
  msgid "(Full URL for icon or Dashicon class)"
948
  msgstr "(URL completo ou classe para o para o ícone do painel)"
949
 
950
+ #: inc/post-types.php:645
951
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
952
  msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
953
 
954
+ #: inc/post-types.php:658
955
  msgid "Title"
956
  msgstr "Título"
957
 
958
+ #: inc/post-types.php:659
959
  msgid "Adds the title meta box when creating content for this custom post type"
960
  msgstr ""
961
  "Adiciona a caixa de título ao criar conteúdo para este tipo de artigo "
962
  "personalizado"
963
 
964
+ #: inc/post-types.php:673
965
  msgid "Editor"
966
  msgstr "Editor"
967
 
968
+ #: inc/post-types.php:674
969
  msgid ""
970
  "Adds the content editor meta box when creating content for this custom post "
971
  "type"
973
  "Adiciona a caixa de editor de conteúdo ao criar conteúdo para este tipo de "
974
  "artigo personalizado"
975
 
976
+ #: inc/post-types.php:688
977
  msgid "Excerpt"
978
  msgstr "Excerto"
979
 
980
+ #: inc/post-types.php:689
981
  msgid ""
982
  "Adds the excerpt meta box when creating content for this custom post type"
983
  msgstr ""
984
  "Adiciona a caixa de excerto ao criar conteúdo para este tipo de artigo "
985
  "personalizado"
986
 
987
+ #: inc/post-types.php:703
988
  msgid "Trackbacks"
989
  msgstr "Trackbacks"
990
 
991
+ #: inc/post-types.php:704
992
  msgid ""
993
  "Adds the trackbacks meta box when creating content for this custom post type"
994
  msgstr ""
995
  "Adiciona a caixa de trackbacks ao criar conteúdo para este tipo de artigo "
996
  "personalizado"
997
 
998
+ #: inc/post-types.php:718
999
  msgid "Custom Fields"
1000
  msgstr "Campos personalizados"
1001
 
1002
+ #: inc/post-types.php:719
1003
  msgid ""
1004
  "Adds the custom fields meta box when creating content for this custom post "
1005
  "type"
1007
  "Adiciona a caixa de campos personalizados ao criar conteúdo para este tipo "
1008
  "de artigo personalizado"
1009
 
1010
+ #: inc/post-types.php:733
1011
  msgid "Comments"
1012
  msgstr "Comentários"
1013
 
1014
+ #: inc/post-types.php:734
1015
  msgid ""
1016
  "Adds the comments meta box when creating content for this custom post type"
1017
  msgstr ""
1018
  "Adiciona a caixa de comentários ao criar conteúdo para este tipo de artigo "
1019
  "personalizado"
1020
 
1021
+ #: inc/post-types.php:748
1022
  msgid "Revisions"
1023
  msgstr "Revisões"
1024
 
1025
+ #: inc/post-types.php:749
1026
  msgid ""
1027
  "Adds the revisions meta box when creating content for this custom post type"
1028
  msgstr ""
1029
  "Adiciona a caixa de revisões ao criar conteúdo para este tipo de artigo "
1030
  "personalizado"
1031
 
1032
+ #: inc/post-types.php:763
1033
  msgid "Featured Image"
1034
  msgstr "Imagem de destaque"
1035
 
1036
+ #: inc/post-types.php:764
1037
  msgid ""
1038
  "Adds the featured image meta box when creating content for this custom post "
1039
  "type"
1041
  "Adiciona a caixa de imagem de destaque ao criar conteúdo para este tipo de "
1042
  "artigo personalizado"
1043
 
1044
+ #: inc/post-types.php:778
1045
  msgid "Author"
1046
  msgstr "Autor"
1047
 
1048
+ #: inc/post-types.php:779
1049
  msgid ""
1050
  "Adds the author meta box when creating content for this custom post type"
1051
  msgstr ""
1052
  "Adiciona a caixa de autor ao criar conteúdo para este tipo de artigo "
1053
  "personalizado"
1054
 
1055
+ #: inc/post-types.php:793
1056
  msgid "Page Attributes"
1057
  msgstr "Atributos da página"
1058
 
1059
+ #: inc/post-types.php:794
1060
  msgid ""
1061
  "Adds the page attribute meta box when creating content for this custom post "
1062
  "type"
1064
  "Adiciona a caixa de atributos da página ao criar conteúdo para este tipo de "
1065
  "artigo personalizado"
1066
 
1067
+ #: inc/post-types.php:808
1068
  msgid "Post Formats"
1069
  msgstr "Formatos de artigo"
1070
 
1071
+ #: inc/post-types.php:809
1072
  msgid "Adds post format support"
1073
  msgstr "Adiciona suporte para formato de artigo"
1074
 
1075
+ #: inc/post-types.php:814
1076
  msgid "Use the option below to explicitly set \"supports\" to false."
1077
  msgstr ""
1078
  "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1079
 
1080
+ #: inc/post-types.php:822
1081
  msgid "None"
1082
  msgstr "Nenhum"
1083
 
1084
+ #: inc/post-types.php:823
1085
  msgid "Remove all support features"
1086
  msgstr "Remove suporte para todos os recursos"
1087
 
1088
+ #: inc/post-types.php:829
1089
  msgid "Custom \"Supports\""
1090
  msgstr "\"Suporte\" personalizado"
1091
 
1092
+ #: inc/post-types.php:830
1093
  msgid ""
1094
  "Use this input to register custom \"supports\" values, separated by commas."
1095
  msgstr ""
1096
  "Utilize este campo para registar \"suporte\" de valores personalizados, "
1097
  "separados por vírgulas."
1098
 
1099
+ #: inc/post-types.php:836
1100
  msgid "Provide custom support slugs here."
1101
  msgstr "Insira aqui os valores personalizados a suportar."
1102
 
1103
+ #: inc/post-types.php:842
1104
  msgid "Built-in Taxonomies"
1105
  msgstr "Taxonomias incorporadas"
1106
 
1107
+ #: inc/post-types.php:871 inc/taxonomies.php:172
1108
  #, php-format
1109
  msgid "Adds %s support"
1110
  msgstr "Adiciona suporte para %s"
1111
 
1112
+ #: inc/post-types.php:977
1113
  msgid "Please provide a post type to delete"
1114
  msgstr "Por favor introduza um tipo de artigo a apagar"
1115
 
1116
+ #: inc/post-types.php:1037
1117
  msgid "Please provide a post type name"
1118
  msgstr "Por favor introduza um nome de tipo de artigo"
1119
 
1120
+ #: inc/post-types.php:1061
1121
  msgid "Please do not use quotes in post type names or rewrite slugs"
1122
  msgstr ""
1123
  "Por favor não utilize aspas nos nomes dos tipos de artigo ou nos URL "
1124
  "reescritos"
1125
 
1126
+ #: inc/post-types.php:1068
1127
  #, php-format
1128
  msgid "Please choose a different post type name. %s is already registered."
1129
  msgstr ""
1325
  "Modifique o texto dentro do campo do título no editor de artigo/página. "
1326
  "Deverá adaptar-se conforme necessário."
1327
 
1328
+ #: inc/taxonomies.php:85
1329
  msgid ""
1330
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1331
  "registers a new taxonomy entry for your install."
1333
  "NÃO EDITE o URL da taxonomia a não ser que estritamente necessário. Alterar "
1334
  "este valor regista uma nova taxonomia na sua instalação."
1335
 
1336
+ #: inc/taxonomies.php:118
1337
  msgid "Taxonomy Slug"
1338
  msgstr "URL da taxonomia"
1339
 
1340
+ #: inc/taxonomies.php:119
1341
  #, fuzzy
1342
  msgid "(e.g. actor)"
1343
  msgstr "(p. ex. Actor)"
1344
 
1345
+ #: inc/taxonomies.php:120
1346
  msgid ""
1347
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1348
  "and unique"
1350
  "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1351
  "personalizada. Deverá ser curto e único."
1352
 
1353
+ #: inc/taxonomies.php:128 inc/taxonomies.php:210
1354
  msgid "(e.g. Actors)"
1355
  msgstr "(p. ex. Actores)"
1356
 
1357
+ #: inc/taxonomies.php:130
1358
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1359
  msgstr ""
1360
  "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1361
  "taxonomia personalizada."
1362
 
1363
+ #: inc/taxonomies.php:137
1364
  msgid "(e.g. Actor)"
1365
  msgstr "(p. ex. Actor)"
1366
 
1367
+ #: inc/taxonomies.php:139
1368
  msgid ""
1369
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1370
  msgstr ""
1371
  "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1372
  "quando é necessária uma legenda no singular."
1373
 
1374
+ #: inc/taxonomies.php:142
1375
  msgid "Attach to Post Type"
1376
  msgstr "Anexar ao tipo de artigo"
1377
 
1378
+ #: inc/taxonomies.php:181
1379
  msgid "Save Taxonomy"
1380
  msgstr "Guardar taxonomia"
1381
 
1382
+ #: inc/taxonomies.php:182
1383
  msgid "Delete Taxonomy"
1384
  msgstr "Apagar taxonomia"
1385
 
1386
+ #: inc/taxonomies.php:184
1387
  msgid "Add Taxonomy"
1388
  msgstr "Adicionar taxonomia"
1389
 
1390
+ #: inc/taxonomies.php:193
1391
  #, php-format
1392
  msgid ""
1393
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1398
  "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1399
  "letras sem acentos."
1400
 
1401
+ #: inc/taxonomies.php:194
1402
  #, php-format
1403
  msgid ""
1404
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1413
  "deixadas em branco, as legendas serão automaticamente criadas com base no "
1414
  "nome da taxonomia. Ver o ponto de interrogação para mais detalhes."
1415
 
1416
+ #: inc/taxonomies.php:195
1417
  #, php-format
1418
  msgid ""
1419
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1426
  "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1427
  "actualizará os termos na base de dados."
1428
 
1429
+ #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1430
+ #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1431
+ #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1432
+ #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1433
+ #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1434
  msgid ""
1435
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1436
  msgstr ""
1437
  "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1438
  "mostrar taxonomias."
1439
 
1440
+ #: inc/taxonomies.php:219
1441
  msgid "(e.g. All Actors)"
1442
  msgstr "(p. ex. Todos os actores)"
1443
 
1444
+ #: inc/taxonomies.php:228
1445
  msgid "(e.g. Edit Actor)"
1446
  msgstr "(p. ex. Editar actor)"
1447
 
1448
+ #: inc/taxonomies.php:237
1449
  msgid "(e.g. View Actor)"
1450
  msgstr "(p. ex. Ver actor)"
1451
 
1452
+ #: inc/taxonomies.php:246
1453
  msgid "(e.g. Update Actor Name)"
1454
  msgstr "(p. ex. Actualizar nome de actor)"
1455
 
1456
+ #: inc/taxonomies.php:247
1457
  msgid "Update Item Name"
1458
  msgstr "Actualizar nome do item"
1459
 
1460
+ #: inc/taxonomies.php:255
1461
  msgid "(e.g. Add New Actor)"
1462
  msgstr "(p. ex. Adicionar novo actor)"
1463
 
1464
+ #: inc/taxonomies.php:264
1465
  msgid "(e.g. New Actor Name)"
1466
  msgstr "(p. ex. Nome do novo actor)"
1467
 
1468
+ #: inc/taxonomies.php:265
1469
  msgid "New Item Name"
1470
  msgstr "Nome do novo item"
1471
 
1472
+ #: inc/taxonomies.php:273
1473
  msgid "(e.g. Parent Actor)"
1474
  msgstr "(p. ex. Actor superior)"
1475
 
1476
+ #: inc/taxonomies.php:274
1477
  msgid "Parent Item"
1478
  msgstr "Item superior"
1479
 
1480
+ #: inc/taxonomies.php:282
1481
  msgid "(e.g. Parent Actor:)"
1482
  msgstr "(p. ex. Actor superior:)"
1483
 
1484
+ #: inc/taxonomies.php:283
1485
  msgid "Parent Item Colon"
1486
  msgstr "Item superior com pontuação"
1487
 
1488
+ #: inc/taxonomies.php:291
1489
  msgid "(e.g. Search Actors)"
1490
  msgstr "(p. ex. Pesquisar actores)"
1491
 
1492
+ #: inc/taxonomies.php:292
1493
  msgid "Search Items"
1494
  msgstr "Pesquisar itens"
1495
 
1496
+ #: inc/taxonomies.php:300
1497
  msgid "(e.g. Popular Actors)"
1498
  msgstr "(p. ex. Actores populares)"
1499
 
1500
+ #: inc/taxonomies.php:301
1501
  msgid "Popular Items"
1502
  msgstr "Itens populares"
1503
 
1504
+ #: inc/taxonomies.php:309
1505
  msgid "(e.g. Separate actors with commas)"
1506
  msgstr "(p. ex. Actores separados por vírgulas)"
1507
 
1508
+ #: inc/taxonomies.php:310
1509
  msgid "Separate Items with Commas"
1510
  msgstr "Itens separados por vírgulas"
1511
 
1512
+ #: inc/taxonomies.php:318
1513
  msgid "(e.g. Add or remove actors)"
1514
  msgstr "(p. ex. Adicionar ou remover actores)"
1515
 
1516
+ #: inc/taxonomies.php:319
1517
  msgid "Add or Remove Items"
1518
  msgstr "Adicionar ou remover itens"
1519
 
1520
+ #: inc/taxonomies.php:327
1521
  msgid "(e.g. Choose from the most used actors)"
1522
  msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1523
 
1524
+ #: inc/taxonomies.php:328
1525
  msgid "Choose From Most Used"
1526
  msgstr "Escolher entre os mais utilizados"
1527
 
1528
+ #: inc/taxonomies.php:336
1529
  msgid "(e.g. No actors found)"
1530
  msgstr "(p. ex. Nenhum actor encontrado)"
1531
 
1532
+ #: inc/taxonomies.php:337
1533
  msgid "Not found"
1534
  msgstr "Não encontrado"
1535
 
1536
+ #: inc/taxonomies.php:360
1537
  msgid "Whether the taxonomy can have parent-child relationships"
1538
  msgstr "Se a taxonomia pode ter relações superior/dependente"
1539
 
1540
+ #: inc/taxonomies.php:377
1541
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1542
  msgstr ""
1543
  "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1544
  "personalizada."
1545
 
1546
+ #: inc/taxonomies.php:394
1547
  msgid "Sets the query_var key for this taxonomy."
1548
  msgstr "Define a chave query_var para esta taxonomia."
1549
 
1550
+ #: inc/taxonomies.php:402
1551
  msgid "(default: none). Query Var needs to be true to use."
1552
  msgstr ""
1553
  "(padrão: nenhum). Na opção Query var tem que estar verdadeiro para ser "
1554
  "utilizada."
1555
 
1556
+ #: inc/taxonomies.php:403
1557
  msgid "Custom Query Var String"
1558
  msgstr "Valor personalizado da Query Var"
1559
 
1560
+ #: inc/taxonomies.php:404
1561
  msgid "Sets a custom query_var slug for this taxonomy."
1562
  msgstr "Define um URL personalizado para a query_var desta taxonomia."
1563
 
1564
+ #: inc/taxonomies.php:420
1565
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1566
  msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1567
 
1568
+ #: inc/taxonomies.php:428
1569
  msgid "(default: taxonomy name)"
1570
  msgstr "(padrão: nome da taxonomia)"
1571
 
1572
+ #: inc/taxonomies.php:430
1573
  msgid "Custom taxonomy rewrite slug."
1574
  msgstr "Reescrever URL da taxonomia personalizada."
1575
 
1576
+ #: inc/taxonomies.php:444
1577
  msgid "Rewrite With Front"
1578
  msgstr "Reescrever URL com base"
1579
 
1580
+ #: inc/taxonomies.php:445
1581
  msgid "(default: true)"
1582
  msgstr "(padrão: verdadeiro)"
1583
 
1584
+ #: inc/taxonomies.php:461
1585
  msgid "Rewrite Hierarchical"
1586
  msgstr "Reescrever URL hierarquicamente"
1587
 
1588
+ #: inc/taxonomies.php:462
1589
  msgid "(default: false)"
1590
  msgstr "(Default: false)"
1591
 
1592
+ #: inc/taxonomies.php:463
1593
  msgid "Should the permastruct allow hierarchical urls."
1594
  msgstr "Permitir URL hierárquicos nas ligações permanentes."
1595
 
1596
+ #: inc/taxonomies.php:478
1597
  msgid "Show Admin Column"
1598
  msgstr "Mostrar coluna de administração"
1599
 
1600
+ #: inc/taxonomies.php:480
1601
  msgid ""
1602
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1603
  "types."
1605
  "Se permite a criação automática de colunas de taxonomias em tipos de artigos "
1606
  "associados."
1607
 
1608
+ #: inc/taxonomies.php:585
1609
  msgid "Please provide a taxonomy to delete"
1610
  msgstr "Por favor introduza uma taxonomia a apagar"
1611
 
1612
+ #: inc/taxonomies.php:636
1613
  msgid "Please provide a taxonomy name"
1614
  msgstr "Por favor introduza um nome de taxonomia"
1615
 
1616
+ #: inc/taxonomies.php:652
1617
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1618
  msgstr ""
1619
  "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1620
 
1621
+ #: inc/taxonomies.php:658
1622
  #, php-format
1623
  msgid "Please choose a different taxonomy name. %s is already used."
1624
  msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1625
 
1626
+ #. Plugin URI of the plugin/theme
1627
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1628
+ msgstr ""
1629
+
1630
+ #. Description of the plugin/theme
1631
+ msgid ""
1632
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1633
+ msgstr ""
1634
+
1635
+ #. Author of the plugin/theme
1636
+ msgid "WebDevStudios"
1637
+ msgstr ""
1638
+
1639
+ #. Author URI of the plugin/theme
1640
+ msgid "http://webdevstudios.com/"
1641
+ msgstr ""
1642
+
1643
+ #~ msgid "Whether posts of this type should be shown in the admin UI"
1644
+ #~ msgstr ""
1645
+ #~ "Se os artigos deste tipo deverão ser mostrados no painel de administração"
1646
+
1647
  #~ msgid "Custom Post Type UI Registered Types and Taxonomies."
1648
  #~ msgstr "Tipos e taxonomias registados pelo Custom Post Type UI"
1649
 
1704
  #~ msgid "Custom Taxonomy Rewrite Slug"
1705
  #~ msgstr "Reescrever URL personalizado"
1706
 
 
 
 
 
1707
  #~ msgid ""
1708
  #~ "To get started with creating some post types, please visit %s and for "
1709
  #~ "taxonomies, visit %s. If you need some help, check the %s page. If "
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,78 +1,85 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2015-06-15 22:31-0600\n"
5
- "PO-Revision-Date: 2015-06-15 22:31-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 "
@@ -80,38 +87,38 @@ msgid ""
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,215 +127,215 @@ msgstr ""
120
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
121
  "sürüm !"
122
 
123
- #: ../custom-post-type-ui.php:374
124
  msgid "Professional WordPress<br />Plugin Development"
125
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
126
 
127
- #: ../custom-post-type-ui.php:379
128
  msgid "Highest rated WordPress development book on Amazon!"
129
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
130
 
131
- #: ../custom-post-type-ui.php:382
132
  msgid "PayPal Donation"
133
  msgstr "PayPal Bağış"
134
 
135
- #: ../custom-post-type-ui.php:386
136
  msgid "PayPal - The safer, easier way to pay online!"
137
  msgstr ""
138
 
139
- #: ../custom-post-type-ui.php:389
140
  #, fuzzy
141
  msgid "Please donate to the development of Custom Post Type UI:"
142
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
143
 
144
- #: ../custom-post-type-ui.php:415
145
  #, php-format
146
  msgid "%s version %s by %s"
147
  msgstr ""
148
 
149
- #: ../custom-post-type-ui.php:426
150
  msgid "Please Report Bugs"
151
  msgstr "Lütfen Hataları Bildirin"
152
 
153
- #: ../custom-post-type-ui.php:429
154
  msgid "Follow on Twitter:"
155
  msgstr "Twitterden takip et:"
156
 
157
- #: ../custom-post-type-ui.php:493
158
  msgid "Manage Taxonomies"
159
  msgstr "Sınıflandırmaları Yönet"
160
 
161
- #: ../custom-post-type-ui.php:497
162
  msgid "Manage Post Types"
163
  msgstr "Yazı Türlerini Yönet"
164
 
165
- #: ../custom-post-type-ui.php:523
166
  #, fuzzy
167
  msgid "Add New Post Type"
168
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
169
 
170
- #: ../custom-post-type-ui.php:526
171
  #, fuzzy
172
  msgid "Edit Post Types"
173
  msgstr "Özel Yazı Türleri"
174
 
175
- #: ../custom-post-type-ui.php:530
176
  #, fuzzy
177
  msgid "Add New Taxonomy"
178
  msgstr "Sınıflandırma Adı"
179
 
180
- #: ../custom-post-type-ui.php:533
181
  #, fuzzy
182
  msgid "Edit Taxonomies"
183
  msgstr "Dahili Sınıflandırmalar"
184
 
185
- #: ../custom-post-type-ui.php:537 ../inc/listings.php:16
186
- #: ../inc/listings.php:149 ../inc/listings.php:224
187
  #, fuzzy
188
  msgid "Post Types"
189
  msgstr "Özel Yazı Türleri"
190
 
191
- #: ../custom-post-type-ui.php:538 ../inc/import_export.php:380
192
- #: ../inc/listings.php:34 ../inc/listings.php:122 ../inc/listings.php:132
193
  #, fuzzy
194
  msgid "Taxonomies"
195
  msgstr "Sınıflandırmaları Yönet"
196
 
197
- #: ../custom-post-type-ui.php:539
198
  msgid "Get Code"
199
  msgstr "Kodu Alın"
200
 
201
- #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
202
- #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
203
- #: ../inc/post-types.php:374 ../inc/taxonomies.php:340
204
  msgid "Settings"
205
  msgstr ""
206
 
207
- #: ../custom-post-type-ui.php:622
208
  msgid "Help"
209
  msgstr ""
210
 
211
- #: ../custom-post-type-ui.php:650
212
  #, php-format
213
  msgid "%s has been successfully added"
214
  msgstr ""
215
 
216
- #: ../custom-post-type-ui.php:652
217
  #, php-format
218
  msgid "%s has failed to be added"
219
  msgstr ""
220
 
221
- #: ../custom-post-type-ui.php:656
222
  #, php-format
223
  msgid "%s has been successfully updated"
224
  msgstr ""
225
 
226
- #: ../custom-post-type-ui.php:658
227
  #, php-format
228
  msgid "%s has failed to be updated"
229
  msgstr ""
230
 
231
- #: ../custom-post-type-ui.php:662
232
  #, php-format
233
  msgid "%s has been successfully deleted"
234
  msgstr ""
235
 
236
- #: ../custom-post-type-ui.php:664
237
  #, php-format
238
  msgid "%s has failed to be deleted"
239
  msgstr ""
240
 
241
- #: ../custom-post-type-ui.php:668
242
  #, php-format
243
  msgid "%s has been successfully imported"
244
  msgstr ""
245
 
246
- #: ../custom-post-type-ui.php:670
247
  #, php-format
248
  msgid "%s has failed to be imported"
249
  msgstr ""
250
 
251
- #: ../custom-post-type-ui.php:753 ../custom-post-type-ui.php:770
252
  #, fuzzy, php-format
253
  msgid "Add new %s"
254
  msgstr "Yeni Ekle"
255
 
256
- #: ../custom-post-type-ui.php:754 ../custom-post-type-ui.php:768
257
  #, fuzzy, php-format
258
  msgid "Edit %s"
259
  msgstr "Düzenle"
260
 
261
- #: ../custom-post-type-ui.php:755
262
  #, php-format
263
  msgid "New %s"
264
  msgstr ""
265
 
266
- #: ../custom-post-type-ui.php:756
267
  #, fuzzy, php-format
268
  msgid "View %s"
269
  msgstr "Göster"
270
 
271
- #: ../custom-post-type-ui.php:757 ../custom-post-type-ui.php:765
272
  #, fuzzy, php-format
273
  msgid "All %s"
274
  msgstr "Bütün Elemanlar"
275
 
276
- #: ../custom-post-type-ui.php:758 ../custom-post-type-ui.php:763
277
  #, fuzzy, php-format
278
  msgid "Search %s"
279
  msgstr "Eleman Ara"
280
 
281
- #: ../custom-post-type-ui.php:759
282
  #, fuzzy, php-format
283
  msgid "No %s found."
284
  msgstr "Bulunamadı"
285
 
286
- #: ../custom-post-type-ui.php:760
287
  #, fuzzy, php-format
288
  msgid "No %s found in trash."
289
  msgstr "Çöpte Bulunamadı"
290
 
291
- #: ../custom-post-type-ui.php:764
292
  #, fuzzy, php-format
293
  msgid "Popular %s"
294
  msgstr "Popüler Elemanlar"
295
 
296
- #: ../custom-post-type-ui.php:766
297
  #, fuzzy, php-format
298
  msgid "Parent %s"
299
  msgstr "Temel"
300
 
301
- #: ../custom-post-type-ui.php:767
302
  #, fuzzy, php-format
303
  msgid "Parent %s:"
304
  msgstr "Temel"
305
 
306
- #: ../custom-post-type-ui.php:769
307
  #, php-format
308
  msgid "Update %s"
309
  msgstr ""
310
 
311
- #: ../custom-post-type-ui.php:771
312
  #, fuzzy, php-format
313
  msgid "New %s name"
314
  msgstr "Yeni Eleman Adı"
315
 
316
- #: ../custom-post-type-ui.php:772
317
  #, fuzzy, php-format
318
  msgid "Separate %s with commas"
319
  msgstr "Elemanları virgül ile ayır"
320
 
321
- #: ../custom-post-type-ui.php:773
322
  #, fuzzy, php-format
323
  msgid "Add or remove %s"
324
  msgstr "Elemanları Ekle veya Çıkar "
325
 
326
- #: ../custom-post-type-ui.php:774
327
  #, fuzzy, php-format
328
  msgid "Choose from the most used %s"
329
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
330
 
331
- #: ../inc/import_export.php:42
332
  msgid ""
333
  "If you are wanting to migrate registered post types or taxonomies from this "
334
  "site to another, that will also use Custom Post Type UI, use the import and "
@@ -336,198 +343,198 @@ msgid ""
336
  "the information in the \"Get Code\" tab."
337
  msgstr ""
338
 
339
- #: ../inc/import_export.php:45
340
  msgid "NOTE"
341
  msgstr ""
342
 
343
- #: ../inc/import_export.php:46
344
  msgid "This will not export the associated posts, just the settings."
345
  msgstr ""
346
 
347
- #: ../inc/import_export.php:53
348
  #, fuzzy
349
  msgid "Import Post Types"
350
  msgstr "Özel Yazı Türleri"
351
 
352
- #: ../inc/import_export.php:55 ../inc/import_export.php:80
353
  msgid "Paste content here."
354
  msgstr ""
355
 
356
- #: ../inc/import_export.php:56 ../inc/import_export.php:81
357
  msgid "Note:"
358
  msgstr ""
359
 
360
- #: ../inc/import_export.php:56 ../inc/import_export.php:81
361
  msgid "Importing will overwrite previous registered settings."
362
  msgstr ""
363
 
364
- #: ../inc/import_export.php:57
365
  msgid ""
366
  "To import post types from a different WordPress site, paste the exported "
367
  "content from that site and click the \"Import\" button."
368
  msgstr ""
369
 
370
- #: ../inc/import_export.php:58 ../inc/import_export.php:83
371
  msgid "Import"
372
  msgstr ""
373
 
374
- #: ../inc/import_export.php:62
375
  #, fuzzy
376
  msgid "Export Post Types"
377
  msgstr "Özel Yazı Türleri"
378
 
379
- #: ../inc/import_export.php:68
380
  msgid "No post types registered yet."
381
  msgstr ""
382
 
383
- #: ../inc/import_export.php:71 ../inc/import_export.php:96
384
  msgid ""
385
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
386
  "(Mac)."
387
  msgstr ""
388
 
389
- #: ../inc/import_export.php:72
390
  msgid ""
391
  "Use the content above to import current post types into a different "
392
  "WordPress site. You can also use this to simply back up your post type "
393
  "settings."
394
  msgstr ""
395
 
396
- #: ../inc/import_export.php:78
397
  #, fuzzy
398
  msgid "Import Taxonomies"
399
  msgstr "Sınıflandırmaları Yönet"
400
 
401
- #: ../inc/import_export.php:82
402
  msgid ""
403
  "To import taxonomies from a different WordPress site, paste the exported "
404
  "content from that site and click the \"Import\" button."
405
  msgstr ""
406
 
407
- #: ../inc/import_export.php:87
408
  #, fuzzy
409
  msgid "Export Taxonomies"
410
  msgstr "Sınıflandırmaları Yönet"
411
 
412
- #: ../inc/import_export.php:93
413
  msgid "No taxonomies registered yet."
414
  msgstr ""
415
 
416
- #: ../inc/import_export.php:97
417
  msgid ""
418
  "Use the content above to import current taxonomies into a different "
419
  "WordPress site. You can also use this to simply back up your taxonomy "
420
  "settings."
421
  msgstr ""
422
 
423
- #: ../inc/import_export.php:105
424
  #, fuzzy
425
  msgid "Get Post Type and Taxonomy Code"
426
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
427
 
428
- #: ../inc/import_export.php:107
429
  #, fuzzy
430
  msgid "All CPT UI Post Types"
431
  msgstr "Özel Yazı Türleri"
432
 
433
- #: ../inc/import_export.php:108 ../inc/import_export.php:112
434
  msgid "Copy/paste the code below into your functions.php file."
435
  msgstr ""
436
 
437
- #: ../inc/import_export.php:111
438
  #, fuzzy
439
  msgid "All CPT UI Taxonomies"
440
  msgstr "Dahili Sınıflandırmalar"
441
 
442
- #: ../inc/import_export.php:142
443
  msgid "No taxonomies to display at this time"
444
  msgstr ""
445
 
446
- #: ../inc/import_export.php:241
447
  msgid "No post types to display at this time"
448
  msgstr ""
449
 
450
- #: ../inc/import_export.php:367
451
  #, fuzzy
452
  msgid "Post types"
453
  msgstr "Özel Yazı Türleri"
454
 
455
- #: ../inc/listings.php:10
456
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
457
  msgstr ""
458
 
459
- #: ../inc/listings.php:18 ../inc/listings.php:134
460
  #, php-format
461
  msgid "Total count: %d"
462
  msgstr ""
463
 
464
- #: ../inc/listings.php:31 ../inc/listings.php:119
465
  #, fuzzy
466
  msgid "Post Type"
467
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
468
 
469
- #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:645
470
  msgid "Supports"
471
  msgstr "Destekler"
472
 
473
- #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
474
- #: ../inc/listings.php:225 ../inc/post-types.php:212 ../inc/taxonomies.php:198
475
  #, fuzzy
476
  msgid "Labels"
477
  msgstr "Etiket"
478
 
479
- #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:268
480
  msgid "Edit"
481
  msgstr "Düzenle"
482
 
483
- #: ../inc/listings.php:75
484
  msgid "View frontend archive"
485
  msgstr ""
486
 
487
- #: ../inc/listings.php:108 ../inc/listings.php:211
488
  #, fuzzy
489
  msgid "No custom labels to display"
490
  msgstr "Özel Yazı Türleri"
491
 
492
- #: ../inc/listings.php:147 ../inc/listings.php:222
493
  #, fuzzy
494
  msgid "Taxonomy"
495
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
496
 
497
- #: ../inc/post-types.php:30 ../inc/taxonomies.php:25
498
  msgid "Are you sure you want to delete this?"
499
  msgstr ""
500
 
501
- #: ../inc/post-types.php:86
502
  msgid ""
503
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
504
  "registers a new post type entry for your install."
505
  msgstr ""
506
 
507
- #: ../inc/post-types.php:87
508
  msgid ""
509
  "Use appropriate checkbox above save/delete buttons if you wish to change "
510
  "slugs and update post types for existing posts."
511
  msgstr ""
512
 
513
- #: ../inc/post-types.php:88 ../inc/taxonomies.php:84
514
  msgid "Select: "
515
  msgstr ""
516
 
517
- #: ../inc/post-types.php:91 ../inc/taxonomies.php:88
518
  msgid "Select"
519
  msgstr ""
520
 
521
- #: ../inc/post-types.php:121
522
  #, fuzzy
523
  msgid "Post Type Slug"
524
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
525
 
526
- #: ../inc/post-types.php:122
527
  msgid "(e.g. movie)"
528
  msgstr "(örnek: film)"
529
 
530
- #: ../inc/post-types.php:123
531
  #, fuzzy
532
  msgid ""
533
  "The post type name. Used to retrieve custom post type content. Should be "
@@ -536,37 +543,35 @@ msgstr ""
536
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
537
  "kullanılacaktır."
538
 
539
- #: ../inc/post-types.php:134 ../inc/taxonomies.php:126
540
  #, fuzzy
541
  msgid "Plural Label"
542
  msgstr "Tekil Etiket"
543
 
544
- #: ../inc/post-types.php:135
545
  msgid "(e.g. Movies)"
546
  msgstr "(örneğin: Filmler)"
547
 
548
- #: ../inc/post-types.php:136 ../inc/post-types.php:233
549
- #: ../inc/post-types.php:245 ../inc/post-types.php:257
550
- #: ../inc/post-types.php:269 ../inc/post-types.php:281
551
- #: ../inc/post-types.php:293 ../inc/post-types.php:305
552
- #: ../inc/post-types.php:317 ../inc/post-types.php:329
553
- #: ../inc/post-types.php:341 ../inc/post-types.php:353
554
- #: ../inc/post-types.php:365
555
  #, fuzzy
556
  msgid "Post type label. Used in the admin menu for displaying post types."
557
  msgstr ""
558
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
559
  "kullanılacak."
560
 
561
- #: ../inc/post-types.php:146 ../inc/taxonomies.php:135
562
  msgid "Singular Label"
563
  msgstr "Tekil Etiket"
564
 
565
- #: ../inc/post-types.php:147
566
  msgid "(e.g. Movie)"
567
  msgstr "(örneğin: Film)"
568
 
569
- #: ../inc/post-types.php:148
570
  #, fuzzy
571
  msgid ""
572
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
@@ -575,11 +580,11 @@ msgstr ""
575
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
576
  "kullanacak."
577
 
578
- #: ../inc/post-types.php:164
579
  msgid "Description"
580
  msgstr "Açıklama"
581
 
582
- #: ../inc/post-types.php:165
583
  #, fuzzy
584
  msgid ""
585
  "Custom Post Type Description. Describe what your custom post type is used "
@@ -587,34 +592,34 @@ msgid ""
587
  msgstr ""
588
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
589
 
590
- #: ../inc/post-types.php:177
591
  msgid "Migrate posts to newly renamed post type?"
592
  msgstr ""
593
 
594
- #: ../inc/post-types.php:178
595
  msgid "Check this to migrate posts if and when renaming your post type."
596
  msgstr ""
597
 
598
- #: ../inc/post-types.php:187
599
  #, fuzzy
600
  msgid "Save Post Type"
601
  msgstr "Özel Yazı Türü Kaydet"
602
 
603
- #: ../inc/post-types.php:188
604
  #, fuzzy
605
  msgid "Delete Post Type"
606
  msgstr "Ek Yazı Türleri"
607
 
608
- #: ../inc/post-types.php:190
609
  #, fuzzy
610
  msgid "Add Post Type"
611
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
612
 
613
- #: ../inc/post-types.php:201 ../inc/taxonomies.php:187
614
  msgid "Starter Notes"
615
  msgstr ""
616
 
617
- #: ../inc/post-types.php:204
618
  #, fuzzy, php-format
619
  msgid ""
620
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -625,7 +630,7 @@ msgstr ""
625
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
626
  "post, sayfa, ek, revizyon, nav_menu_item."
627
 
628
- #: ../inc/post-types.php:205
629
  #, fuzzy, php-format
630
  msgid ""
631
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -637,7 +642,7 @@ msgstr ""
637
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
638
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
639
 
640
- #: ../inc/post-types.php:206
641
  #, fuzzy, php-format
642
  msgid ""
643
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -648,164 +653,144 @@ msgstr ""
648
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
649
  "veritabanında olacaktır."
650
 
651
- #: ../inc/post-types.php:220 ../inc/taxonomies.php:208
652
  msgid "Menu Name"
653
  msgstr "Menü Adı"
654
 
655
- #: ../inc/post-types.php:221
656
  msgid "Custom menu name for your custom post type."
657
  msgstr "Özel yazı türü için özel menü adı."
658
 
659
- #: ../inc/post-types.php:225
660
  msgid "(e.g. My Movies)"
661
  msgstr "(örneğin: Benim Filmlerim)"
662
 
663
- #: ../inc/post-types.php:232 ../inc/taxonomies.php:217
664
  msgid "All Items"
665
  msgstr "Bütün Elemanlar"
666
 
667
- #: ../inc/post-types.php:237
668
  #, fuzzy
669
  msgid "(e.g. All Movies)"
670
  msgstr "(örneğin: Filmler)"
671
 
672
- #: ../inc/post-types.php:244
673
  msgid "Add New"
674
  msgstr "Yeni Ekle"
675
 
676
- #: ../inc/post-types.php:249
677
  msgid "(e.g. Add New)"
678
  msgstr "(örneğin: Yeni Ekle)"
679
 
680
- #: ../inc/post-types.php:256 ../inc/taxonomies.php:253
681
  msgid "Add New Item"
682
  msgstr "Yeni Eleman Ekle"
683
 
684
- #: ../inc/post-types.php:261
685
  msgid "(e.g. Add New Movie)"
686
  msgstr "(örneğin: Yeni Film ekle)"
687
 
688
- #: ../inc/post-types.php:273
689
  msgid "(e.g. Edit)"
690
  msgstr "(örneğin: Düzenle)"
691
 
692
- #: ../inc/post-types.php:280 ../inc/taxonomies.php:226
693
  msgid "Edit Item"
694
  msgstr "Eleman Düzenle"
695
 
696
- #: ../inc/post-types.php:285
697
  msgid "(e.g. Edit Movie)"
698
  msgstr "(örneğin: Film Düzenle)"
699
 
700
- #: ../inc/post-types.php:292
701
  msgid "New Item"
702
  msgstr "Yeni Eleman"
703
 
704
- #: ../inc/post-types.php:297
705
  msgid "(e.g. New Movie)"
706
  msgstr "(örneğin: Yeni Film)"
707
 
708
- #: ../inc/post-types.php:304
709
  msgid "View"
710
  msgstr "Göster"
711
 
712
- #: ../inc/post-types.php:309
713
  #, fuzzy
714
  msgid "(e.g. View)"
715
  msgstr "(örneğin: Film Göster)"
716
 
717
- #: ../inc/post-types.php:316 ../inc/taxonomies.php:235
718
  msgid "View Item"
719
  msgstr "Elemanı Göster"
720
 
721
- #: ../inc/post-types.php:321
722
  msgid "(e.g. View Movie)"
723
  msgstr "(örneğin: Film Göster)"
724
 
725
- #: ../inc/post-types.php:328
726
  #, fuzzy
727
  msgid "Search Item"
728
  msgstr "Eleman Düzenle"
729
 
730
- #: ../inc/post-types.php:333
731
  #, fuzzy
732
  msgid "(e.g. Search Movie)"
733
  msgstr "(örneğin: Filmleri Ara)"
734
 
735
- #: ../inc/post-types.php:340
736
  msgid "Not Found"
737
  msgstr "Bulunamadı"
738
 
739
- #: ../inc/post-types.php:345
740
  #, fuzzy
741
  msgid "(e.g. No Movies found)"
742
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
743
 
744
- #: ../inc/post-types.php:352
745
  msgid "Not Found in Trash"
746
  msgstr "Çöpte Bulunamadı"
747
 
748
- #: ../inc/post-types.php:357
749
  msgid "(e.g. No Movies found in Trash)"
750
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
751
 
752
- #: ../inc/post-types.php:364
753
  msgid "Parent"
754
  msgstr "Temel"
755
 
756
- #: ../inc/post-types.php:369
757
  msgid "(e.g. Parent Movie)"
758
  msgstr "(örneğin: Temel Film)"
759
 
760
- #: ../inc/post-types.php:383 ../inc/post-types.php:403
761
- #: ../inc/post-types.php:429 ../inc/post-types.php:461
762
- #: ../inc/post-types.php:492 ../inc/post-types.php:512
763
- #: ../inc/post-types.php:544 ../inc/post-types.php:564
764
- #: ../inc/post-types.php:607 ../inc/taxonomies.php:346
765
- #: ../inc/taxonomies.php:363 ../inc/taxonomies.php:380
766
- #: ../inc/taxonomies.php:406 ../inc/taxonomies.php:432
767
- #: ../inc/taxonomies.php:449 ../inc/taxonomies.php:466
768
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
769
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
770
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
771
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
772
  msgid "False"
773
  msgstr "False"
774
 
775
- #: ../inc/post-types.php:384 ../inc/post-types.php:404
776
- #: ../inc/post-types.php:430 ../inc/post-types.php:462
777
- #: ../inc/post-types.php:493 ../inc/post-types.php:513
778
- #: ../inc/post-types.php:545 ../inc/post-types.php:565
779
- #: ../inc/post-types.php:608 ../inc/taxonomies.php:347
780
- #: ../inc/taxonomies.php:364 ../inc/taxonomies.php:381
781
- #: ../inc/taxonomies.php:407 ../inc/taxonomies.php:433
782
- #: ../inc/taxonomies.php:450 ../inc/taxonomies.php:467
783
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
784
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
785
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
786
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
787
  msgid "True"
788
  msgstr "True"
789
 
790
- #: ../inc/post-types.php:392 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
791
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
792
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
793
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
794
  msgid "Public"
795
  msgstr "Genel"
796
 
797
- #: ../inc/post-types.php:393 ../inc/post-types.php:413
798
- #: ../inc/post-types.php:522 ../inc/post-types.php:554
799
- #: ../inc/post-types.php:574 ../inc/post-types.php:616
800
- #: ../inc/taxonomies.php:373 ../inc/taxonomies.php:390
801
- #: ../inc/taxonomies.php:416 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
802
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
803
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
804
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
805
  msgid "(default: True)"
806
  msgstr "(varsayılan: Doğru)"
807
 
808
- #: ../inc/post-types.php:394
809
  #, fuzzy
810
  msgid ""
811
  "Whether posts of this type should be shown in the admin UI and is publicly "
@@ -813,109 +798,108 @@ msgid ""
813
  msgstr ""
814
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
815
 
816
- #: ../inc/post-types.php:412 ../inc/taxonomies.php:372
817
  msgid "Show UI"
818
  msgstr "KA Göster"
819
 
820
- #: ../inc/post-types.php:414
821
  #, fuzzy
822
  msgid "Whether to generate a default UI for managing this post type."
823
  msgstr ""
824
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
825
 
826
- #: ../inc/post-types.php:422
827
  msgid "Has Archive"
828
  msgstr "Arşivlenebilir mi?"
829
 
830
- #: ../inc/post-types.php:423
831
  #, fuzzy
832
  msgid "Whether the post type will have a post type archive URL."
833
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
834
 
835
- #: ../inc/post-types.php:424
836
  msgid "If left blank, the archive slug will default to the post type slug."
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:438 ../inc/post-types.php:471
840
- #: ../inc/post-types.php:502 ../inc/taxonomies.php:356
841
- #: ../inc/taxonomies.php:476
842
  msgid "(default: False)"
843
  msgstr "(varsayılan:Yanlış)"
844
 
845
- #: ../inc/post-types.php:450
846
  msgid "Slug to be used for archive URL."
847
  msgstr ""
848
 
849
- #: ../inc/post-types.php:470
850
  msgid "Exclude From Search"
851
  msgstr "Arama Dışında Bırak"
852
 
853
- #: ../inc/post-types.php:472
854
  msgid ""
855
  "Whether to exclude posts with this post type from front end search results."
856
  msgstr ""
857
 
858
- #: ../inc/post-types.php:483
859
  msgid "Capability Type"
860
  msgstr "Yetenek Türü"
861
 
862
- #: ../inc/post-types.php:484
863
  msgid "The post type to use for checking read, edit, and delete capabilities"
864
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
865
 
866
- #: ../inc/post-types.php:501 ../inc/taxonomies.php:355
867
  msgid "Hierarchical"
868
  msgstr "Hiyerarşik"
869
 
870
- #: ../inc/post-types.php:503
871
  msgid "Whether the post type can have parent-child relationships"
872
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
873
 
874
- #: ../inc/post-types.php:521 ../inc/taxonomies.php:415
875
  msgid "Rewrite"
876
  msgstr "Rewrite"
877
 
878
- #: ../inc/post-types.php:523
879
  #, fuzzy
880
  msgid "Whether or not WordPress should use rewrites for this post type"
881
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
882
 
883
- #: ../inc/post-types.php:534 ../inc/taxonomies.php:426
884
  msgid "Custom Rewrite Slug"
885
  msgstr "Özel Rewrite Slug"
886
 
887
- #: ../inc/post-types.php:535
888
  #, fuzzy
889
  msgid "(default: post type slug)"
890
  msgstr "(varsayılan: yazı türü adı)"
891
 
892
- #: ../inc/post-types.php:536
893
  #, fuzzy
894
  msgid "Custom post type slug to use instead of the default."
895
  msgstr "Özel slug yerine varsayılan kullanmak için."
896
 
897
- #: ../inc/post-types.php:553
898
  msgid "With Front"
899
  msgstr "Cephesinden"
900
 
901
- #: ../inc/post-types.php:555 ../inc/taxonomies.php:443
902
  msgid "Should the permastruct be prepended with the front base."
903
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
904
 
905
- #: ../inc/post-types.php:573 ../inc/taxonomies.php:389
906
  msgid "Query Var"
907
  msgstr "Sorgu Tanımı"
908
 
909
- #: ../inc/post-types.php:575
910
  #, fuzzy
911
  msgid "Sets the query_var key for this post type."
912
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
913
 
914
- #: ../inc/post-types.php:583
915
  msgid "Menu Position"
916
  msgstr "Menü Pozisyonu"
917
 
918
- #: ../inc/post-types.php:584
919
  msgid ""
920
  "The position in the menu order the post type should appear. show_in_menu "
921
  "must be true."
@@ -923,27 +907,28 @@ msgstr ""
923
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
924
  "gerekir."
925
 
926
- #: ../inc/post-types.php:585
 
927
  msgid ""
928
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
929
- "register_post_type#Parameters\">Available options</a> in the \"menu_position"
930
- "\" section. Range of 5-100"
931
  msgstr ""
932
  "Bak <a href=\"http://codex.wordpress.org/Function_Reference/"
933
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
934
  "bölümü\". Aralık 5 ile 100"
935
 
936
- #: ../inc/post-types.php:600
937
  msgid "Show in Menu"
938
  msgstr "Menüde Göster"
939
 
940
- #: ../inc/post-types.php:601
941
  #, fuzzy
942
  msgid ""
943
  "Whether to show the post type in the admin menu and where to show that menu."
944
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
945
 
946
- #: ../inc/post-types.php:602
947
  msgid ""
948
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
949
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -952,95 +937,95 @@ msgstr ""
952
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
953
  "olacaktır."
954
 
955
- #: ../inc/post-types.php:628
956
  msgid "Top-level page file name to make post type a sub-menu of."
957
  msgstr ""
958
 
959
- #: ../inc/post-types.php:640
960
  msgid "Menu Icon"
961
  msgstr "Menü Simgesi"
962
 
963
- #: ../inc/post-types.php:641
964
  msgid "(Full URL for icon or Dashicon class)"
965
  msgstr ""
966
 
967
- #: ../inc/post-types.php:642
968
  #, fuzzy
969
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
970
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
971
 
972
- #: ../inc/post-types.php:655
973
  msgid "Title"
974
  msgstr "Başlık"
975
 
976
- #: ../inc/post-types.php:656
977
  msgid "Adds the title meta box when creating content for this custom post type"
978
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
979
 
980
- #: ../inc/post-types.php:670
981
  msgid "Editor"
982
  msgstr "Editör"
983
 
984
- #: ../inc/post-types.php:671
985
  msgid ""
986
  "Adds the content editor meta box when creating content for this custom post "
987
  "type"
988
  msgstr ""
989
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
990
 
991
- #: ../inc/post-types.php:685
992
  msgid "Excerpt"
993
  msgstr "Alıntı"
994
 
995
- #: ../inc/post-types.php:686
996
  msgid ""
997
  "Adds the excerpt meta box when creating content for this custom post type"
998
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
999
 
1000
- #: ../inc/post-types.php:700
1001
  msgid "Trackbacks"
1002
  msgstr "Parçagönderimi"
1003
 
1004
- #: ../inc/post-types.php:701
1005
  msgid ""
1006
  "Adds the trackbacks meta box when creating content for this custom post type"
1007
  msgstr ""
1008
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
1009
 
1010
- #: ../inc/post-types.php:715
1011
  msgid "Custom Fields"
1012
  msgstr "Özel Alanlar"
1013
 
1014
- #: ../inc/post-types.php:716
1015
  msgid ""
1016
  "Adds the custom fields meta box when creating content for this custom post "
1017
  "type"
1018
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1019
 
1020
- #: ../inc/post-types.php:730
1021
  msgid "Comments"
1022
  msgstr "Yorumlar"
1023
 
1024
- #: ../inc/post-types.php:731
1025
  msgid ""
1026
  "Adds the comments meta box when creating content for this custom post type"
1027
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1028
 
1029
- #: ../inc/post-types.php:745
1030
  msgid "Revisions"
1031
  msgstr "Düzenlemeler"
1032
 
1033
- #: ../inc/post-types.php:746
1034
  msgid ""
1035
  "Adds the revisions meta box when creating content for this custom post type"
1036
  msgstr ""
1037
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1038
 
1039
- #: ../inc/post-types.php:760
1040
  msgid "Featured Image"
1041
  msgstr "Öne Çıkan Görüntü"
1042
 
1043
- #: ../inc/post-types.php:761
1044
  msgid ""
1045
  "Adds the featured image meta box when creating content for this custom post "
1046
  "type"
@@ -1048,20 +1033,20 @@ msgstr ""
1048
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1049
  "ekler"
1050
 
1051
- #: ../inc/post-types.php:775
1052
  msgid "Author"
1053
  msgstr "Yazar"
1054
 
1055
- #: ../inc/post-types.php:776
1056
  msgid ""
1057
  "Adds the author meta box when creating content for this custom post type"
1058
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1059
 
1060
- #: ../inc/post-types.php:790
1061
  msgid "Page Attributes"
1062
  msgstr "Sayfa Öznitelikleri"
1063
 
1064
- #: ../inc/post-types.php:791
1065
  msgid ""
1066
  "Adds the page attribute meta box when creating content for this custom post "
1067
  "type"
@@ -1069,75 +1054,75 @@ msgstr ""
1069
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1070
  "ekler "
1071
 
1072
- #: ../inc/post-types.php:805
1073
  msgid "Post Formats"
1074
  msgstr "Yazı Formatları"
1075
 
1076
- #: ../inc/post-types.php:806
1077
  msgid "Adds post format support"
1078
  msgstr "Bu Yazı format desteği ekler"
1079
 
1080
- #: ../inc/post-types.php:811
1081
  msgid "Use the option below to explicitly set \"supports\" to false."
1082
  msgstr ""
1083
 
1084
- #: ../inc/post-types.php:819
1085
  msgid "None"
1086
  msgstr ""
1087
 
1088
- #: ../inc/post-types.php:820
1089
  msgid "Remove all support features"
1090
  msgstr ""
1091
 
1092
- #: ../inc/post-types.php:826
1093
  #, fuzzy
1094
  msgid "Custom \"Supports\""
1095
  msgstr "Destekler"
1096
 
1097
- #: ../inc/post-types.php:827
1098
  msgid ""
1099
  "Use this input to register custom \"supports\" values, separated by commas."
1100
  msgstr ""
1101
 
1102
- #: ../inc/post-types.php:833
1103
  msgid "Provide custom support slugs here."
1104
  msgstr ""
1105
 
1106
- #: ../inc/post-types.php:839
1107
  msgid "Built-in Taxonomies"
1108
  msgstr "Dahili Sınıflandırmalar"
1109
 
1110
- #: ../inc/post-types.php:868 ../inc/taxonomies.php:169
1111
  #, fuzzy, php-format
1112
  msgid "Adds %s support"
1113
  msgstr "Bu Yazı format desteği ekler"
1114
 
1115
- #: ../inc/post-types.php:967
1116
  msgid "Please provide a post type to delete"
1117
  msgstr ""
1118
 
1119
- #: ../inc/post-types.php:1027
1120
  #, fuzzy
1121
  msgid "Please provide a post type name"
1122
  msgstr "(varsayılan: yazı türü adı)"
1123
 
1124
- #: ../inc/post-types.php:1051
1125
  #, fuzzy
1126
  msgid "Please do not use quotes in post type names or rewrite slugs"
1127
  msgstr ""
1128
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1129
 
1130
- #: ../inc/post-types.php:1058
1131
  #, php-format
1132
  msgid "Please choose a different post type name. %s is already registered."
1133
  msgstr ""
1134
 
1135
- #: ../inc/support.php:41
1136
  #, fuzzy
1137
  msgid "Custom Post Type UI Support"
1138
  msgstr "Özel Yazı Türleri KA"
1139
 
1140
- #: ../inc/support.php:43
1141
  #, fuzzy, php-format
1142
  msgid ""
1143
  "Please note that this plugin will NOT handle display of registered post "
@@ -1147,16 +1132,16 @@ msgstr ""
1147
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1148
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1149
 
1150
- #: ../inc/support.php:44
1151
  #, fuzzy
1152
  msgid "Support Forums"
1153
  msgstr "Destekler"
1154
 
1155
- #: ../inc/support.php:50
1156
  msgid "General"
1157
  msgstr ""
1158
 
1159
- #: ../inc/support.php:53
1160
  #, fuzzy
1161
  msgid ""
1162
  "I changed my custom post type name and now I can not get to my posts. How do "
@@ -1165,7 +1150,7 @@ msgstr ""
1165
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1166
  "gösterilmiyor</strong>"
1167
 
1168
- #: ../inc/support.php:54
1169
  #, fuzzy
1170
  msgid ""
1171
  "You can either change the custom post type name back to the original name or "
@@ -1174,13 +1159,13 @@ msgstr ""
1174
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1175
  "deneyebilirsiniz:"
1176
 
1177
- #: ../inc/support.php:59
1178
  msgid ""
1179
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1180
  "shown. How do I remove the duplicate?"
1181
  msgstr ""
1182
 
1183
- #: ../inc/support.php:60
1184
  msgid ""
1185
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1186
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1188,40 +1173,40 @@ msgid ""
1188
  "delete the previous version's entry."
1189
  msgstr ""
1190
 
1191
- #: ../inc/support.php:63
1192
  msgid ""
1193
  "I have added post thumbnail and/or post format support to my post type, but "
1194
  "those do not appear when adding a post type post."
1195
  msgstr ""
1196
 
1197
- #: ../inc/support.php:64
1198
  msgid ""
1199
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1200
  msgstr ""
1201
 
1202
- #: ../inc/support.php:69
1203
  msgid "Front-end Display"
1204
  msgstr ""
1205
 
1206
- #: ../inc/support.php:72
1207
  msgid "What template files should I edit to alter my post type display?"
1208
  msgstr ""
1209
 
1210
- #: ../inc/support.php:73
1211
  #, php-format
1212
  msgid ""
1213
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1214
  "details about available templates."
1215
  msgstr ""
1216
 
1217
- #: ../inc/support.php:80
1218
  #, fuzzy
1219
  msgid "How do I display my custom post type on my site?"
1220
  msgstr ""
1221
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1222
  "strong>"
1223
 
1224
- #: ../inc/support.php:81
1225
  #, php-format
1226
  msgid ""
1227
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1229,13 +1214,13 @@ msgid ""
1229
  "should be something like \"http://www.mysite.com/post-type-slug\""
1230
  msgstr ""
1231
 
1232
- #: ../inc/support.php:87
1233
  msgid ""
1234
  "I have added categories and tags to my custom post type, but they do not "
1235
  "appear in the archives."
1236
  msgstr ""
1237
 
1238
- #: ../inc/support.php:88
1239
  #, php-format
1240
  msgid ""
1241
  "You will need to add your newly created post type to the types that the "
@@ -1243,85 +1228,85 @@ msgid ""
1243
  "that at %s"
1244
  msgstr ""
1245
 
1246
- #: ../inc/support.php:97
1247
  #, fuzzy
1248
  msgid "Advanced"
1249
  msgstr "Gelişmiş Ayarlar"
1250
 
1251
- #: ../inc/support.php:100
1252
  #, fuzzy
1253
  msgid "How do I add custom metaboxes to my post type?"
1254
  msgstr ""
1255
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1256
  "ekleyebilirsiniz?</strong>"
1257
 
1258
- #: ../inc/support.php:102
1259
  #, php-format
1260
  msgid ""
1261
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1262
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1263
  msgstr ""
1264
 
1265
- #: ../inc/support.php:108
1266
  msgid ""
1267
  "How do I add a newly registered taxonomy to a post type that already exists?"
1268
  msgstr ""
1269
 
1270
- #: ../inc/support.php:110
1271
  #, php-format
1272
  msgid "Check out the %s function for documentation and usage examples."
1273
  msgstr ""
1274
 
1275
- #: ../inc/support.php:116
1276
  msgid "Post relationships?"
1277
  msgstr ""
1278
 
1279
- #: ../inc/support.php:117
1280
  #, php-format
1281
  msgid ""
1282
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1283
  "plugin that should be a good start."
1284
  msgstr ""
1285
 
1286
- #: ../inc/support.php:126
1287
  msgid "Is there any function reference list?"
1288
  msgstr ""
1289
 
1290
- #: ../inc/support.php:127
1291
  #, php-format
1292
  msgid ""
1293
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1294
  "will be useful as they are attached to hooks."
1295
  msgstr ""
1296
 
1297
- #: ../inc/support.php:131
1298
  msgid ""
1299
  "How do I filter the \"enter title here\" text in the post editor screen?"
1300
  msgstr ""
1301
 
1302
- #: ../inc/support.php:132
1303
  msgid ""
1304
  "Change text inside the post/page editor title field. Should be able to adapt "
1305
  "as necessary."
1306
  msgstr ""
1307
 
1308
- #: ../inc/taxonomies.php:82
1309
  msgid ""
1310
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1311
  "registers a new taxonomy entry for your install."
1312
  msgstr ""
1313
 
1314
- #: ../inc/taxonomies.php:115
1315
  #, fuzzy
1316
  msgid "Taxonomy Slug"
1317
  msgstr "Sınıflandırma Adı"
1318
 
1319
- #: ../inc/taxonomies.php:116
1320
  #, fuzzy
1321
  msgid "(e.g. actor)"
1322
  msgstr "(örneğin: Aktör)"
1323
 
1324
- #: ../inc/taxonomies.php:117
1325
  #, fuzzy
1326
  msgid ""
1327
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
@@ -1330,48 +1315,48 @@ msgstr ""
1330
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1331
  "tatlı olmalıdır"
1332
 
1333
- #: ../inc/taxonomies.php:125 ../inc/taxonomies.php:207
1334
  msgid "(e.g. Actors)"
1335
  msgstr "(örneğin: Aktörler)"
1336
 
1337
- #: ../inc/taxonomies.php:127
1338
  #, fuzzy
1339
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1340
  msgstr ""
1341
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1342
  "menüsünde kullanılan."
1343
 
1344
- #: ../inc/taxonomies.php:134
1345
  msgid "(e.g. Actor)"
1346
  msgstr "(örneğin: Aktör)"
1347
 
1348
- #: ../inc/taxonomies.php:136
1349
  msgid ""
1350
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1351
  msgstr ""
1352
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1353
  "kullanır."
1354
 
1355
- #: ../inc/taxonomies.php:139
1356
  msgid "Attach to Post Type"
1357
  msgstr "Yazı Türüne ekle"
1358
 
1359
- #: ../inc/taxonomies.php:178
1360
  #, fuzzy
1361
  msgid "Save Taxonomy"
1362
  msgstr "Özel Sınıflandırma Kaydet"
1363
 
1364
- #: ../inc/taxonomies.php:179
1365
  #, fuzzy
1366
  msgid "Delete Taxonomy"
1367
  msgstr "Özel Sınıflandırma Oluştur"
1368
 
1369
- #: ../inc/taxonomies.php:181
1370
  #, fuzzy
1371
  msgid "Add Taxonomy"
1372
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1373
 
1374
- #: ../inc/taxonomies.php:190
1375
  #, fuzzy, php-format
1376
  msgid ""
1377
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1381,7 +1366,7 @@ msgstr ""
1381
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1382
  "boşluk yerine alt çizgi olmalıdır."
1383
 
1384
- #: ../inc/taxonomies.php:191
1385
  #, fuzzy, php-format
1386
  msgid ""
1387
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1393,7 +1378,7 @@ msgstr ""
1393
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1394
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1395
 
1396
- #: ../inc/taxonomies.php:192
1397
  #, fuzzy, php-format
1398
  msgid ""
1399
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1404,14 +1389,11 @@ msgstr ""
1404
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1405
  "içerikleri kalacaktır."
1406
 
1407
- #: ../inc/taxonomies.php:209 ../inc/taxonomies.php:218
1408
- #: ../inc/taxonomies.php:227 ../inc/taxonomies.php:236
1409
- #: ../inc/taxonomies.php:245 ../inc/taxonomies.php:254
1410
- #: ../inc/taxonomies.php:263 ../inc/taxonomies.php:272
1411
- #: ../inc/taxonomies.php:281 ../inc/taxonomies.php:290
1412
- #: ../inc/taxonomies.php:299 ../inc/taxonomies.php:308
1413
- #: ../inc/taxonomies.php:317 ../inc/taxonomies.php:326
1414
- #: ../inc/taxonomies.php:335
1415
  #, fuzzy
1416
  msgid ""
1417
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
@@ -1419,211 +1401,224 @@ msgstr ""
1419
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1420
  "menüsünde kullanılan."
1421
 
1422
- #: ../inc/taxonomies.php:216
1423
  msgid "(e.g. All Actors)"
1424
  msgstr "(örneğin: Bütün Aktörler)"
1425
 
1426
- #: ../inc/taxonomies.php:225
1427
  msgid "(e.g. Edit Actor)"
1428
  msgstr "(örneğin: Aktör Düzenle)"
1429
 
1430
- #: ../inc/taxonomies.php:234
1431
  #, fuzzy
1432
  msgid "(e.g. View Actor)"
1433
  msgstr "(örneğin: Aktör)"
1434
 
1435
- #: ../inc/taxonomies.php:243
1436
  #, fuzzy
1437
  msgid "(e.g. Update Actor Name)"
1438
  msgstr "(örneğin: Aktörü Güncelle)"
1439
 
1440
- #: ../inc/taxonomies.php:244
1441
  #, fuzzy
1442
  msgid "Update Item Name"
1443
  msgstr "Eleman Güncelle"
1444
 
1445
- #: ../inc/taxonomies.php:252
1446
  msgid "(e.g. Add New Actor)"
1447
  msgstr "(örneğin: Yeni Aktör Ekle)"
1448
 
1449
- #: ../inc/taxonomies.php:261
1450
  msgid "(e.g. New Actor Name)"
1451
  msgstr "(örneğin: Yeni Aktör Adı)"
1452
 
1453
- #: ../inc/taxonomies.php:262
1454
  msgid "New Item Name"
1455
  msgstr "Yeni Eleman Adı"
1456
 
1457
- #: ../inc/taxonomies.php:270
1458
  msgid "(e.g. Parent Actor)"
1459
  msgstr "(örneğin: Temel Aktör)"
1460
 
1461
- #: ../inc/taxonomies.php:271
1462
  msgid "Parent Item"
1463
  msgstr "Temel Eleman"
1464
 
1465
- #: ../inc/taxonomies.php:279
1466
  msgid "(e.g. Parent Actor:)"
1467
  msgstr "(örneğin: Temel Aktör:)"
1468
 
1469
- #: ../inc/taxonomies.php:280
1470
  msgid "Parent Item Colon"
1471
  msgstr "Temel Eleman Kolon"
1472
 
1473
- #: ../inc/taxonomies.php:288
1474
  msgid "(e.g. Search Actors)"
1475
  msgstr "(örneğin: Aktörleri Ara)"
1476
 
1477
- #: ../inc/taxonomies.php:289
1478
  msgid "Search Items"
1479
  msgstr "Eleman Ara"
1480
 
1481
- #: ../inc/taxonomies.php:297
1482
  msgid "(e.g. Popular Actors)"
1483
  msgstr "(örneğin: Popüler Aktörler)"
1484
 
1485
- #: ../inc/taxonomies.php:298
1486
  msgid "Popular Items"
1487
  msgstr "Popüler Elemanlar"
1488
 
1489
- #: ../inc/taxonomies.php:306
1490
  msgid "(e.g. Separate actors with commas)"
1491
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1492
 
1493
- #: ../inc/taxonomies.php:307
1494
  msgid "Separate Items with Commas"
1495
  msgstr "Elemanları virgül ile ayır"
1496
 
1497
- #: ../inc/taxonomies.php:315
1498
  msgid "(e.g. Add or remove actors)"
1499
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1500
 
1501
- #: ../inc/taxonomies.php:316
1502
  msgid "Add or Remove Items"
1503
  msgstr "Elemanları Ekle veya Çıkar "
1504
 
1505
- #: ../inc/taxonomies.php:324
1506
  msgid "(e.g. Choose from the most used actors)"
1507
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1508
 
1509
- #: ../inc/taxonomies.php:325
1510
  msgid "Choose From Most Used"
1511
  msgstr "Çok Kullanılandan Seç"
1512
 
1513
- #: ../inc/taxonomies.php:333
1514
  #, fuzzy
1515
  msgid "(e.g. No actors found)"
1516
  msgstr "(örneğin: Filmler bulunamadı)"
1517
 
1518
- #: ../inc/taxonomies.php:334
1519
  #, fuzzy
1520
  msgid "Not found"
1521
  msgstr "Bulunamadı"
1522
 
1523
- #: ../inc/taxonomies.php:357
1524
  msgid "Whether the taxonomy can have parent-child relationships"
1525
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1526
 
1527
- #: ../inc/taxonomies.php:374
1528
  #, fuzzy
1529
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1530
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1531
 
1532
- #: ../inc/taxonomies.php:391
1533
  #, fuzzy
1534
  msgid "Sets the query_var key for this taxonomy."
1535
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1536
 
1537
- #: ../inc/taxonomies.php:399
1538
  msgid "(default: none). Query Var needs to be true to use."
1539
  msgstr ""
1540
 
1541
- #: ../inc/taxonomies.php:400
1542
  msgid "Custom Query Var String"
1543
  msgstr ""
1544
 
1545
- #: ../inc/taxonomies.php:401
1546
  msgid "Sets a custom query_var slug for this taxonomy."
1547
  msgstr ""
1548
 
1549
- #: ../inc/taxonomies.php:417
1550
  #, fuzzy
1551
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1552
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1553
 
1554
- #: ../inc/taxonomies.php:425
1555
  msgid "(default: taxonomy name)"
1556
  msgstr "(varsayılan: sınıflandırma adı)"
1557
 
1558
- #: ../inc/taxonomies.php:427
1559
  #, fuzzy
1560
  msgid "Custom taxonomy rewrite slug."
1561
  msgstr "Özel Sınıflandırma Rewrite Slug"
1562
 
1563
- #: ../inc/taxonomies.php:441
1564
  #, fuzzy
1565
  msgid "Rewrite With Front"
1566
  msgstr "Cephesinden"
1567
 
1568
- #: ../inc/taxonomies.php:442
1569
  #, fuzzy
1570
  msgid "(default: true)"
1571
  msgstr "(varsayılan: Doğru)"
1572
 
1573
- #: ../inc/taxonomies.php:458
1574
  #, fuzzy
1575
  msgid "Rewrite Hierarchical"
1576
  msgstr "Hiyerarşik"
1577
 
1578
- #: ../inc/taxonomies.php:459
1579
  #, fuzzy
1580
  msgid "(default: false)"
1581
  msgstr "(varsayılan:Yanlış)"
1582
 
1583
- #: ../inc/taxonomies.php:460
1584
  #, fuzzy
1585
  msgid "Should the permastruct allow hierarchical urls."
1586
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1587
 
1588
- #: ../inc/taxonomies.php:475
1589
  msgid "Show Admin Column"
1590
  msgstr "Yönetici Sütunu Göster"
1591
 
1592
- #: ../inc/taxonomies.php:477
1593
  msgid ""
1594
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1595
  "types."
1596
  msgstr ""
1597
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1598
 
1599
- #: ../inc/taxonomies.php:575
1600
  msgid "Please provide a taxonomy to delete"
1601
  msgstr ""
1602
 
1603
- #: ../inc/taxonomies.php:626
1604
  #, fuzzy
1605
  msgid "Please provide a taxonomy name"
1606
  msgstr "(varsayılan: sınıflandırma adı)"
1607
 
1608
- #: ../inc/taxonomies.php:642
1609
  #, fuzzy
1610
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1611
  msgstr ""
1612
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1613
  "kullanmayınız."
1614
 
1615
- #: ../inc/taxonomies.php:648
1616
  #, php-format
1617
  msgid "Please choose a different taxonomy name. %s is already used."
1618
  msgstr ""
1619
 
1620
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
1621
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
1622
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
1623
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
1624
- msgid "Whether posts of this type should be shown in the admin UI"
1625
  msgstr ""
1626
- "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1627
 
1628
  #, fuzzy
1629
  #~ msgid "Edit Post Type"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.1.2\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-08-11 11:36-0500\n"
6
+ "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: TrStar <trstar@gmail.com>\n"
9
  "Language: tr_TR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.2\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
20
  "Plural-Forms: nplurals=1; plural=0;\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: tests\n"
23
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
+ #: custom-post-type-ui.php:60
26
  msgid "Custom Post Types"
27
  msgstr "Özel Yazı Türleri"
28
 
29
+ #: custom-post-type-ui.php:60
30
  msgid "CPT UI"
31
  msgstr "CPT KA"
32
 
33
+ #: custom-post-type-ui.php:61
34
  #, fuzzy
35
  msgid "Add/Edit Post Types"
36
  msgstr "Ek Yazı Türleri"
37
 
38
+ #: custom-post-type-ui.php:62
39
  #, fuzzy
40
  msgid "Add/Edit Taxonomies"
41
  msgstr "Dahili Sınıflandırmalar"
42
 
43
+ #: custom-post-type-ui.php:63
44
  msgid "Registered Types and Taxes"
45
  msgstr ""
46
 
47
+ #: custom-post-type-ui.php:63
48
  msgid "Registered Types/Taxes"
49
  msgstr ""
50
 
51
+ #: custom-post-type-ui.php:64 custom-post-type-ui.php:491
52
  msgid "Import/Export"
53
  msgstr ""
54
 
55
+ #: custom-post-type-ui.php:65
56
  #, fuzzy
57
  msgid "Help/Support"
58
  msgstr "Eklentiye Destek, Yardım!"
59
 
60
+ #: custom-post-type-ui.php:69
61
  #, fuzzy
62
  msgid "About CPT UI"
63
  msgstr "CPT KA"
64
 
65
+ #. Plugin Name of the plugin/theme
66
+ #: custom-post-type-ui.php:339 custom-post-type-ui.php:418
67
  msgid "Custom Post Type UI"
68
  msgstr "Özel Yazı Türleri KA"
69
 
70
+ #: custom-post-type-ui.php:342
71
  msgid ""
72
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
73
  "with our plugin provides efficiency and speed in creating post types and "
74
  "taxonomies, to better organize your content, without having to touch code."
75
  msgstr ""
76
 
77
+ #: custom-post-type-ui.php:348
78
  #, fuzzy
79
  msgid "Post type migration"
80
  msgstr "Özel Yazı Türleri"
81
 
82
+ #: custom-post-type-ui.php:349
83
  msgid ""
84
  "In the past, if you changed your post type slug, you would lose immediate "
85
  "access to the posts in the post type and need to recover another way. We "
87
  "the new post type you renamed it to."
88
  msgstr ""
89
 
90
+ #: custom-post-type-ui.php:352
91
  msgid "UI Refinement"
92
  msgstr ""
93
 
94
+ #: custom-post-type-ui.php:353
95
  msgid ""
96
  "After receiving feedback regarding the 1.0.x changes, we have further "
97
  "simplified the UI to reduce the amount of clicking necessary to manage your "
98
  "post types and taxonomies."
99
  msgstr ""
100
 
101
+ #: custom-post-type-ui.php:356
102
  #, fuzzy
103
  msgid "Registered Post Type and Taxonomy Listings"
104
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
105
 
106
+ #: custom-post-type-ui.php:357
107
  msgid ""
108
  "We are bringing back the listing of all CPTUI-registered post types and "
109
  "taxonomies for easier quick view of what you have going."
110
  msgstr ""
111
 
112
+ #: custom-post-type-ui.php:362
113
  msgid "Help Support This Plugin!"
114
  msgstr "Eklentiye Destek, Yardım!"
115
 
116
+ #: custom-post-type-ui.php:366
117
  #, fuzzy
118
  msgid "Professional WordPress<br />Third Edition"
119
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
120
 
121
+ #: custom-post-type-ui.php:371
122
  #, fuzzy
123
  msgid ""
124
  "The leading book on WordPress design and development! Brand new third "
127
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
128
  "sürüm !"
129
 
130
+ #: custom-post-type-ui.php:374
131
  msgid "Professional WordPress<br />Plugin Development"
132
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
133
 
134
+ #: custom-post-type-ui.php:379
135
  msgid "Highest rated WordPress development book on Amazon!"
136
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
137
 
138
+ #: custom-post-type-ui.php:382
139
  msgid "PayPal Donation"
140
  msgstr "PayPal Bağış"
141
 
142
+ #: custom-post-type-ui.php:386
143
  msgid "PayPal - The safer, easier way to pay online!"
144
  msgstr ""
145
 
146
+ #: custom-post-type-ui.php:389
147
  #, fuzzy
148
  msgid "Please donate to the development of Custom Post Type UI:"
149
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
150
 
151
+ #: custom-post-type-ui.php:415
152
  #, php-format
153
  msgid "%s version %s by %s"
154
  msgstr ""
155
 
156
+ #: custom-post-type-ui.php:426
157
  msgid "Please Report Bugs"
158
  msgstr "Lütfen Hataları Bildirin"
159
 
160
+ #: custom-post-type-ui.php:429
161
  msgid "Follow on Twitter:"
162
  msgstr "Twitterden takip et:"
163
 
164
+ #: custom-post-type-ui.php:493
165
  msgid "Manage Taxonomies"
166
  msgstr "Sınıflandırmaları Yönet"
167
 
168
+ #: custom-post-type-ui.php:497
169
  msgid "Manage Post Types"
170
  msgstr "Yazı Türlerini Yönet"
171
 
172
+ #: custom-post-type-ui.php:523
173
  #, fuzzy
174
  msgid "Add New Post Type"
175
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
176
 
177
+ #: custom-post-type-ui.php:526
178
  #, fuzzy
179
  msgid "Edit Post Types"
180
  msgstr "Özel Yazı Türleri"
181
 
182
+ #: custom-post-type-ui.php:530
183
  #, fuzzy
184
  msgid "Add New Taxonomy"
185
  msgstr "Sınıflandırma Adı"
186
 
187
+ #: custom-post-type-ui.php:533
188
  #, fuzzy
189
  msgid "Edit Taxonomies"
190
  msgstr "Dahili Sınıflandırmalar"
191
 
192
+ #: custom-post-type-ui.php:537 inc/listings.php:16 inc/listings.php:149
193
+ #: inc/listings.php:224
194
  #, fuzzy
195
  msgid "Post Types"
196
  msgstr "Özel Yazı Türleri"
197
 
198
+ #: custom-post-type-ui.php:538 inc/import_export.php:380 inc/listings.php:34
199
+ #: inc/listings.php:122 inc/listings.php:132
200
  #, fuzzy
201
  msgid "Taxonomies"
202
  msgstr "Sınıflandırmaları Yönet"
203
 
204
+ #: custom-post-type-ui.php:539
205
  msgid "Get Code"
206
  msgstr "Kodu Alın"
207
 
208
+ #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
209
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
210
+ #: inc/taxonomies.php:343
211
  msgid "Settings"
212
  msgstr ""
213
 
214
+ #: custom-post-type-ui.php:622
215
  msgid "Help"
216
  msgstr ""
217
 
218
+ #: custom-post-type-ui.php:651
219
  #, php-format
220
  msgid "%s has been successfully added"
221
  msgstr ""
222
 
223
+ #: custom-post-type-ui.php:653
224
  #, php-format
225
  msgid "%s has failed to be added"
226
  msgstr ""
227
 
228
+ #: custom-post-type-ui.php:657
229
  #, php-format
230
  msgid "%s has been successfully updated"
231
  msgstr ""
232
 
233
+ #: custom-post-type-ui.php:659
234
  #, php-format
235
  msgid "%s has failed to be updated"
236
  msgstr ""
237
 
238
+ #: custom-post-type-ui.php:663
239
  #, php-format
240
  msgid "%s has been successfully deleted"
241
  msgstr ""
242
 
243
+ #: custom-post-type-ui.php:665
244
  #, php-format
245
  msgid "%s has failed to be deleted"
246
  msgstr ""
247
 
248
+ #: custom-post-type-ui.php:669
249
  #, php-format
250
  msgid "%s has been successfully imported"
251
  msgstr ""
252
 
253
+ #: custom-post-type-ui.php:671
254
  #, php-format
255
  msgid "%s has failed to be imported"
256
  msgstr ""
257
 
258
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
259
  #, fuzzy, php-format
260
  msgid "Add new %s"
261
  msgstr "Yeni Ekle"
262
 
263
+ #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
264
  #, fuzzy, php-format
265
  msgid "Edit %s"
266
  msgstr "Düzenle"
267
 
268
+ #: custom-post-type-ui.php:756
269
  #, php-format
270
  msgid "New %s"
271
  msgstr ""
272
 
273
+ #: custom-post-type-ui.php:757
274
  #, fuzzy, php-format
275
  msgid "View %s"
276
  msgstr "Göster"
277
 
278
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
279
  #, fuzzy, php-format
280
  msgid "All %s"
281
  msgstr "Bütün Elemanlar"
282
 
283
+ #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
284
  #, fuzzy, php-format
285
  msgid "Search %s"
286
  msgstr "Eleman Ara"
287
 
288
+ #: custom-post-type-ui.php:760
289
  #, fuzzy, php-format
290
  msgid "No %s found."
291
  msgstr "Bulunamadı"
292
 
293
+ #: custom-post-type-ui.php:761
294
  #, fuzzy, php-format
295
  msgid "No %s found in trash."
296
  msgstr "Çöpte Bulunamadı"
297
 
298
+ #: custom-post-type-ui.php:765
299
  #, fuzzy, php-format
300
  msgid "Popular %s"
301
  msgstr "Popüler Elemanlar"
302
 
303
+ #: custom-post-type-ui.php:767
304
  #, fuzzy, php-format
305
  msgid "Parent %s"
306
  msgstr "Temel"
307
 
308
+ #: custom-post-type-ui.php:768
309
  #, fuzzy, php-format
310
  msgid "Parent %s:"
311
  msgstr "Temel"
312
 
313
+ #: custom-post-type-ui.php:770
314
  #, php-format
315
  msgid "Update %s"
316
  msgstr ""
317
 
318
+ #: custom-post-type-ui.php:772
319
  #, fuzzy, php-format
320
  msgid "New %s name"
321
  msgstr "Yeni Eleman Adı"
322
 
323
+ #: custom-post-type-ui.php:773
324
  #, fuzzy, php-format
325
  msgid "Separate %s with commas"
326
  msgstr "Elemanları virgül ile ayır"
327
 
328
+ #: custom-post-type-ui.php:774
329
  #, fuzzy, php-format
330
  msgid "Add or remove %s"
331
  msgstr "Elemanları Ekle veya Çıkar "
332
 
333
+ #: custom-post-type-ui.php:775
334
  #, fuzzy, php-format
335
  msgid "Choose from the most used %s"
336
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
337
 
338
+ #: inc/import_export.php:42
339
  msgid ""
340
  "If you are wanting to migrate registered post types or taxonomies from this "
341
  "site to another, that will also use Custom Post Type UI, use the import and "
343
  "the information in the \"Get Code\" tab."
344
  msgstr ""
345
 
346
+ #: inc/import_export.php:45
347
  msgid "NOTE"
348
  msgstr ""
349
 
350
+ #: inc/import_export.php:46
351
  msgid "This will not export the associated posts, just the settings."
352
  msgstr ""
353
 
354
+ #: inc/import_export.php:53
355
  #, fuzzy
356
  msgid "Import Post Types"
357
  msgstr "Özel Yazı Türleri"
358
 
359
+ #: inc/import_export.php:55 inc/import_export.php:80
360
  msgid "Paste content here."
361
  msgstr ""
362
 
363
+ #: inc/import_export.php:56 inc/import_export.php:81
364
  msgid "Note:"
365
  msgstr ""
366
 
367
+ #: inc/import_export.php:56 inc/import_export.php:81
368
  msgid "Importing will overwrite previous registered settings."
369
  msgstr ""
370
 
371
+ #: inc/import_export.php:57
372
  msgid ""
373
  "To import post types from a different WordPress site, paste the exported "
374
  "content from that site and click the \"Import\" button."
375
  msgstr ""
376
 
377
+ #: inc/import_export.php:58 inc/import_export.php:83
378
  msgid "Import"
379
  msgstr ""
380
 
381
+ #: inc/import_export.php:62
382
  #, fuzzy
383
  msgid "Export Post Types"
384
  msgstr "Özel Yazı Türleri"
385
 
386
+ #: inc/import_export.php:68
387
  msgid "No post types registered yet."
388
  msgstr ""
389
 
390
+ #: inc/import_export.php:71 inc/import_export.php:96
391
  msgid ""
392
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
393
  "(Mac)."
394
  msgstr ""
395
 
396
+ #: inc/import_export.php:72
397
  msgid ""
398
  "Use the content above to import current post types into a different "
399
  "WordPress site. You can also use this to simply back up your post type "
400
  "settings."
401
  msgstr ""
402
 
403
+ #: inc/import_export.php:78
404
  #, fuzzy
405
  msgid "Import Taxonomies"
406
  msgstr "Sınıflandırmaları Yönet"
407
 
408
+ #: inc/import_export.php:82
409
  msgid ""
410
  "To import taxonomies from a different WordPress site, paste the exported "
411
  "content from that site and click the \"Import\" button."
412
  msgstr ""
413
 
414
+ #: inc/import_export.php:87
415
  #, fuzzy
416
  msgid "Export Taxonomies"
417
  msgstr "Sınıflandırmaları Yönet"
418
 
419
+ #: inc/import_export.php:93
420
  msgid "No taxonomies registered yet."
421
  msgstr ""
422
 
423
+ #: inc/import_export.php:97
424
  msgid ""
425
  "Use the content above to import current taxonomies into a different "
426
  "WordPress site. You can also use this to simply back up your taxonomy "
427
  "settings."
428
  msgstr ""
429
 
430
+ #: inc/import_export.php:105
431
  #, fuzzy
432
  msgid "Get Post Type and Taxonomy Code"
433
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
434
 
435
+ #: inc/import_export.php:107
436
  #, fuzzy
437
  msgid "All CPT UI Post Types"
438
  msgstr "Özel Yazı Türleri"
439
 
440
+ #: inc/import_export.php:108 inc/import_export.php:112
441
  msgid "Copy/paste the code below into your functions.php file."
442
  msgstr ""
443
 
444
+ #: inc/import_export.php:111
445
  #, fuzzy
446
  msgid "All CPT UI Taxonomies"
447
  msgstr "Dahili Sınıflandırmalar"
448
 
449
+ #: inc/import_export.php:142
450
  msgid "No taxonomies to display at this time"
451
  msgstr ""
452
 
453
+ #: inc/import_export.php:241
454
  msgid "No post types to display at this time"
455
  msgstr ""
456
 
457
+ #: inc/import_export.php:367
458
  #, fuzzy
459
  msgid "Post types"
460
  msgstr "Özel Yazı Türleri"
461
 
462
+ #: inc/listings.php:10
463
  msgid "Post Types and Taxonomies registered by Custom Post Type UI."
464
  msgstr ""
465
 
466
+ #: inc/listings.php:18 inc/listings.php:134
467
  #, php-format
468
  msgid "Total count: %d"
469
  msgstr ""
470
 
471
+ #: inc/listings.php:31 inc/listings.php:119
472
  #, fuzzy
473
  msgid "Post Type"
474
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
475
 
476
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
477
  msgid "Supports"
478
  msgstr "Destekler"
479
 
480
+ #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
481
+ #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
482
  #, fuzzy
483
  msgid "Labels"
484
  msgstr "Etiket"
485
 
486
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
487
  msgid "Edit"
488
  msgstr "Düzenle"
489
 
490
+ #: inc/listings.php:75
491
  msgid "View frontend archive"
492
  msgstr ""
493
 
494
+ #: inc/listings.php:108 inc/listings.php:211
495
  #, fuzzy
496
  msgid "No custom labels to display"
497
  msgstr "Özel Yazı Türleri"
498
 
499
+ #: inc/listings.php:147 inc/listings.php:222
500
  #, fuzzy
501
  msgid "Taxonomy"
502
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
503
 
504
+ #: inc/post-types.php:30 inc/taxonomies.php:25
505
  msgid "Are you sure you want to delete this?"
506
  msgstr ""
507
 
508
+ #: inc/post-types.php:89
509
  msgid ""
510
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
511
  "registers a new post type entry for your install."
512
  msgstr ""
513
 
514
+ #: inc/post-types.php:90
515
  msgid ""
516
  "Use appropriate checkbox above save/delete buttons if you wish to change "
517
  "slugs and update post types for existing posts."
518
  msgstr ""
519
 
520
+ #: inc/post-types.php:91 inc/taxonomies.php:87
521
  msgid "Select: "
522
  msgstr ""
523
 
524
+ #: inc/post-types.php:94 inc/taxonomies.php:91
525
  msgid "Select"
526
  msgstr ""
527
 
528
+ #: inc/post-types.php:124
529
  #, fuzzy
530
  msgid "Post Type Slug"
531
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
532
 
533
+ #: inc/post-types.php:125
534
  msgid "(e.g. movie)"
535
  msgstr "(örnek: film)"
536
 
537
+ #: inc/post-types.php:126
538
  #, fuzzy
539
  msgid ""
540
  "The post type name. Used to retrieve custom post type content. Should be "
543
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
544
  "kullanılacaktır."
545
 
546
+ #: inc/post-types.php:137 inc/taxonomies.php:129
547
  #, fuzzy
548
  msgid "Plural Label"
549
  msgstr "Tekil Etiket"
550
 
551
+ #: inc/post-types.php:138
552
  msgid "(e.g. Movies)"
553
  msgstr "(örneğin: Filmler)"
554
 
555
+ #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
556
+ #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
557
+ #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
558
+ #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
559
+ #: inc/post-types.php:368
 
 
560
  #, fuzzy
561
  msgid "Post type label. Used in the admin menu for displaying post types."
562
  msgstr ""
563
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
564
  "kullanılacak."
565
 
566
+ #: inc/post-types.php:149 inc/taxonomies.php:138
567
  msgid "Singular Label"
568
  msgstr "Tekil Etiket"
569
 
570
+ #: inc/post-types.php:150
571
  msgid "(e.g. Movie)"
572
  msgstr "(örneğin: Film)"
573
 
574
+ #: inc/post-types.php:151
575
  #, fuzzy
576
  msgid ""
577
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
580
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
581
  "kullanacak."
582
 
583
+ #: inc/post-types.php:167
584
  msgid "Description"
585
  msgstr "Açıklama"
586
 
587
+ #: inc/post-types.php:168
588
  #, fuzzy
589
  msgid ""
590
  "Custom Post Type Description. Describe what your custom post type is used "
592
  msgstr ""
593
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
594
 
595
+ #: inc/post-types.php:180
596
  msgid "Migrate posts to newly renamed post type?"
597
  msgstr ""
598
 
599
+ #: inc/post-types.php:181
600
  msgid "Check this to migrate posts if and when renaming your post type."
601
  msgstr ""
602
 
603
+ #: inc/post-types.php:190
604
  #, fuzzy
605
  msgid "Save Post Type"
606
  msgstr "Özel Yazı Türü Kaydet"
607
 
608
+ #: inc/post-types.php:191
609
  #, fuzzy
610
  msgid "Delete Post Type"
611
  msgstr "Ek Yazı Türleri"
612
 
613
+ #: inc/post-types.php:193
614
  #, fuzzy
615
  msgid "Add Post Type"
616
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
617
 
618
+ #: inc/post-types.php:204 inc/taxonomies.php:190
619
  msgid "Starter Notes"
620
  msgstr ""
621
 
622
+ #: inc/post-types.php:207
623
  #, fuzzy, php-format
624
  msgid ""
625
  "Post Type names should have %smax 20 characters%s, and only contain "
630
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
631
  "post, sayfa, ek, revizyon, nav_menu_item."
632
 
633
+ #: inc/post-types.php:208
634
  #, fuzzy, php-format
635
  msgid ""
636
  "If you are unfamiliar with the advanced post type settings, just fill in the "
642
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
643
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
644
 
645
+ #: inc/post-types.php:209
646
  #, fuzzy, php-format
647
  msgid ""
648
  "Deleting custom post types will %sNOT%s delete any content into the database "
653
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
654
  "veritabanında olacaktır."
655
 
656
+ #: inc/post-types.php:223 inc/taxonomies.php:211
657
  msgid "Menu Name"
658
  msgstr "Menü Adı"
659
 
660
+ #: inc/post-types.php:224
661
  msgid "Custom menu name for your custom post type."
662
  msgstr "Özel yazı türü için özel menü adı."
663
 
664
+ #: inc/post-types.php:228
665
  msgid "(e.g. My Movies)"
666
  msgstr "(örneğin: Benim Filmlerim)"
667
 
668
+ #: inc/post-types.php:235 inc/taxonomies.php:220
669
  msgid "All Items"
670
  msgstr "Bütün Elemanlar"
671
 
672
+ #: inc/post-types.php:240
673
  #, fuzzy
674
  msgid "(e.g. All Movies)"
675
  msgstr "(örneğin: Filmler)"
676
 
677
+ #: inc/post-types.php:247
678
  msgid "Add New"
679
  msgstr "Yeni Ekle"
680
 
681
+ #: inc/post-types.php:252
682
  msgid "(e.g. Add New)"
683
  msgstr "(örneğin: Yeni Ekle)"
684
 
685
+ #: inc/post-types.php:259 inc/taxonomies.php:256
686
  msgid "Add New Item"
687
  msgstr "Yeni Eleman Ekle"
688
 
689
+ #: inc/post-types.php:264
690
  msgid "(e.g. Add New Movie)"
691
  msgstr "(örneğin: Yeni Film ekle)"
692
 
693
+ #: inc/post-types.php:276
694
  msgid "(e.g. Edit)"
695
  msgstr "(örneğin: Düzenle)"
696
 
697
+ #: inc/post-types.php:283 inc/taxonomies.php:229
698
  msgid "Edit Item"
699
  msgstr "Eleman Düzenle"
700
 
701
+ #: inc/post-types.php:288
702
  msgid "(e.g. Edit Movie)"
703
  msgstr "(örneğin: Film Düzenle)"
704
 
705
+ #: inc/post-types.php:295
706
  msgid "New Item"
707
  msgstr "Yeni Eleman"
708
 
709
+ #: inc/post-types.php:300
710
  msgid "(e.g. New Movie)"
711
  msgstr "(örneğin: Yeni Film)"
712
 
713
+ #: inc/post-types.php:307
714
  msgid "View"
715
  msgstr "Göster"
716
 
717
+ #: inc/post-types.php:312
718
  #, fuzzy
719
  msgid "(e.g. View)"
720
  msgstr "(örneğin: Film Göster)"
721
 
722
+ #: inc/post-types.php:319 inc/taxonomies.php:238
723
  msgid "View Item"
724
  msgstr "Elemanı Göster"
725
 
726
+ #: inc/post-types.php:324
727
  msgid "(e.g. View Movie)"
728
  msgstr "(örneğin: Film Göster)"
729
 
730
+ #: inc/post-types.php:331
731
  #, fuzzy
732
  msgid "Search Item"
733
  msgstr "Eleman Düzenle"
734
 
735
+ #: inc/post-types.php:336
736
  #, fuzzy
737
  msgid "(e.g. Search Movie)"
738
  msgstr "(örneğin: Filmleri Ara)"
739
 
740
+ #: inc/post-types.php:343
741
  msgid "Not Found"
742
  msgstr "Bulunamadı"
743
 
744
+ #: inc/post-types.php:348
745
  #, fuzzy
746
  msgid "(e.g. No Movies found)"
747
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
748
 
749
+ #: inc/post-types.php:355
750
  msgid "Not Found in Trash"
751
  msgstr "Çöpte Bulunamadı"
752
 
753
+ #: inc/post-types.php:360
754
  msgid "(e.g. No Movies found in Trash)"
755
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
756
 
757
+ #: inc/post-types.php:367
758
  msgid "Parent"
759
  msgstr "Temel"
760
 
761
+ #: inc/post-types.php:372
762
  msgid "(e.g. Parent Movie)"
763
  msgstr "(örneğin: Temel Film)"
764
 
765
+ #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
766
+ #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
767
+ #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
768
+ #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
769
+ #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
770
+ #: inc/taxonomies.php:469
 
 
 
 
 
 
771
  msgid "False"
772
  msgstr "False"
773
 
774
+ #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
775
+ #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
776
+ #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
777
+ #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
778
+ #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
779
+ #: inc/taxonomies.php:470
 
 
 
 
 
 
780
  msgid "True"
781
  msgstr "True"
782
 
783
+ #: inc/post-types.php:395
 
 
 
784
  msgid "Public"
785
  msgstr "Genel"
786
 
787
+ #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
788
+ #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
789
+ #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
 
 
 
 
 
790
  msgid "(default: True)"
791
  msgstr "(varsayılan: Doğru)"
792
 
793
+ #: inc/post-types.php:397
794
  #, fuzzy
795
  msgid ""
796
  "Whether posts of this type should be shown in the admin UI and is publicly "
798
  msgstr ""
799
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
800
 
801
+ #: inc/post-types.php:415 inc/taxonomies.php:375
802
  msgid "Show UI"
803
  msgstr "KA Göster"
804
 
805
+ #: inc/post-types.php:417
806
  #, fuzzy
807
  msgid "Whether to generate a default UI for managing this post type."
808
  msgstr ""
809
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
810
 
811
+ #: inc/post-types.php:425
812
  msgid "Has Archive"
813
  msgstr "Arşivlenebilir mi?"
814
 
815
+ #: inc/post-types.php:426
816
  #, fuzzy
817
  msgid "Whether the post type will have a post type archive URL."
818
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
819
 
820
+ #: inc/post-types.php:427
821
  msgid "If left blank, the archive slug will default to the post type slug."
822
  msgstr ""
823
 
824
+ #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
825
+ #: inc/taxonomies.php:359 inc/taxonomies.php:479
 
826
  msgid "(default: False)"
827
  msgstr "(varsayılan:Yanlış)"
828
 
829
+ #: inc/post-types.php:453
830
  msgid "Slug to be used for archive URL."
831
  msgstr ""
832
 
833
+ #: inc/post-types.php:473
834
  msgid "Exclude From Search"
835
  msgstr "Arama Dışında Bırak"
836
 
837
+ #: inc/post-types.php:475
838
  msgid ""
839
  "Whether to exclude posts with this post type from front end search results."
840
  msgstr ""
841
 
842
+ #: inc/post-types.php:486
843
  msgid "Capability Type"
844
  msgstr "Yetenek Türü"
845
 
846
+ #: inc/post-types.php:487
847
  msgid "The post type to use for checking read, edit, and delete capabilities"
848
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
849
 
850
+ #: inc/post-types.php:504 inc/taxonomies.php:358
851
  msgid "Hierarchical"
852
  msgstr "Hiyerarşik"
853
 
854
+ #: inc/post-types.php:506
855
  msgid "Whether the post type can have parent-child relationships"
856
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
857
 
858
+ #: inc/post-types.php:524 inc/taxonomies.php:418
859
  msgid "Rewrite"
860
  msgstr "Rewrite"
861
 
862
+ #: inc/post-types.php:526
863
  #, fuzzy
864
  msgid "Whether or not WordPress should use rewrites for this post type"
865
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
866
 
867
+ #: inc/post-types.php:537 inc/taxonomies.php:429
868
  msgid "Custom Rewrite Slug"
869
  msgstr "Özel Rewrite Slug"
870
 
871
+ #: inc/post-types.php:538
872
  #, fuzzy
873
  msgid "(default: post type slug)"
874
  msgstr "(varsayılan: yazı türü adı)"
875
 
876
+ #: inc/post-types.php:539
877
  #, fuzzy
878
  msgid "Custom post type slug to use instead of the default."
879
  msgstr "Özel slug yerine varsayılan kullanmak için."
880
 
881
+ #: inc/post-types.php:556
882
  msgid "With Front"
883
  msgstr "Cephesinden"
884
 
885
+ #: inc/post-types.php:558 inc/taxonomies.php:446
886
  msgid "Should the permastruct be prepended with the front base."
887
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
888
 
889
+ #: inc/post-types.php:576 inc/taxonomies.php:392
890
  msgid "Query Var"
891
  msgstr "Sorgu Tanımı"
892
 
893
+ #: inc/post-types.php:578
894
  #, fuzzy
895
  msgid "Sets the query_var key for this post type."
896
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
897
 
898
+ #: inc/post-types.php:586
899
  msgid "Menu Position"
900
  msgstr "Menü Pozisyonu"
901
 
902
+ #: inc/post-types.php:587
903
  msgid ""
904
  "The position in the menu order the post type should appear. show_in_menu "
905
  "must be true."
907
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
908
  "gerekir."
909
 
910
+ #: inc/post-types.php:588
911
+ #, fuzzy
912
  msgid ""
913
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
914
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
915
+ "the \"menu_position\" section. Range of 5-100"
916
  msgstr ""
917
  "Bak <a href=\"http://codex.wordpress.org/Function_Reference/"
918
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
919
  "bölümü\". Aralık 5 ile 100"
920
 
921
+ #: inc/post-types.php:603
922
  msgid "Show in Menu"
923
  msgstr "Menüde Göster"
924
 
925
+ #: inc/post-types.php:604
926
  #, fuzzy
927
  msgid ""
928
  "Whether to show the post type in the admin menu and where to show that menu."
929
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
930
 
931
+ #: inc/post-types.php:605
932
  msgid ""
933
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
934
  "php\" is indicated for second input, post type will be sub menu of that."
937
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
938
  "olacaktır."
939
 
940
+ #: inc/post-types.php:631
941
  msgid "Top-level page file name to make post type a sub-menu of."
942
  msgstr ""
943
 
944
+ #: inc/post-types.php:643
945
  msgid "Menu Icon"
946
  msgstr "Menü Simgesi"
947
 
948
+ #: inc/post-types.php:644
949
  msgid "(Full URL for icon or Dashicon class)"
950
  msgstr ""
951
 
952
+ #: inc/post-types.php:645
953
  #, fuzzy
954
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
955
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
956
 
957
+ #: inc/post-types.php:658
958
  msgid "Title"
959
  msgstr "Başlık"
960
 
961
+ #: inc/post-types.php:659
962
  msgid "Adds the title meta box when creating content for this custom post type"
963
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
964
 
965
+ #: inc/post-types.php:673
966
  msgid "Editor"
967
  msgstr "Editör"
968
 
969
+ #: inc/post-types.php:674
970
  msgid ""
971
  "Adds the content editor meta box when creating content for this custom post "
972
  "type"
973
  msgstr ""
974
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
975
 
976
+ #: inc/post-types.php:688
977
  msgid "Excerpt"
978
  msgstr "Alıntı"
979
 
980
+ #: inc/post-types.php:689
981
  msgid ""
982
  "Adds the excerpt meta box when creating content for this custom post type"
983
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
984
 
985
+ #: inc/post-types.php:703
986
  msgid "Trackbacks"
987
  msgstr "Parçagönderimi"
988
 
989
+ #: inc/post-types.php:704
990
  msgid ""
991
  "Adds the trackbacks meta box when creating content for this custom post type"
992
  msgstr ""
993
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
994
 
995
+ #: inc/post-types.php:718
996
  msgid "Custom Fields"
997
  msgstr "Özel Alanlar"
998
 
999
+ #: inc/post-types.php:719
1000
  msgid ""
1001
  "Adds the custom fields meta box when creating content for this custom post "
1002
  "type"
1003
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1004
 
1005
+ #: inc/post-types.php:733
1006
  msgid "Comments"
1007
  msgstr "Yorumlar"
1008
 
1009
+ #: inc/post-types.php:734
1010
  msgid ""
1011
  "Adds the comments meta box when creating content for this custom post type"
1012
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1013
 
1014
+ #: inc/post-types.php:748
1015
  msgid "Revisions"
1016
  msgstr "Düzenlemeler"
1017
 
1018
+ #: inc/post-types.php:749
1019
  msgid ""
1020
  "Adds the revisions meta box when creating content for this custom post type"
1021
  msgstr ""
1022
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1023
 
1024
+ #: inc/post-types.php:763
1025
  msgid "Featured Image"
1026
  msgstr "Öne Çıkan Görüntü"
1027
 
1028
+ #: inc/post-types.php:764
1029
  msgid ""
1030
  "Adds the featured image meta box when creating content for this custom post "
1031
  "type"
1033
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1034
  "ekler"
1035
 
1036
+ #: inc/post-types.php:778
1037
  msgid "Author"
1038
  msgstr "Yazar"
1039
 
1040
+ #: inc/post-types.php:779
1041
  msgid ""
1042
  "Adds the author meta box when creating content for this custom post type"
1043
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1044
 
1045
+ #: inc/post-types.php:793
1046
  msgid "Page Attributes"
1047
  msgstr "Sayfa Öznitelikleri"
1048
 
1049
+ #: inc/post-types.php:794
1050
  msgid ""
1051
  "Adds the page attribute meta box when creating content for this custom post "
1052
  "type"
1054
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1055
  "ekler "
1056
 
1057
+ #: inc/post-types.php:808
1058
  msgid "Post Formats"
1059
  msgstr "Yazı Formatları"
1060
 
1061
+ #: inc/post-types.php:809
1062
  msgid "Adds post format support"
1063
  msgstr "Bu Yazı format desteği ekler"
1064
 
1065
+ #: inc/post-types.php:814
1066
  msgid "Use the option below to explicitly set \"supports\" to false."
1067
  msgstr ""
1068
 
1069
+ #: inc/post-types.php:822
1070
  msgid "None"
1071
  msgstr ""
1072
 
1073
+ #: inc/post-types.php:823
1074
  msgid "Remove all support features"
1075
  msgstr ""
1076
 
1077
+ #: inc/post-types.php:829
1078
  #, fuzzy
1079
  msgid "Custom \"Supports\""
1080
  msgstr "Destekler"
1081
 
1082
+ #: inc/post-types.php:830
1083
  msgid ""
1084
  "Use this input to register custom \"supports\" values, separated by commas."
1085
  msgstr ""
1086
 
1087
+ #: inc/post-types.php:836
1088
  msgid "Provide custom support slugs here."
1089
  msgstr ""
1090
 
1091
+ #: inc/post-types.php:842
1092
  msgid "Built-in Taxonomies"
1093
  msgstr "Dahili Sınıflandırmalar"
1094
 
1095
+ #: inc/post-types.php:871 inc/taxonomies.php:172
1096
  #, fuzzy, php-format
1097
  msgid "Adds %s support"
1098
  msgstr "Bu Yazı format desteği ekler"
1099
 
1100
+ #: inc/post-types.php:977
1101
  msgid "Please provide a post type to delete"
1102
  msgstr ""
1103
 
1104
+ #: inc/post-types.php:1037
1105
  #, fuzzy
1106
  msgid "Please provide a post type name"
1107
  msgstr "(varsayılan: yazı türü adı)"
1108
 
1109
+ #: inc/post-types.php:1061
1110
  #, fuzzy
1111
  msgid "Please do not use quotes in post type names or rewrite slugs"
1112
  msgstr ""
1113
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1114
 
1115
+ #: inc/post-types.php:1068
1116
  #, php-format
1117
  msgid "Please choose a different post type name. %s is already registered."
1118
  msgstr ""
1119
 
1120
+ #: inc/support.php:41
1121
  #, fuzzy
1122
  msgid "Custom Post Type UI Support"
1123
  msgstr "Özel Yazı Türleri KA"
1124
 
1125
+ #: inc/support.php:43
1126
  #, fuzzy, php-format
1127
  msgid ""
1128
  "Please note that this plugin will NOT handle display of registered post "
1132
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1133
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1134
 
1135
+ #: inc/support.php:44
1136
  #, fuzzy
1137
  msgid "Support Forums"
1138
  msgstr "Destekler"
1139
 
1140
+ #: inc/support.php:50
1141
  msgid "General"
1142
  msgstr ""
1143
 
1144
+ #: inc/support.php:53
1145
  #, fuzzy
1146
  msgid ""
1147
  "I changed my custom post type name and now I can not get to my posts. How do "
1150
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1151
  "gösterilmiyor</strong>"
1152
 
1153
+ #: inc/support.php:54
1154
  #, fuzzy
1155
  msgid ""
1156
  "You can either change the custom post type name back to the original name or "
1159
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1160
  "deneyebilirsiniz:"
1161
 
1162
+ #: inc/support.php:59
1163
  msgid ""
1164
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1165
  "shown. How do I remove the duplicate?"
1166
  msgstr ""
1167
 
1168
+ #: inc/support.php:60
1169
  msgid ""
1170
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1171
  "saved option which gets registered as its own post type or taxonomy. Since "
1173
  "delete the previous version's entry."
1174
  msgstr ""
1175
 
1176
+ #: inc/support.php:63
1177
  msgid ""
1178
  "I have added post thumbnail and/or post format support to my post type, but "
1179
  "those do not appear when adding a post type post."
1180
  msgstr ""
1181
 
1182
+ #: inc/support.php:64
1183
  msgid ""
1184
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1185
  msgstr ""
1186
 
1187
+ #: inc/support.php:69
1188
  msgid "Front-end Display"
1189
  msgstr ""
1190
 
1191
+ #: inc/support.php:72
1192
  msgid "What template files should I edit to alter my post type display?"
1193
  msgstr ""
1194
 
1195
+ #: inc/support.php:73
1196
  #, php-format
1197
  msgid ""
1198
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1199
  "details about available templates."
1200
  msgstr ""
1201
 
1202
+ #: inc/support.php:80
1203
  #, fuzzy
1204
  msgid "How do I display my custom post type on my site?"
1205
  msgstr ""
1206
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1207
  "strong>"
1208
 
1209
+ #: inc/support.php:81
1210
  #, php-format
1211
  msgid ""
1212
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1214
  "should be something like \"http://www.mysite.com/post-type-slug\""
1215
  msgstr ""
1216
 
1217
+ #: inc/support.php:87
1218
  msgid ""
1219
  "I have added categories and tags to my custom post type, but they do not "
1220
  "appear in the archives."
1221
  msgstr ""
1222
 
1223
+ #: inc/support.php:88
1224
  #, php-format
1225
  msgid ""
1226
  "You will need to add your newly created post type to the types that the "
1228
  "that at %s"
1229
  msgstr ""
1230
 
1231
+ #: inc/support.php:97
1232
  #, fuzzy
1233
  msgid "Advanced"
1234
  msgstr "Gelişmiş Ayarlar"
1235
 
1236
+ #: inc/support.php:100
1237
  #, fuzzy
1238
  msgid "How do I add custom metaboxes to my post type?"
1239
  msgstr ""
1240
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1241
  "ekleyebilirsiniz?</strong>"
1242
 
1243
+ #: inc/support.php:102
1244
  #, php-format
1245
  msgid ""
1246
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1247
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1248
  msgstr ""
1249
 
1250
+ #: inc/support.php:108
1251
  msgid ""
1252
  "How do I add a newly registered taxonomy to a post type that already exists?"
1253
  msgstr ""
1254
 
1255
+ #: inc/support.php:110
1256
  #, php-format
1257
  msgid "Check out the %s function for documentation and usage examples."
1258
  msgstr ""
1259
 
1260
+ #: inc/support.php:116
1261
  msgid "Post relationships?"
1262
  msgstr ""
1263
 
1264
+ #: inc/support.php:117
1265
  #, php-format
1266
  msgid ""
1267
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1268
  "plugin that should be a good start."
1269
  msgstr ""
1270
 
1271
+ #: inc/support.php:126
1272
  msgid "Is there any function reference list?"
1273
  msgstr ""
1274
 
1275
+ #: inc/support.php:127
1276
  #, php-format
1277
  msgid ""
1278
  "%s has compiled a nice list of functions used by our plugin. Note not all "
1279
  "will be useful as they are attached to hooks."
1280
  msgstr ""
1281
 
1282
+ #: inc/support.php:131
1283
  msgid ""
1284
  "How do I filter the \"enter title here\" text in the post editor screen?"
1285
  msgstr ""
1286
 
1287
+ #: inc/support.php:132
1288
  msgid ""
1289
  "Change text inside the post/page editor title field. Should be able to adapt "
1290
  "as necessary."
1291
  msgstr ""
1292
 
1293
+ #: inc/taxonomies.php:85
1294
  msgid ""
1295
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1296
  "registers a new taxonomy entry for your install."
1297
  msgstr ""
1298
 
1299
+ #: inc/taxonomies.php:118
1300
  #, fuzzy
1301
  msgid "Taxonomy Slug"
1302
  msgstr "Sınıflandırma Adı"
1303
 
1304
+ #: inc/taxonomies.php:119
1305
  #, fuzzy
1306
  msgid "(e.g. actor)"
1307
  msgstr "(örneğin: Aktör)"
1308
 
1309
+ #: inc/taxonomies.php:120
1310
  #, fuzzy
1311
  msgid ""
1312
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1315
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1316
  "tatlı olmalıdır"
1317
 
1318
+ #: inc/taxonomies.php:128 inc/taxonomies.php:210
1319
  msgid "(e.g. Actors)"
1320
  msgstr "(örneğin: Aktörler)"
1321
 
1322
+ #: inc/taxonomies.php:130
1323
  #, fuzzy
1324
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1325
  msgstr ""
1326
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1327
  "menüsünde kullanılan."
1328
 
1329
+ #: inc/taxonomies.php:137
1330
  msgid "(e.g. Actor)"
1331
  msgstr "(örneğin: Aktör)"
1332
 
1333
+ #: inc/taxonomies.php:139
1334
  msgid ""
1335
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1336
  msgstr ""
1337
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1338
  "kullanır."
1339
 
1340
+ #: inc/taxonomies.php:142
1341
  msgid "Attach to Post Type"
1342
  msgstr "Yazı Türüne ekle"
1343
 
1344
+ #: inc/taxonomies.php:181
1345
  #, fuzzy
1346
  msgid "Save Taxonomy"
1347
  msgstr "Özel Sınıflandırma Kaydet"
1348
 
1349
+ #: inc/taxonomies.php:182
1350
  #, fuzzy
1351
  msgid "Delete Taxonomy"
1352
  msgstr "Özel Sınıflandırma Oluştur"
1353
 
1354
+ #: inc/taxonomies.php:184
1355
  #, fuzzy
1356
  msgid "Add Taxonomy"
1357
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1358
 
1359
+ #: inc/taxonomies.php:193
1360
  #, fuzzy, php-format
1361
  msgid ""
1362
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1366
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1367
  "boşluk yerine alt çizgi olmalıdır."
1368
 
1369
+ #: inc/taxonomies.php:194
1370
  #, fuzzy, php-format
1371
  msgid ""
1372
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1378
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1379
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1380
 
1381
+ #: inc/taxonomies.php:195
1382
  #, fuzzy, php-format
1383
  msgid ""
1384
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1389
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1390
  "içerikleri kalacaktır."
1391
 
1392
+ #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1393
+ #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1394
+ #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1395
+ #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1396
+ #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
 
 
 
1397
  #, fuzzy
1398
  msgid ""
1399
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1401
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1402
  "menüsünde kullanılan."
1403
 
1404
+ #: inc/taxonomies.php:219
1405
  msgid "(e.g. All Actors)"
1406
  msgstr "(örneğin: Bütün Aktörler)"
1407
 
1408
+ #: inc/taxonomies.php:228
1409
  msgid "(e.g. Edit Actor)"
1410
  msgstr "(örneğin: Aktör Düzenle)"
1411
 
1412
+ #: inc/taxonomies.php:237
1413
  #, fuzzy
1414
  msgid "(e.g. View Actor)"
1415
  msgstr "(örneğin: Aktör)"
1416
 
1417
+ #: inc/taxonomies.php:246
1418
  #, fuzzy
1419
  msgid "(e.g. Update Actor Name)"
1420
  msgstr "(örneğin: Aktörü Güncelle)"
1421
 
1422
+ #: inc/taxonomies.php:247
1423
  #, fuzzy
1424
  msgid "Update Item Name"
1425
  msgstr "Eleman Güncelle"
1426
 
1427
+ #: inc/taxonomies.php:255
1428
  msgid "(e.g. Add New Actor)"
1429
  msgstr "(örneğin: Yeni Aktör Ekle)"
1430
 
1431
+ #: inc/taxonomies.php:264
1432
  msgid "(e.g. New Actor Name)"
1433
  msgstr "(örneğin: Yeni Aktör Adı)"
1434
 
1435
+ #: inc/taxonomies.php:265
1436
  msgid "New Item Name"
1437
  msgstr "Yeni Eleman Adı"
1438
 
1439
+ #: inc/taxonomies.php:273
1440
  msgid "(e.g. Parent Actor)"
1441
  msgstr "(örneğin: Temel Aktör)"
1442
 
1443
+ #: inc/taxonomies.php:274
1444
  msgid "Parent Item"
1445
  msgstr "Temel Eleman"
1446
 
1447
+ #: inc/taxonomies.php:282
1448
  msgid "(e.g. Parent Actor:)"
1449
  msgstr "(örneğin: Temel Aktör:)"
1450
 
1451
+ #: inc/taxonomies.php:283
1452
  msgid "Parent Item Colon"
1453
  msgstr "Temel Eleman Kolon"
1454
 
1455
+ #: inc/taxonomies.php:291
1456
  msgid "(e.g. Search Actors)"
1457
  msgstr "(örneğin: Aktörleri Ara)"
1458
 
1459
+ #: inc/taxonomies.php:292
1460
  msgid "Search Items"
1461
  msgstr "Eleman Ara"
1462
 
1463
+ #: inc/taxonomies.php:300
1464
  msgid "(e.g. Popular Actors)"
1465
  msgstr "(örneğin: Popüler Aktörler)"
1466
 
1467
+ #: inc/taxonomies.php:301
1468
  msgid "Popular Items"
1469
  msgstr "Popüler Elemanlar"
1470
 
1471
+ #: inc/taxonomies.php:309
1472
  msgid "(e.g. Separate actors with commas)"
1473
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1474
 
1475
+ #: inc/taxonomies.php:310
1476
  msgid "Separate Items with Commas"
1477
  msgstr "Elemanları virgül ile ayır"
1478
 
1479
+ #: inc/taxonomies.php:318
1480
  msgid "(e.g. Add or remove actors)"
1481
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1482
 
1483
+ #: inc/taxonomies.php:319
1484
  msgid "Add or Remove Items"
1485
  msgstr "Elemanları Ekle veya Çıkar "
1486
 
1487
+ #: inc/taxonomies.php:327
1488
  msgid "(e.g. Choose from the most used actors)"
1489
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1490
 
1491
+ #: inc/taxonomies.php:328
1492
  msgid "Choose From Most Used"
1493
  msgstr "Çok Kullanılandan Seç"
1494
 
1495
+ #: inc/taxonomies.php:336
1496
  #, fuzzy
1497
  msgid "(e.g. No actors found)"
1498
  msgstr "(örneğin: Filmler bulunamadı)"
1499
 
1500
+ #: inc/taxonomies.php:337
1501
  #, fuzzy
1502
  msgid "Not found"
1503
  msgstr "Bulunamadı"
1504
 
1505
+ #: inc/taxonomies.php:360
1506
  msgid "Whether the taxonomy can have parent-child relationships"
1507
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1508
 
1509
+ #: inc/taxonomies.php:377
1510
  #, fuzzy
1511
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1512
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1513
 
1514
+ #: inc/taxonomies.php:394
1515
  #, fuzzy
1516
  msgid "Sets the query_var key for this taxonomy."
1517
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1518
 
1519
+ #: inc/taxonomies.php:402
1520
  msgid "(default: none). Query Var needs to be true to use."
1521
  msgstr ""
1522
 
1523
+ #: inc/taxonomies.php:403
1524
  msgid "Custom Query Var String"
1525
  msgstr ""
1526
 
1527
+ #: inc/taxonomies.php:404
1528
  msgid "Sets a custom query_var slug for this taxonomy."
1529
  msgstr ""
1530
 
1531
+ #: inc/taxonomies.php:420
1532
  #, fuzzy
1533
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1534
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1535
 
1536
+ #: inc/taxonomies.php:428
1537
  msgid "(default: taxonomy name)"
1538
  msgstr "(varsayılan: sınıflandırma adı)"
1539
 
1540
+ #: inc/taxonomies.php:430
1541
  #, fuzzy
1542
  msgid "Custom taxonomy rewrite slug."
1543
  msgstr "Özel Sınıflandırma Rewrite Slug"
1544
 
1545
+ #: inc/taxonomies.php:444
1546
  #, fuzzy
1547
  msgid "Rewrite With Front"
1548
  msgstr "Cephesinden"
1549
 
1550
+ #: inc/taxonomies.php:445
1551
  #, fuzzy
1552
  msgid "(default: true)"
1553
  msgstr "(varsayılan: Doğru)"
1554
 
1555
+ #: inc/taxonomies.php:461
1556
  #, fuzzy
1557
  msgid "Rewrite Hierarchical"
1558
  msgstr "Hiyerarşik"
1559
 
1560
+ #: inc/taxonomies.php:462
1561
  #, fuzzy
1562
  msgid "(default: false)"
1563
  msgstr "(varsayılan:Yanlış)"
1564
 
1565
+ #: inc/taxonomies.php:463
1566
  #, fuzzy
1567
  msgid "Should the permastruct allow hierarchical urls."
1568
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1569
 
1570
+ #: inc/taxonomies.php:478
1571
  msgid "Show Admin Column"
1572
  msgstr "Yönetici Sütunu Göster"
1573
 
1574
+ #: inc/taxonomies.php:480
1575
  msgid ""
1576
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1577
  "types."
1578
  msgstr ""
1579
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1580
 
1581
+ #: inc/taxonomies.php:585
1582
  msgid "Please provide a taxonomy to delete"
1583
  msgstr ""
1584
 
1585
+ #: inc/taxonomies.php:636
1586
  #, fuzzy
1587
  msgid "Please provide a taxonomy name"
1588
  msgstr "(varsayılan: sınıflandırma adı)"
1589
 
1590
+ #: inc/taxonomies.php:652
1591
  #, fuzzy
1592
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1593
  msgstr ""
1594
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1595
  "kullanmayınız."
1596
 
1597
+ #: inc/taxonomies.php:658
1598
  #, php-format
1599
  msgid "Please choose a different taxonomy name. %s is already used."
1600
  msgstr ""
1601
 
1602
+ #. Plugin URI of the plugin/theme
1603
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
 
 
 
1604
  msgstr ""
1605
+
1606
+ #. Description of the plugin/theme
1607
+ msgid ""
1608
+ "Admin panel for creating custom post types and custom taxonomies in WordPress"
1609
+ msgstr ""
1610
+
1611
+ #. Author of the plugin/theme
1612
+ msgid "WebDevStudios"
1613
+ msgstr ""
1614
+
1615
+ #. Author URI of the plugin/theme
1616
+ msgid "http://webdevstudios.com/"
1617
+ msgstr ""
1618
+
1619
+ #~ msgid "Whether posts of this type should be shown in the admin UI"
1620
+ #~ msgstr ""
1621
+ #~ "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
1622
 
1623
  #, fuzzy
1624
  #~ msgid "Edit Post Type"
languages/cpt-plugin-zh_CN.mo CHANGED
Binary file
languages/cpt-plugin-zh_CN.po CHANGED
@@ -1,19 +1,26 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-15 22:31-0600\n"
6
- "PO-Revision-Date: 2015-06-15 22:31-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
- "Language: zh\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: \n"
 
 
 
 
 
 
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.8.1\n"
 
17
 
18
  #: custom-post-type-ui.php:60
19
  #, fuzzy
@@ -196,8 +203,8 @@ msgid "Get Code"
196
  msgstr ""
197
 
198
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
199
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:374
200
- #: inc/taxonomies.php:340
201
  msgid "Settings"
202
  msgstr ""
203
 
@@ -205,122 +212,122 @@ msgstr ""
205
  msgid "Help"
206
  msgstr ""
207
 
208
- #: custom-post-type-ui.php:650
209
  #, php-format
210
  msgid "%s has been successfully added"
211
  msgstr ""
212
 
213
- #: custom-post-type-ui.php:652
214
  #, php-format
215
  msgid "%s has failed to be added"
216
  msgstr ""
217
 
218
- #: custom-post-type-ui.php:656
219
  #, php-format
220
  msgid "%s has been successfully updated"
221
  msgstr ""
222
 
223
- #: custom-post-type-ui.php:658
224
  #, php-format
225
  msgid "%s has failed to be updated"
226
  msgstr ""
227
 
228
- #: custom-post-type-ui.php:662
229
  #, php-format
230
  msgid "%s has been successfully deleted"
231
  msgstr ""
232
 
233
- #: custom-post-type-ui.php:664
234
  #, php-format
235
  msgid "%s has failed to be deleted"
236
  msgstr ""
237
 
238
- #: custom-post-type-ui.php:668
239
  #, php-format
240
  msgid "%s has been successfully imported"
241
  msgstr ""
242
 
243
- #: custom-post-type-ui.php:670
244
  #, php-format
245
  msgid "%s has failed to be imported"
246
  msgstr ""
247
 
248
- #: custom-post-type-ui.php:753 custom-post-type-ui.php:770
249
  #, fuzzy, php-format
250
  msgid "Add new %s"
251
  msgstr "添加"
252
 
253
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:768
254
  #, fuzzy, php-format
255
  msgid "Edit %s"
256
  msgstr "编辑"
257
 
258
- #: custom-post-type-ui.php:755
259
  #, php-format
260
  msgid "New %s"
261
  msgstr ""
262
 
263
- #: custom-post-type-ui.php:756
264
  #, fuzzy, php-format
265
  msgid "View %s"
266
  msgstr "查看"
267
 
268
- #: custom-post-type-ui.php:757 custom-post-type-ui.php:765
269
  #, fuzzy, php-format
270
  msgid "All %s"
271
  msgstr "所有条目"
272
 
273
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:763
274
  #, fuzzy, php-format
275
  msgid "Search %s"
276
  msgstr "搜索条目"
277
 
278
- #: custom-post-type-ui.php:759
279
  #, fuzzy, php-format
280
  msgid "No %s found."
281
  msgstr "未找到"
282
 
283
- #: custom-post-type-ui.php:760
284
  #, fuzzy, php-format
285
  msgid "No %s found in trash."
286
  msgstr "在回收站中没有找到"
287
 
288
- #: custom-post-type-ui.php:764
289
  #, fuzzy, php-format
290
  msgid "Popular %s"
291
  msgstr "热门条目"
292
 
293
- #: custom-post-type-ui.php:766
294
  #, fuzzy, php-format
295
  msgid "Parent %s"
296
  msgstr "上级"
297
 
298
- #: custom-post-type-ui.php:767
299
  #, fuzzy, php-format
300
  msgid "Parent %s:"
301
  msgstr "上级"
302
 
303
- #: custom-post-type-ui.php:769
304
  #, php-format
305
  msgid "Update %s"
306
  msgstr ""
307
 
308
- #: custom-post-type-ui.php:771
309
  #, fuzzy, php-format
310
  msgid "New %s name"
311
  msgstr "新条目名称"
312
 
313
- #: custom-post-type-ui.php:772
314
  #, fuzzy, php-format
315
  msgid "Separate %s with commas"
316
  msgstr "使用英文逗号隔开多个标签条目"
317
 
318
- #: custom-post-type-ui.php:773
319
  #, fuzzy, php-format
320
  msgid "Add or remove %s"
321
  msgstr "添加或删除条目"
322
 
323
- #: custom-post-type-ui.php:774
324
  #, fuzzy, php-format
325
  msgid "Choose from the most used %s"
326
  msgstr "使用次数最多"
@@ -463,17 +470,17 @@ msgstr ""
463
  msgid "Post Type"
464
  msgstr "附属到文章类型"
465
 
466
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
467
  msgid "Supports"
468
  msgstr "支持"
469
 
470
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
471
- #: inc/listings.php:225 inc/post-types.php:212 inc/taxonomies.php:198
472
  #, fuzzy
473
  msgid "Labels"
474
  msgstr "标签"
475
 
476
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
477
  msgid "Edit"
478
  msgstr "编辑"
479
 
@@ -494,110 +501,110 @@ msgstr "类别名称"
494
  msgid "Are you sure you want to delete this?"
495
  msgstr ""
496
 
497
- #: inc/post-types.php:86
498
  msgid ""
499
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
500
  "registers a new post type entry for your install."
501
  msgstr ""
502
 
503
- #: inc/post-types.php:87
504
  msgid ""
505
  "Use appropriate checkbox above save/delete buttons if you wish to change "
506
  "slugs and update post types for existing posts."
507
  msgstr ""
508
 
509
- #: inc/post-types.php:88 inc/taxonomies.php:84
510
  msgid "Select: "
511
  msgstr ""
512
 
513
- #: inc/post-types.php:91 inc/taxonomies.php:88
514
  msgid "Select"
515
  msgstr ""
516
 
517
- #: inc/post-types.php:121
518
  #, fuzzy
519
  msgid "Post Type Slug"
520
  msgstr "文章类型名称"
521
 
522
- #: inc/post-types.php:122
523
  msgid "(e.g. movie)"
524
  msgstr ""
525
 
526
- #: inc/post-types.php:123
527
  msgid ""
528
  "The post type name. Used to retrieve custom post type content. Should be "
529
  "short and unique"
530
  msgstr ""
531
 
532
- #: inc/post-types.php:134 inc/taxonomies.php:126
533
  #, fuzzy
534
  msgid "Plural Label"
535
  msgstr "单数标签"
536
 
537
- #: inc/post-types.php:135
538
  msgid "(e.g. Movies)"
539
  msgstr ""
540
 
541
- #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
542
- #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
543
- #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
544
- #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
545
- #: inc/post-types.php:365
546
  msgid "Post type label. Used in the admin menu for displaying post types."
547
  msgstr ""
548
 
549
- #: inc/post-types.php:146 inc/taxonomies.php:135
550
  msgid "Singular Label"
551
  msgstr "单数标签"
552
 
553
- #: inc/post-types.php:147
554
  msgid "(e.g. Movie)"
555
  msgstr ""
556
 
557
- #: inc/post-types.php:148
558
  msgid ""
559
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
560
  "needed."
561
  msgstr ""
562
 
563
- #: inc/post-types.php:164
564
  msgid "Description"
565
  msgstr "描述"
566
 
567
- #: inc/post-types.php:165
568
  msgid ""
569
  "Custom Post Type Description. Describe what your custom post type is used "
570
  "for."
571
  msgstr ""
572
 
573
- #: inc/post-types.php:177
574
  msgid "Migrate posts to newly renamed post type?"
575
  msgstr ""
576
 
577
- #: inc/post-types.php:178
578
  msgid "Check this to migrate posts if and when renaming your post type."
579
  msgstr ""
580
 
581
- #: inc/post-types.php:187
582
  #, fuzzy
583
  msgid "Save Post Type"
584
  msgstr "附属到文章类型"
585
 
586
- #: inc/post-types.php:188
587
  #, fuzzy
588
  msgid "Delete Post Type"
589
  msgstr "已附属文章类型"
590
 
591
- #: inc/post-types.php:190
592
  #, fuzzy
593
  msgid "Add Post Type"
594
  msgstr "已附属文章类型"
595
 
596
- #: inc/post-types.php:201 inc/taxonomies.php:187
597
  msgid "Starter Notes"
598
  msgstr ""
599
 
600
- #: inc/post-types.php:204
601
  #, php-format
602
  msgid ""
603
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -606,7 +613,7 @@ msgid ""
606
  "revision, nav_menu_item."
607
  msgstr ""
608
 
609
- #: inc/post-types.php:205
610
  #, php-format
611
  msgid ""
612
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -615,7 +622,7 @@ msgid ""
615
  "post type name. Hover over the question mark for more details."
616
  msgstr ""
617
 
618
- #: inc/post-types.php:206
619
  #, fuzzy, php-format
620
  msgid ""
621
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -625,453 +632,440 @@ msgstr ""
625
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
626
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
627
 
628
- #: inc/post-types.php:220 inc/taxonomies.php:208
629
  #, fuzzy
630
  msgid "Menu Name"
631
  msgstr "名称"
632
 
633
- #: inc/post-types.php:221
634
  msgid "Custom menu name for your custom post type."
635
  msgstr ""
636
 
637
- #: inc/post-types.php:225
638
  msgid "(e.g. My Movies)"
639
  msgstr ""
640
 
641
- #: inc/post-types.php:232 inc/taxonomies.php:217
642
  msgid "All Items"
643
  msgstr "所有条目"
644
 
645
- #: inc/post-types.php:237
646
  msgid "(e.g. All Movies)"
647
  msgstr ""
648
 
649
- #: inc/post-types.php:244
650
  msgid "Add New"
651
  msgstr "添加"
652
 
653
- #: inc/post-types.php:249
654
  #, fuzzy
655
  msgid "(e.g. Add New)"
656
  msgstr "添加"
657
 
658
- #: inc/post-types.php:256 inc/taxonomies.php:253
659
  msgid "Add New Item"
660
  msgstr "添加新条目"
661
 
662
- #: inc/post-types.php:261
663
  msgid "(e.g. Add New Movie)"
664
  msgstr ""
665
 
666
- #: inc/post-types.php:273
667
  msgid "(e.g. Edit)"
668
  msgstr ""
669
 
670
- #: inc/post-types.php:280 inc/taxonomies.php:226
671
  msgid "Edit Item"
672
  msgstr "编辑条目"
673
 
674
- #: inc/post-types.php:285
675
  msgid "(e.g. Edit Movie)"
676
  msgstr ""
677
 
678
- #: inc/post-types.php:292
679
  msgid "New Item"
680
  msgstr "新条目"
681
 
682
- #: inc/post-types.php:297
683
  #, fuzzy
684
  msgid "(e.g. New Movie)"
685
  msgstr "添加新条目"
686
 
687
- #: inc/post-types.php:304
688
  msgid "View"
689
  msgstr "查看"
690
 
691
- #: inc/post-types.php:309
692
  msgid "(e.g. View)"
693
  msgstr ""
694
 
695
- #: inc/post-types.php:316 inc/taxonomies.php:235
696
  msgid "View Item"
697
  msgstr "查看条目"
698
 
699
- #: inc/post-types.php:321
700
  msgid "(e.g. View Movie)"
701
  msgstr ""
702
 
703
- #: inc/post-types.php:328
704
  #, fuzzy
705
  msgid "Search Item"
706
  msgstr "搜索条目"
707
 
708
- #: inc/post-types.php:333
709
  msgid "(e.g. Search Movie)"
710
  msgstr ""
711
 
712
- #: inc/post-types.php:340
713
  msgid "Not Found"
714
  msgstr "未找到"
715
 
716
- #: inc/post-types.php:345
717
  msgid "(e.g. No Movies found)"
718
  msgstr ""
719
 
720
- #: inc/post-types.php:352
721
  msgid "Not Found in Trash"
722
  msgstr "在回收站中没有找到"
723
 
724
- #: inc/post-types.php:357
725
  #, fuzzy
726
  msgid "(e.g. No Movies found in Trash)"
727
  msgstr "在回收站中没有找到"
728
 
729
- #: inc/post-types.php:364
730
  msgid "Parent"
731
  msgstr "上级"
732
 
733
- #: inc/post-types.php:369
734
  msgid "(e.g. Parent Movie)"
735
  msgstr ""
736
 
737
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
738
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
739
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
740
- #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
741
- #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
742
- #: inc/taxonomies.php:466 tests/CPTUI-Admin-UI-Inputs-Test.php:105
743
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
744
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
745
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
746
  msgid "False"
747
  msgstr ""
748
 
749
- #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
750
- #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
751
- #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
752
- #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
753
- #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
754
- #: inc/taxonomies.php:467 tests/CPTUI-Admin-UI-Inputs-Test.php:106
755
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
756
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
757
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
758
  msgid "True"
759
  msgstr ""
760
 
761
- #: inc/post-types.php:392 tests/CPTUI-Admin-UI-Inputs-Test.php:114
762
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
763
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
764
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
765
  msgid "Public"
766
  msgstr "公开"
767
 
768
- #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
769
- #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
770
- #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
771
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
772
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
773
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
774
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:242
775
  msgid "(default: True)"
776
  msgstr ""
777
 
778
- #: inc/post-types.php:394
779
  msgid ""
780
  "Whether posts of this type should be shown in the admin UI and is publicly "
781
  "queryable."
782
  msgstr ""
783
 
784
- #: inc/post-types.php:412 inc/taxonomies.php:372
785
  msgid "Show UI"
786
  msgstr "显示用户界面"
787
 
788
- #: inc/post-types.php:414
789
  msgid "Whether to generate a default UI for managing this post type."
790
  msgstr ""
791
 
792
- #: inc/post-types.php:422
793
  msgid "Has Archive"
794
  msgstr ""
795
 
796
- #: inc/post-types.php:423
797
  msgid "Whether the post type will have a post type archive URL."
798
  msgstr ""
799
 
800
- #: inc/post-types.php:424
801
  msgid "If left blank, the archive slug will default to the post type slug."
802
  msgstr ""
803
 
804
- #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
805
- #: inc/taxonomies.php:356 inc/taxonomies.php:476
806
  msgid "(default: False)"
807
  msgstr ""
808
 
809
- #: inc/post-types.php:450
810
  msgid "Slug to be used for archive URL."
811
  msgstr ""
812
 
813
- #: inc/post-types.php:470
814
  msgid "Exclude From Search"
815
  msgstr ""
816
 
817
- #: inc/post-types.php:472
818
  msgid ""
819
  "Whether to exclude posts with this post type from front end search results."
820
  msgstr ""
821
 
822
- #: inc/post-types.php:483
823
  msgid "Capability Type"
824
  msgstr "权限类型"
825
 
826
- #: inc/post-types.php:484
827
  msgid "The post type to use for checking read, edit, and delete capabilities"
828
  msgstr ""
829
 
830
- #: inc/post-types.php:501 inc/taxonomies.php:355
831
  msgid "Hierarchical"
832
  msgstr "层级"
833
 
834
- #: inc/post-types.php:503
835
  msgid "Whether the post type can have parent-child relationships"
836
  msgstr ""
837
 
838
- #: inc/post-types.php:521 inc/taxonomies.php:415
839
  msgid "Rewrite"
840
  msgstr "重写"
841
 
842
- #: inc/post-types.php:523
843
  msgid "Whether or not WordPress should use rewrites for this post type"
844
  msgstr ""
845
 
846
- #: inc/post-types.php:534 inc/taxonomies.php:426
847
  msgid "Custom Rewrite Slug"
848
  msgstr "自定义重写缩略名"
849
 
850
- #: inc/post-types.php:535
851
  msgid "(default: post type slug)"
852
  msgstr ""
853
 
854
- #: inc/post-types.php:536
855
  #, fuzzy
856
  msgid "Custom post type slug to use instead of the default."
857
  msgstr "自定义文章类型被成功删除"
858
 
859
- #: inc/post-types.php:553
860
  msgid "With Front"
861
  msgstr ""
862
 
863
- #: inc/post-types.php:555 inc/taxonomies.php:443
864
  msgid "Should the permastruct be prepended with the front base."
865
  msgstr ""
866
 
867
- #: inc/post-types.php:573 inc/taxonomies.php:389
868
  msgid "Query Var"
869
  msgstr "查询变量"
870
 
871
- #: inc/post-types.php:575
872
  msgid "Sets the query_var key for this post type."
873
  msgstr ""
874
 
875
- #: inc/post-types.php:583
876
  msgid "Menu Position"
877
  msgstr "菜单位置"
878
 
879
- #: inc/post-types.php:584
880
  msgid ""
881
  "The position in the menu order the post type should appear. show_in_menu "
882
  "must be true."
883
  msgstr ""
884
 
885
- #: inc/post-types.php:585
886
  msgid ""
887
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
888
- "register_post_type#Parameters\">Available options</a> in the \"menu_position"
889
- "\" section. Range of 5-100"
890
  msgstr ""
891
 
892
- #: inc/post-types.php:600
893
  msgid "Show in Menu"
894
  msgstr ""
895
 
896
- #: inc/post-types.php:601
897
  msgid ""
898
  "Whether to show the post type in the admin menu and where to show that menu."
899
  msgstr ""
900
 
901
- #: inc/post-types.php:602
902
  msgid ""
903
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
904
  "php\" is indicated for second input, post type will be sub menu of that."
905
  msgstr ""
906
 
907
- #: inc/post-types.php:628
908
  msgid "Top-level page file name to make post type a sub-menu of."
909
  msgstr ""
910
 
911
- #: inc/post-types.php:640
912
  #, fuzzy
913
  msgid "Menu Icon"
914
  msgstr "菜单位置"
915
 
916
- #: inc/post-types.php:641
917
  msgid "(Full URL for icon or Dashicon class)"
918
  msgstr ""
919
 
920
- #: inc/post-types.php:642
921
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
922
  msgstr ""
923
 
924
- #: inc/post-types.php:655
925
  msgid "Title"
926
  msgstr ""
927
 
928
- #: inc/post-types.php:656
929
  msgid "Adds the title meta box when creating content for this custom post type"
930
  msgstr ""
931
 
932
- #: inc/post-types.php:670
933
  #, fuzzy
934
  msgid "Editor"
935
  msgstr "编辑"
936
 
937
- #: inc/post-types.php:671
938
  msgid ""
939
  "Adds the content editor meta box when creating content for this custom post "
940
  "type"
941
  msgstr ""
942
 
943
- #: inc/post-types.php:685
944
  msgid "Excerpt"
945
  msgstr ""
946
 
947
- #: inc/post-types.php:686
948
  msgid ""
949
  "Adds the excerpt meta box when creating content for this custom post type"
950
  msgstr ""
951
 
952
- #: inc/post-types.php:700
953
  msgid "Trackbacks"
954
  msgstr ""
955
 
956
- #: inc/post-types.php:701
957
  msgid ""
958
  "Adds the trackbacks meta box when creating content for this custom post type"
959
  msgstr ""
960
 
961
- #: inc/post-types.php:715
962
  #, fuzzy
963
  msgid "Custom Fields"
964
  msgstr "自定义重写缩略名"
965
 
966
- #: inc/post-types.php:716
967
  msgid ""
968
  "Adds the custom fields meta box when creating content for this custom post "
969
  "type"
970
  msgstr ""
971
 
972
- #: inc/post-types.php:730
973
  msgid "Comments"
974
  msgstr ""
975
 
976
- #: inc/post-types.php:731
977
  msgid ""
978
  "Adds the comments meta box when creating content for this custom post type"
979
  msgstr ""
980
 
981
- #: inc/post-types.php:745
982
  msgid "Revisions"
983
  msgstr ""
984
 
985
- #: inc/post-types.php:746
986
  msgid ""
987
  "Adds the revisions meta box when creating content for this custom post type"
988
  msgstr ""
989
 
990
- #: inc/post-types.php:760
991
  msgid "Featured Image"
992
  msgstr ""
993
 
994
- #: inc/post-types.php:761
995
  msgid ""
996
  "Adds the featured image meta box when creating content for this custom post "
997
  "type"
998
  msgstr ""
999
 
1000
- #: inc/post-types.php:775
1001
  msgid "Author"
1002
  msgstr ""
1003
 
1004
- #: inc/post-types.php:776
1005
  msgid ""
1006
  "Adds the author meta box when creating content for this custom post type"
1007
  msgstr ""
1008
 
1009
- #: inc/post-types.php:790
1010
  msgid "Page Attributes"
1011
  msgstr ""
1012
 
1013
- #: inc/post-types.php:791
1014
  msgid ""
1015
  "Adds the page attribute meta box when creating content for this custom post "
1016
  "type"
1017
  msgstr ""
1018
 
1019
- #: inc/post-types.php:805
1020
  msgid "Post Formats"
1021
  msgstr ""
1022
 
1023
- #: inc/post-types.php:806
1024
  msgid "Adds post format support"
1025
  msgstr ""
1026
 
1027
- #: inc/post-types.php:811
1028
  msgid "Use the option below to explicitly set \"supports\" to false."
1029
  msgstr ""
1030
 
1031
- #: inc/post-types.php:819
1032
  msgid "None"
1033
  msgstr ""
1034
 
1035
- #: inc/post-types.php:820
1036
  msgid "Remove all support features"
1037
  msgstr ""
1038
 
1039
- #: inc/post-types.php:826
1040
  #, fuzzy
1041
  msgid "Custom \"Supports\""
1042
  msgstr "支持"
1043
 
1044
- #: inc/post-types.php:827
1045
  msgid ""
1046
  "Use this input to register custom \"supports\" values, separated by commas."
1047
  msgstr ""
1048
 
1049
- #: inc/post-types.php:833
1050
  msgid "Provide custom support slugs here."
1051
  msgstr ""
1052
 
1053
- #: inc/post-types.php:839
1054
  msgid "Built-in Taxonomies"
1055
  msgstr "内置类别"
1056
 
1057
- #: inc/post-types.php:868 inc/taxonomies.php:169
1058
  #, php-format
1059
  msgid "Adds %s support"
1060
  msgstr ""
1061
 
1062
- #: inc/post-types.php:967
1063
  msgid "Please provide a post type to delete"
1064
  msgstr ""
1065
 
1066
- #: inc/post-types.php:1027
1067
  msgid "Please provide a post type name"
1068
  msgstr ""
1069
 
1070
- #: inc/post-types.php:1051
1071
  msgid "Please do not use quotes in post type names or rewrite slugs"
1072
  msgstr ""
1073
 
1074
- #: inc/post-types.php:1058
1075
  #, php-format
1076
  msgid "Please choose a different post type name. %s is already registered."
1077
  msgstr ""
@@ -1235,65 +1229,65 @@ msgid ""
1235
  "as necessary."
1236
  msgstr ""
1237
 
1238
- #: inc/taxonomies.php:82
1239
  msgid ""
1240
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1241
  "registers a new taxonomy entry for your install."
1242
  msgstr ""
1243
 
1244
- #: inc/taxonomies.php:115
1245
  #, fuzzy
1246
  msgid "Taxonomy Slug"
1247
  msgstr "类别名称"
1248
 
1249
- #: inc/taxonomies.php:116
1250
  #, fuzzy
1251
  msgid "(e.g. actor)"
1252
  msgstr "添加或删除条目"
1253
 
1254
- #: inc/taxonomies.php:117
1255
  msgid ""
1256
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1257
  "and unique"
1258
  msgstr ""
1259
 
1260
- #: inc/taxonomies.php:125 inc/taxonomies.php:207
1261
  msgid "(e.g. Actors)"
1262
  msgstr ""
1263
 
1264
- #: inc/taxonomies.php:127
1265
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1266
  msgstr ""
1267
 
1268
- #: inc/taxonomies.php:134
1269
  msgid "(e.g. Actor)"
1270
  msgstr ""
1271
 
1272
- #: inc/taxonomies.php:136
1273
  msgid ""
1274
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1275
  msgstr ""
1276
 
1277
- #: inc/taxonomies.php:139
1278
  msgid "Attach to Post Type"
1279
  msgstr "附属到文章类型"
1280
 
1281
- #: inc/taxonomies.php:178
1282
  #, fuzzy
1283
  msgid "Save Taxonomy"
1284
  msgstr "类别名称"
1285
 
1286
- #: inc/taxonomies.php:179
1287
  #, fuzzy
1288
  msgid "Delete Taxonomy"
1289
  msgstr "创建自定义类别"
1290
 
1291
- #: inc/taxonomies.php:181
1292
  #, fuzzy
1293
  msgid "Add Taxonomy"
1294
  msgstr "类别名称"
1295
 
1296
- #: inc/taxonomies.php:190
1297
  #, php-format
1298
  msgid ""
1299
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1301,7 +1295,7 @@ msgid ""
1301
  "letters that do not have accents."
1302
  msgstr ""
1303
 
1304
- #: inc/taxonomies.php:191
1305
  #, php-format
1306
  msgid ""
1307
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1311,7 +1305,7 @@ msgid ""
1311
  "marks for more details."
1312
  msgstr ""
1313
 
1314
- #: inc/taxonomies.php:192
1315
  #, fuzzy, php-format
1316
  msgid ""
1317
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1322,209 +1316,202 @@ msgstr ""
1322
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1323
  "的重新创建您的类别,并且这些内容依旧存在。"
1324
 
1325
- #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1326
- #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1327
- #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1328
- #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1329
- #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1330
  msgid ""
1331
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1332
  msgstr ""
1333
 
1334
- #: inc/taxonomies.php:216
1335
  msgid "(e.g. All Actors)"
1336
  msgstr ""
1337
 
1338
- #: inc/taxonomies.php:225
1339
  msgid "(e.g. Edit Actor)"
1340
  msgstr ""
1341
 
1342
- #: inc/taxonomies.php:234
1343
  msgid "(e.g. View Actor)"
1344
  msgstr ""
1345
 
1346
- #: inc/taxonomies.php:243
1347
  msgid "(e.g. Update Actor Name)"
1348
  msgstr ""
1349
 
1350
- #: inc/taxonomies.php:244
1351
  #, fuzzy
1352
  msgid "Update Item Name"
1353
  msgstr "更新条目"
1354
 
1355
- #: inc/taxonomies.php:252
1356
  msgid "(e.g. Add New Actor)"
1357
  msgstr ""
1358
 
1359
- #: inc/taxonomies.php:261
1360
  msgid "(e.g. New Actor Name)"
1361
  msgstr ""
1362
 
1363
- #: inc/taxonomies.php:262
1364
  msgid "New Item Name"
1365
  msgstr "新条目名称"
1366
 
1367
- #: inc/taxonomies.php:270
1368
  msgid "(e.g. Parent Actor)"
1369
  msgstr ""
1370
 
1371
- #: inc/taxonomies.php:271
1372
  msgid "Parent Item"
1373
  msgstr "上级条目"
1374
 
1375
- #: inc/taxonomies.php:279
1376
  msgid "(e.g. Parent Actor:)"
1377
  msgstr ""
1378
 
1379
- #: inc/taxonomies.php:280
1380
  msgid "Parent Item Colon"
1381
  msgstr "上级条目:"
1382
 
1383
- #: inc/taxonomies.php:288
1384
  msgid "(e.g. Search Actors)"
1385
  msgstr ""
1386
 
1387
- #: inc/taxonomies.php:289
1388
  msgid "Search Items"
1389
  msgstr "搜索条目"
1390
 
1391
- #: inc/taxonomies.php:297
1392
  msgid "(e.g. Popular Actors)"
1393
  msgstr ""
1394
 
1395
- #: inc/taxonomies.php:298
1396
  msgid "Popular Items"
1397
  msgstr "热门条目"
1398
 
1399
- #: inc/taxonomies.php:306
1400
  #, fuzzy
1401
  msgid "(e.g. Separate actors with commas)"
1402
  msgstr "使用英文逗号隔开多个标签条目"
1403
 
1404
- #: inc/taxonomies.php:307
1405
  msgid "Separate Items with Commas"
1406
  msgstr "使用英文逗号隔开多个标签条目"
1407
 
1408
- #: inc/taxonomies.php:315
1409
  #, fuzzy
1410
  msgid "(e.g. Add or remove actors)"
1411
  msgstr "添加或删除条目"
1412
 
1413
- #: inc/taxonomies.php:316
1414
  msgid "Add or Remove Items"
1415
  msgstr "添加或删除条目"
1416
 
1417
- #: inc/taxonomies.php:324
1418
  #, fuzzy
1419
  msgid "(e.g. Choose from the most used actors)"
1420
  msgstr "使用次数最多"
1421
 
1422
- #: inc/taxonomies.php:325
1423
  msgid "Choose From Most Used"
1424
  msgstr "使用次数最多"
1425
 
1426
- #: inc/taxonomies.php:333
1427
  msgid "(e.g. No actors found)"
1428
  msgstr ""
1429
 
1430
- #: inc/taxonomies.php:334
1431
  #, fuzzy
1432
  msgid "Not found"
1433
  msgstr "未找到"
1434
 
1435
- #: inc/taxonomies.php:357
1436
  msgid "Whether the taxonomy can have parent-child relationships"
1437
  msgstr ""
1438
 
1439
- #: inc/taxonomies.php:374
1440
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1441
  msgstr ""
1442
 
1443
- #: inc/taxonomies.php:391
1444
  msgid "Sets the query_var key for this taxonomy."
1445
  msgstr ""
1446
 
1447
- #: inc/taxonomies.php:399
1448
  msgid "(default: none). Query Var needs to be true to use."
1449
  msgstr ""
1450
 
1451
- #: inc/taxonomies.php:400
1452
  msgid "Custom Query Var String"
1453
  msgstr ""
1454
 
1455
- #: inc/taxonomies.php:401
1456
  msgid "Sets a custom query_var slug for this taxonomy."
1457
  msgstr ""
1458
 
1459
- #: inc/taxonomies.php:417
1460
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1461
  msgstr ""
1462
 
1463
- #: inc/taxonomies.php:425
1464
  #, fuzzy
1465
  msgid "(default: taxonomy name)"
1466
  msgstr "新条目名称"
1467
 
1468
- #: inc/taxonomies.php:427
1469
  #, fuzzy
1470
  msgid "Custom taxonomy rewrite slug."
1471
  msgstr "自定义重写缩略名"
1472
 
1473
- #: inc/taxonomies.php:441
1474
  msgid "Rewrite With Front"
1475
  msgstr ""
1476
 
1477
- #: inc/taxonomies.php:442
1478
  msgid "(default: true)"
1479
  msgstr ""
1480
 
1481
- #: inc/taxonomies.php:458
1482
  #, fuzzy
1483
  msgid "Rewrite Hierarchical"
1484
  msgstr "层级"
1485
 
1486
- #: inc/taxonomies.php:459
1487
  msgid "(default: false)"
1488
  msgstr ""
1489
 
1490
- #: inc/taxonomies.php:460
1491
  msgid "Should the permastruct allow hierarchical urls."
1492
  msgstr ""
1493
 
1494
- #: inc/taxonomies.php:475
1495
  msgid "Show Admin Column"
1496
  msgstr ""
1497
 
1498
- #: inc/taxonomies.php:477
1499
  msgid ""
1500
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1501
  "types."
1502
  msgstr ""
1503
 
1504
- #: inc/taxonomies.php:575
1505
  msgid "Please provide a taxonomy to delete"
1506
  msgstr ""
1507
 
1508
- #: inc/taxonomies.php:626
1509
  msgid "Please provide a taxonomy name"
1510
  msgstr ""
1511
 
1512
- #: inc/taxonomies.php:642
1513
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1514
  msgstr ""
1515
 
1516
- #: inc/taxonomies.php:648
1517
  #, php-format
1518
  msgid "Please choose a different taxonomy name. %s is already used."
1519
  msgstr ""
1520
 
1521
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:116
1522
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:158
1523
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:201
1524
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:243
1525
- msgid "Whether posts of this type should be shown in the admin UI"
1526
- msgstr ""
1527
-
1528
  #. Plugin URI of the plugin/theme
1529
  msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1530
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
5
+ "POT-Creation-Date: 2015-08-11 11:35-0500\n"
6
+ "PO-Revision-Date: 2015-08-11 11:36-0500\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
+ "Language: zh_CN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.2\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
15
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-WPHeader: custom-post-type-ui.php\n"
20
  "Plural-Forms: nplurals=1; plural=0;\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: tests\n"
23
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
  #: custom-post-type-ui.php:60
26
  #, fuzzy
203
  msgstr ""
204
 
205
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
206
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
207
+ #: inc/taxonomies.php:343
208
  msgid "Settings"
209
  msgstr ""
210
 
212
  msgid "Help"
213
  msgstr ""
214
 
215
+ #: custom-post-type-ui.php:651
216
  #, php-format
217
  msgid "%s has been successfully added"
218
  msgstr ""
219
 
220
+ #: custom-post-type-ui.php:653
221
  #, php-format
222
  msgid "%s has failed to be added"
223
  msgstr ""
224
 
225
+ #: custom-post-type-ui.php:657
226
  #, php-format
227
  msgid "%s has been successfully updated"
228
  msgstr ""
229
 
230
+ #: custom-post-type-ui.php:659
231
  #, php-format
232
  msgid "%s has failed to be updated"
233
  msgstr ""
234
 
235
+ #: custom-post-type-ui.php:663
236
  #, php-format
237
  msgid "%s has been successfully deleted"
238
  msgstr ""
239
 
240
+ #: custom-post-type-ui.php:665
241
  #, php-format
242
  msgid "%s has failed to be deleted"
243
  msgstr ""
244
 
245
+ #: custom-post-type-ui.php:669
246
  #, php-format
247
  msgid "%s has been successfully imported"
248
  msgstr ""
249
 
250
+ #: custom-post-type-ui.php:671
251
  #, php-format
252
  msgid "%s has failed to be imported"
253
  msgstr ""
254
 
255
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
256
  #, fuzzy, php-format
257
  msgid "Add new %s"
258
  msgstr "添加"
259
 
260
+ #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
261
  #, fuzzy, php-format
262
  msgid "Edit %s"
263
  msgstr "编辑"
264
 
265
+ #: custom-post-type-ui.php:756
266
  #, php-format
267
  msgid "New %s"
268
  msgstr ""
269
 
270
+ #: custom-post-type-ui.php:757
271
  #, fuzzy, php-format
272
  msgid "View %s"
273
  msgstr "查看"
274
 
275
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
276
  #, fuzzy, php-format
277
  msgid "All %s"
278
  msgstr "所有条目"
279
 
280
+ #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
281
  #, fuzzy, php-format
282
  msgid "Search %s"
283
  msgstr "搜索条目"
284
 
285
+ #: custom-post-type-ui.php:760
286
  #, fuzzy, php-format
287
  msgid "No %s found."
288
  msgstr "未找到"
289
 
290
+ #: custom-post-type-ui.php:761
291
  #, fuzzy, php-format
292
  msgid "No %s found in trash."
293
  msgstr "在回收站中没有找到"
294
 
295
+ #: custom-post-type-ui.php:765
296
  #, fuzzy, php-format
297
  msgid "Popular %s"
298
  msgstr "热门条目"
299
 
300
+ #: custom-post-type-ui.php:767
301
  #, fuzzy, php-format
302
  msgid "Parent %s"
303
  msgstr "上级"
304
 
305
+ #: custom-post-type-ui.php:768
306
  #, fuzzy, php-format
307
  msgid "Parent %s:"
308
  msgstr "上级"
309
 
310
+ #: custom-post-type-ui.php:770
311
  #, php-format
312
  msgid "Update %s"
313
  msgstr ""
314
 
315
+ #: custom-post-type-ui.php:772
316
  #, fuzzy, php-format
317
  msgid "New %s name"
318
  msgstr "新条目名称"
319
 
320
+ #: custom-post-type-ui.php:773
321
  #, fuzzy, php-format
322
  msgid "Separate %s with commas"
323
  msgstr "使用英文逗号隔开多个标签条目"
324
 
325
+ #: custom-post-type-ui.php:774
326
  #, fuzzy, php-format
327
  msgid "Add or remove %s"
328
  msgstr "添加或删除条目"
329
 
330
+ #: custom-post-type-ui.php:775
331
  #, fuzzy, php-format
332
  msgid "Choose from the most used %s"
333
  msgstr "使用次数最多"
470
  msgid "Post Type"
471
  msgstr "附属到文章类型"
472
 
473
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
474
  msgid "Supports"
475
  msgstr "支持"
476
 
477
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
478
+ #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
479
  #, fuzzy
480
  msgid "Labels"
481
  msgstr "标签"
482
 
483
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
484
  msgid "Edit"
485
  msgstr "编辑"
486
 
501
  msgid "Are you sure you want to delete this?"
502
  msgstr ""
503
 
504
+ #: inc/post-types.php:89
505
  msgid ""
506
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
507
  "registers a new post type entry for your install."
508
  msgstr ""
509
 
510
+ #: inc/post-types.php:90
511
  msgid ""
512
  "Use appropriate checkbox above save/delete buttons if you wish to change "
513
  "slugs and update post types for existing posts."
514
  msgstr ""
515
 
516
+ #: inc/post-types.php:91 inc/taxonomies.php:87
517
  msgid "Select: "
518
  msgstr ""
519
 
520
+ #: inc/post-types.php:94 inc/taxonomies.php:91
521
  msgid "Select"
522
  msgstr ""
523
 
524
+ #: inc/post-types.php:124
525
  #, fuzzy
526
  msgid "Post Type Slug"
527
  msgstr "文章类型名称"
528
 
529
+ #: inc/post-types.php:125
530
  msgid "(e.g. movie)"
531
  msgstr ""
532
 
533
+ #: inc/post-types.php:126
534
  msgid ""
535
  "The post type name. Used to retrieve custom post type content. Should be "
536
  "short and unique"
537
  msgstr ""
538
 
539
+ #: inc/post-types.php:137 inc/taxonomies.php:129
540
  #, fuzzy
541
  msgid "Plural Label"
542
  msgstr "单数标签"
543
 
544
+ #: inc/post-types.php:138
545
  msgid "(e.g. Movies)"
546
  msgstr ""
547
 
548
+ #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
549
+ #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
550
+ #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
551
+ #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
552
+ #: inc/post-types.php:368
553
  msgid "Post type label. Used in the admin menu for displaying post types."
554
  msgstr ""
555
 
556
+ #: inc/post-types.php:149 inc/taxonomies.php:138
557
  msgid "Singular Label"
558
  msgstr "单数标签"
559
 
560
+ #: inc/post-types.php:150
561
  msgid "(e.g. Movie)"
562
  msgstr ""
563
 
564
+ #: inc/post-types.php:151
565
  msgid ""
566
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
567
  "needed."
568
  msgstr ""
569
 
570
+ #: inc/post-types.php:167
571
  msgid "Description"
572
  msgstr "描述"
573
 
574
+ #: inc/post-types.php:168
575
  msgid ""
576
  "Custom Post Type Description. Describe what your custom post type is used "
577
  "for."
578
  msgstr ""
579
 
580
+ #: inc/post-types.php:180
581
  msgid "Migrate posts to newly renamed post type?"
582
  msgstr ""
583
 
584
+ #: inc/post-types.php:181
585
  msgid "Check this to migrate posts if and when renaming your post type."
586
  msgstr ""
587
 
588
+ #: inc/post-types.php:190
589
  #, fuzzy
590
  msgid "Save Post Type"
591
  msgstr "附属到文章类型"
592
 
593
+ #: inc/post-types.php:191
594
  #, fuzzy
595
  msgid "Delete Post Type"
596
  msgstr "已附属文章类型"
597
 
598
+ #: inc/post-types.php:193
599
  #, fuzzy
600
  msgid "Add Post Type"
601
  msgstr "已附属文章类型"
602
 
603
+ #: inc/post-types.php:204 inc/taxonomies.php:190
604
  msgid "Starter Notes"
605
  msgstr ""
606
 
607
+ #: inc/post-types.php:207
608
  #, php-format
609
  msgid ""
610
  "Post Type names should have %smax 20 characters%s, and only contain "
613
  "revision, nav_menu_item."
614
  msgstr ""
615
 
616
+ #: inc/post-types.php:208
617
  #, php-format
618
  msgid ""
619
  "If you are unfamiliar with the advanced post type settings, just fill in the "
622
  "post type name. Hover over the question mark for more details."
623
  msgstr ""
624
 
625
+ #: inc/post-types.php:209
626
  #, fuzzy, php-format
627
  msgid ""
628
  "Deleting custom post types will %sNOT%s delete any content into the database "
632
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
633
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
634
 
635
+ #: inc/post-types.php:223 inc/taxonomies.php:211
636
  #, fuzzy
637
  msgid "Menu Name"
638
  msgstr "名称"
639
 
640
+ #: inc/post-types.php:224
641
  msgid "Custom menu name for your custom post type."
642
  msgstr ""
643
 
644
+ #: inc/post-types.php:228
645
  msgid "(e.g. My Movies)"
646
  msgstr ""
647
 
648
+ #: inc/post-types.php:235 inc/taxonomies.php:220
649
  msgid "All Items"
650
  msgstr "所有条目"
651
 
652
+ #: inc/post-types.php:240
653
  msgid "(e.g. All Movies)"
654
  msgstr ""
655
 
656
+ #: inc/post-types.php:247
657
  msgid "Add New"
658
  msgstr "添加"
659
 
660
+ #: inc/post-types.php:252
661
  #, fuzzy
662
  msgid "(e.g. Add New)"
663
  msgstr "添加"
664
 
665
+ #: inc/post-types.php:259 inc/taxonomies.php:256
666
  msgid "Add New Item"
667
  msgstr "添加新条目"
668
 
669
+ #: inc/post-types.php:264
670
  msgid "(e.g. Add New Movie)"
671
  msgstr ""
672
 
673
+ #: inc/post-types.php:276
674
  msgid "(e.g. Edit)"
675
  msgstr ""
676
 
677
+ #: inc/post-types.php:283 inc/taxonomies.php:229
678
  msgid "Edit Item"
679
  msgstr "编辑条目"
680
 
681
+ #: inc/post-types.php:288
682
  msgid "(e.g. Edit Movie)"
683
  msgstr ""
684
 
685
+ #: inc/post-types.php:295
686
  msgid "New Item"
687
  msgstr "新条目"
688
 
689
+ #: inc/post-types.php:300
690
  #, fuzzy
691
  msgid "(e.g. New Movie)"
692
  msgstr "添加新条目"
693
 
694
+ #: inc/post-types.php:307
695
  msgid "View"
696
  msgstr "查看"
697
 
698
+ #: inc/post-types.php:312
699
  msgid "(e.g. View)"
700
  msgstr ""
701
 
702
+ #: inc/post-types.php:319 inc/taxonomies.php:238
703
  msgid "View Item"
704
  msgstr "查看条目"
705
 
706
+ #: inc/post-types.php:324
707
  msgid "(e.g. View Movie)"
708
  msgstr ""
709
 
710
+ #: inc/post-types.php:331
711
  #, fuzzy
712
  msgid "Search Item"
713
  msgstr "搜索条目"
714
 
715
+ #: inc/post-types.php:336
716
  msgid "(e.g. Search Movie)"
717
  msgstr ""
718
 
719
+ #: inc/post-types.php:343
720
  msgid "Not Found"
721
  msgstr "未找到"
722
 
723
+ #: inc/post-types.php:348
724
  msgid "(e.g. No Movies found)"
725
  msgstr ""
726
 
727
+ #: inc/post-types.php:355
728
  msgid "Not Found in Trash"
729
  msgstr "在回收站中没有找到"
730
 
731
+ #: inc/post-types.php:360
732
  #, fuzzy
733
  msgid "(e.g. No Movies found in Trash)"
734
  msgstr "在回收站中没有找到"
735
 
736
+ #: inc/post-types.php:367
737
  msgid "Parent"
738
  msgstr "上级"
739
 
740
+ #: inc/post-types.php:372
741
  msgid "(e.g. Parent Movie)"
742
  msgstr ""
743
 
744
+ #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
745
+ #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
746
+ #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
747
+ #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
748
+ #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
749
+ #: inc/taxonomies.php:469
 
 
 
750
  msgid "False"
751
  msgstr ""
752
 
753
+ #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
754
+ #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
755
+ #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
756
+ #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
757
+ #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
758
+ #: inc/taxonomies.php:470
 
 
 
759
  msgid "True"
760
  msgstr ""
761
 
762
+ #: inc/post-types.php:395
 
 
 
763
  msgid "Public"
764
  msgstr "公开"
765
 
766
+ #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
767
+ #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
768
+ #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
 
 
 
 
769
  msgid "(default: True)"
770
  msgstr ""
771
 
772
+ #: inc/post-types.php:397
773
  msgid ""
774
  "Whether posts of this type should be shown in the admin UI and is publicly "
775
  "queryable."
776
  msgstr ""
777
 
778
+ #: inc/post-types.php:415 inc/taxonomies.php:375
779
  msgid "Show UI"
780
  msgstr "显示用户界面"
781
 
782
+ #: inc/post-types.php:417
783
  msgid "Whether to generate a default UI for managing this post type."
784
  msgstr ""
785
 
786
+ #: inc/post-types.php:425
787
  msgid "Has Archive"
788
  msgstr ""
789
 
790
+ #: inc/post-types.php:426
791
  msgid "Whether the post type will have a post type archive URL."
792
  msgstr ""
793
 
794
+ #: inc/post-types.php:427
795
  msgid "If left blank, the archive slug will default to the post type slug."
796
  msgstr ""
797
 
798
+ #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
799
+ #: inc/taxonomies.php:359 inc/taxonomies.php:479
800
  msgid "(default: False)"
801
  msgstr ""
802
 
803
+ #: inc/post-types.php:453
804
  msgid "Slug to be used for archive URL."
805
  msgstr ""
806
 
807
+ #: inc/post-types.php:473
808
  msgid "Exclude From Search"
809
  msgstr ""
810
 
811
+ #: inc/post-types.php:475
812
  msgid ""
813
  "Whether to exclude posts with this post type from front end search results."
814
  msgstr ""
815
 
816
+ #: inc/post-types.php:486
817
  msgid "Capability Type"
818
  msgstr "权限类型"
819
 
820
+ #: inc/post-types.php:487
821
  msgid "The post type to use for checking read, edit, and delete capabilities"
822
  msgstr ""
823
 
824
+ #: inc/post-types.php:504 inc/taxonomies.php:358
825
  msgid "Hierarchical"
826
  msgstr "层级"
827
 
828
+ #: inc/post-types.php:506
829
  msgid "Whether the post type can have parent-child relationships"
830
  msgstr ""
831
 
832
+ #: inc/post-types.php:524 inc/taxonomies.php:418
833
  msgid "Rewrite"
834
  msgstr "重写"
835
 
836
+ #: inc/post-types.php:526
837
  msgid "Whether or not WordPress should use rewrites for this post type"
838
  msgstr ""
839
 
840
+ #: inc/post-types.php:537 inc/taxonomies.php:429
841
  msgid "Custom Rewrite Slug"
842
  msgstr "自定义重写缩略名"
843
 
844
+ #: inc/post-types.php:538
845
  msgid "(default: post type slug)"
846
  msgstr ""
847
 
848
+ #: inc/post-types.php:539
849
  #, fuzzy
850
  msgid "Custom post type slug to use instead of the default."
851
  msgstr "自定义文章类型被成功删除"
852
 
853
+ #: inc/post-types.php:556
854
  msgid "With Front"
855
  msgstr ""
856
 
857
+ #: inc/post-types.php:558 inc/taxonomies.php:446
858
  msgid "Should the permastruct be prepended with the front base."
859
  msgstr ""
860
 
861
+ #: inc/post-types.php:576 inc/taxonomies.php:392
862
  msgid "Query Var"
863
  msgstr "查询变量"
864
 
865
+ #: inc/post-types.php:578
866
  msgid "Sets the query_var key for this post type."
867
  msgstr ""
868
 
869
+ #: inc/post-types.php:586
870
  msgid "Menu Position"
871
  msgstr "菜单位置"
872
 
873
+ #: inc/post-types.php:587
874
  msgid ""
875
  "The position in the menu order the post type should appear. show_in_menu "
876
  "must be true."
877
  msgstr ""
878
 
879
+ #: inc/post-types.php:588
880
  msgid ""
881
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
882
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
883
+ "the \"menu_position\" section. Range of 5-100"
884
  msgstr ""
885
 
886
+ #: inc/post-types.php:603
887
  msgid "Show in Menu"
888
  msgstr ""
889
 
890
+ #: inc/post-types.php:604
891
  msgid ""
892
  "Whether to show the post type in the admin menu and where to show that menu."
893
  msgstr ""
894
 
895
+ #: inc/post-types.php:605
896
  msgid ""
897
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
898
  "php\" is indicated for second input, post type will be sub menu of that."
899
  msgstr ""
900
 
901
+ #: inc/post-types.php:631
902
  msgid "Top-level page file name to make post type a sub-menu of."
903
  msgstr ""
904
 
905
+ #: inc/post-types.php:643
906
  #, fuzzy
907
  msgid "Menu Icon"
908
  msgstr "菜单位置"
909
 
910
+ #: inc/post-types.php:644
911
  msgid "(Full URL for icon or Dashicon class)"
912
  msgstr ""
913
 
914
+ #: inc/post-types.php:645
915
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
916
  msgstr ""
917
 
918
+ #: inc/post-types.php:658
919
  msgid "Title"
920
  msgstr ""
921
 
922
+ #: inc/post-types.php:659
923
  msgid "Adds the title meta box when creating content for this custom post type"
924
  msgstr ""
925
 
926
+ #: inc/post-types.php:673
927
  #, fuzzy
928
  msgid "Editor"
929
  msgstr "编辑"
930
 
931
+ #: inc/post-types.php:674
932
  msgid ""
933
  "Adds the content editor meta box when creating content for this custom post "
934
  "type"
935
  msgstr ""
936
 
937
+ #: inc/post-types.php:688
938
  msgid "Excerpt"
939
  msgstr ""
940
 
941
+ #: inc/post-types.php:689
942
  msgid ""
943
  "Adds the excerpt meta box when creating content for this custom post type"
944
  msgstr ""
945
 
946
+ #: inc/post-types.php:703
947
  msgid "Trackbacks"
948
  msgstr ""
949
 
950
+ #: inc/post-types.php:704
951
  msgid ""
952
  "Adds the trackbacks meta box when creating content for this custom post type"
953
  msgstr ""
954
 
955
+ #: inc/post-types.php:718
956
  #, fuzzy
957
  msgid "Custom Fields"
958
  msgstr "自定义重写缩略名"
959
 
960
+ #: inc/post-types.php:719
961
  msgid ""
962
  "Adds the custom fields meta box when creating content for this custom post "
963
  "type"
964
  msgstr ""
965
 
966
+ #: inc/post-types.php:733
967
  msgid "Comments"
968
  msgstr ""
969
 
970
+ #: inc/post-types.php:734
971
  msgid ""
972
  "Adds the comments meta box when creating content for this custom post type"
973
  msgstr ""
974
 
975
+ #: inc/post-types.php:748
976
  msgid "Revisions"
977
  msgstr ""
978
 
979
+ #: inc/post-types.php:749
980
  msgid ""
981
  "Adds the revisions meta box when creating content for this custom post type"
982
  msgstr ""
983
 
984
+ #: inc/post-types.php:763
985
  msgid "Featured Image"
986
  msgstr ""
987
 
988
+ #: inc/post-types.php:764
989
  msgid ""
990
  "Adds the featured image meta box when creating content for this custom post "
991
  "type"
992
  msgstr ""
993
 
994
+ #: inc/post-types.php:778
995
  msgid "Author"
996
  msgstr ""
997
 
998
+ #: inc/post-types.php:779
999
  msgid ""
1000
  "Adds the author meta box when creating content for this custom post type"
1001
  msgstr ""
1002
 
1003
+ #: inc/post-types.php:793
1004
  msgid "Page Attributes"
1005
  msgstr ""
1006
 
1007
+ #: inc/post-types.php:794
1008
  msgid ""
1009
  "Adds the page attribute meta box when creating content for this custom post "
1010
  "type"
1011
  msgstr ""
1012
 
1013
+ #: inc/post-types.php:808
1014
  msgid "Post Formats"
1015
  msgstr ""
1016
 
1017
+ #: inc/post-types.php:809
1018
  msgid "Adds post format support"
1019
  msgstr ""
1020
 
1021
+ #: inc/post-types.php:814
1022
  msgid "Use the option below to explicitly set \"supports\" to false."
1023
  msgstr ""
1024
 
1025
+ #: inc/post-types.php:822
1026
  msgid "None"
1027
  msgstr ""
1028
 
1029
+ #: inc/post-types.php:823
1030
  msgid "Remove all support features"
1031
  msgstr ""
1032
 
1033
+ #: inc/post-types.php:829
1034
  #, fuzzy
1035
  msgid "Custom \"Supports\""
1036
  msgstr "支持"
1037
 
1038
+ #: inc/post-types.php:830
1039
  msgid ""
1040
  "Use this input to register custom \"supports\" values, separated by commas."
1041
  msgstr ""
1042
 
1043
+ #: inc/post-types.php:836
1044
  msgid "Provide custom support slugs here."
1045
  msgstr ""
1046
 
1047
+ #: inc/post-types.php:842
1048
  msgid "Built-in Taxonomies"
1049
  msgstr "内置类别"
1050
 
1051
+ #: inc/post-types.php:871 inc/taxonomies.php:172
1052
  #, php-format
1053
  msgid "Adds %s support"
1054
  msgstr ""
1055
 
1056
+ #: inc/post-types.php:977
1057
  msgid "Please provide a post type to delete"
1058
  msgstr ""
1059
 
1060
+ #: inc/post-types.php:1037
1061
  msgid "Please provide a post type name"
1062
  msgstr ""
1063
 
1064
+ #: inc/post-types.php:1061
1065
  msgid "Please do not use quotes in post type names or rewrite slugs"
1066
  msgstr ""
1067
 
1068
+ #: inc/post-types.php:1068
1069
  #, php-format
1070
  msgid "Please choose a different post type name. %s is already registered."
1071
  msgstr ""
1229
  "as necessary."
1230
  msgstr ""
1231
 
1232
+ #: inc/taxonomies.php:85
1233
  msgid ""
1234
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1235
  "registers a new taxonomy entry for your install."
1236
  msgstr ""
1237
 
1238
+ #: inc/taxonomies.php:118
1239
  #, fuzzy
1240
  msgid "Taxonomy Slug"
1241
  msgstr "类别名称"
1242
 
1243
+ #: inc/taxonomies.php:119
1244
  #, fuzzy
1245
  msgid "(e.g. actor)"
1246
  msgstr "添加或删除条目"
1247
 
1248
+ #: inc/taxonomies.php:120
1249
  msgid ""
1250
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1251
  "and unique"
1252
  msgstr ""
1253
 
1254
+ #: inc/taxonomies.php:128 inc/taxonomies.php:210
1255
  msgid "(e.g. Actors)"
1256
  msgstr ""
1257
 
1258
+ #: inc/taxonomies.php:130
1259
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1260
  msgstr ""
1261
 
1262
+ #: inc/taxonomies.php:137
1263
  msgid "(e.g. Actor)"
1264
  msgstr ""
1265
 
1266
+ #: inc/taxonomies.php:139
1267
  msgid ""
1268
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1269
  msgstr ""
1270
 
1271
+ #: inc/taxonomies.php:142
1272
  msgid "Attach to Post Type"
1273
  msgstr "附属到文章类型"
1274
 
1275
+ #: inc/taxonomies.php:181
1276
  #, fuzzy
1277
  msgid "Save Taxonomy"
1278
  msgstr "类别名称"
1279
 
1280
+ #: inc/taxonomies.php:182
1281
  #, fuzzy
1282
  msgid "Delete Taxonomy"
1283
  msgstr "创建自定义类别"
1284
 
1285
+ #: inc/taxonomies.php:184
1286
  #, fuzzy
1287
  msgid "Add Taxonomy"
1288
  msgstr "类别名称"
1289
 
1290
+ #: inc/taxonomies.php:193
1291
  #, php-format
1292
  msgid ""
1293
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1295
  "letters that do not have accents."
1296
  msgstr ""
1297
 
1298
+ #: inc/taxonomies.php:194
1299
  #, php-format
1300
  msgid ""
1301
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1305
  "marks for more details."
1306
  msgstr ""
1307
 
1308
+ #: inc/taxonomies.php:195
1309
  #, fuzzy, php-format
1310
  msgid ""
1311
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1316
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1317
  "的重新创建您的类别,并且这些内容依旧存在。"
1318
 
1319
+ #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1320
+ #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1321
+ #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1322
+ #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1323
+ #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1324
  msgid ""
1325
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1326
  msgstr ""
1327
 
1328
+ #: inc/taxonomies.php:219
1329
  msgid "(e.g. All Actors)"
1330
  msgstr ""
1331
 
1332
+ #: inc/taxonomies.php:228
1333
  msgid "(e.g. Edit Actor)"
1334
  msgstr ""
1335
 
1336
+ #: inc/taxonomies.php:237
1337
  msgid "(e.g. View Actor)"
1338
  msgstr ""
1339
 
1340
+ #: inc/taxonomies.php:246
1341
  msgid "(e.g. Update Actor Name)"
1342
  msgstr ""
1343
 
1344
+ #: inc/taxonomies.php:247
1345
  #, fuzzy
1346
  msgid "Update Item Name"
1347
  msgstr "更新条目"
1348
 
1349
+ #: inc/taxonomies.php:255
1350
  msgid "(e.g. Add New Actor)"
1351
  msgstr ""
1352
 
1353
+ #: inc/taxonomies.php:264
1354
  msgid "(e.g. New Actor Name)"
1355
  msgstr ""
1356
 
1357
+ #: inc/taxonomies.php:265
1358
  msgid "New Item Name"
1359
  msgstr "新条目名称"
1360
 
1361
+ #: inc/taxonomies.php:273
1362
  msgid "(e.g. Parent Actor)"
1363
  msgstr ""
1364
 
1365
+ #: inc/taxonomies.php:274
1366
  msgid "Parent Item"
1367
  msgstr "上级条目"
1368
 
1369
+ #: inc/taxonomies.php:282
1370
  msgid "(e.g. Parent Actor:)"
1371
  msgstr ""
1372
 
1373
+ #: inc/taxonomies.php:283
1374
  msgid "Parent Item Colon"
1375
  msgstr "上级条目:"
1376
 
1377
+ #: inc/taxonomies.php:291
1378
  msgid "(e.g. Search Actors)"
1379
  msgstr ""
1380
 
1381
+ #: inc/taxonomies.php:292
1382
  msgid "Search Items"
1383
  msgstr "搜索条目"
1384
 
1385
+ #: inc/taxonomies.php:300
1386
  msgid "(e.g. Popular Actors)"
1387
  msgstr ""
1388
 
1389
+ #: inc/taxonomies.php:301
1390
  msgid "Popular Items"
1391
  msgstr "热门条目"
1392
 
1393
+ #: inc/taxonomies.php:309
1394
  #, fuzzy
1395
  msgid "(e.g. Separate actors with commas)"
1396
  msgstr "使用英文逗号隔开多个标签条目"
1397
 
1398
+ #: inc/taxonomies.php:310
1399
  msgid "Separate Items with Commas"
1400
  msgstr "使用英文逗号隔开多个标签条目"
1401
 
1402
+ #: inc/taxonomies.php:318
1403
  #, fuzzy
1404
  msgid "(e.g. Add or remove actors)"
1405
  msgstr "添加或删除条目"
1406
 
1407
+ #: inc/taxonomies.php:319
1408
  msgid "Add or Remove Items"
1409
  msgstr "添加或删除条目"
1410
 
1411
+ #: inc/taxonomies.php:327
1412
  #, fuzzy
1413
  msgid "(e.g. Choose from the most used actors)"
1414
  msgstr "使用次数最多"
1415
 
1416
+ #: inc/taxonomies.php:328
1417
  msgid "Choose From Most Used"
1418
  msgstr "使用次数最多"
1419
 
1420
+ #: inc/taxonomies.php:336
1421
  msgid "(e.g. No actors found)"
1422
  msgstr ""
1423
 
1424
+ #: inc/taxonomies.php:337
1425
  #, fuzzy
1426
  msgid "Not found"
1427
  msgstr "未找到"
1428
 
1429
+ #: inc/taxonomies.php:360
1430
  msgid "Whether the taxonomy can have parent-child relationships"
1431
  msgstr ""
1432
 
1433
+ #: inc/taxonomies.php:377
1434
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1435
  msgstr ""
1436
 
1437
+ #: inc/taxonomies.php:394
1438
  msgid "Sets the query_var key for this taxonomy."
1439
  msgstr ""
1440
 
1441
+ #: inc/taxonomies.php:402
1442
  msgid "(default: none). Query Var needs to be true to use."
1443
  msgstr ""
1444
 
1445
+ #: inc/taxonomies.php:403
1446
  msgid "Custom Query Var String"
1447
  msgstr ""
1448
 
1449
+ #: inc/taxonomies.php:404
1450
  msgid "Sets a custom query_var slug for this taxonomy."
1451
  msgstr ""
1452
 
1453
+ #: inc/taxonomies.php:420
1454
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1455
  msgstr ""
1456
 
1457
+ #: inc/taxonomies.php:428
1458
  #, fuzzy
1459
  msgid "(default: taxonomy name)"
1460
  msgstr "新条目名称"
1461
 
1462
+ #: inc/taxonomies.php:430
1463
  #, fuzzy
1464
  msgid "Custom taxonomy rewrite slug."
1465
  msgstr "自定义重写缩略名"
1466
 
1467
+ #: inc/taxonomies.php:444
1468
  msgid "Rewrite With Front"
1469
  msgstr ""
1470
 
1471
+ #: inc/taxonomies.php:445
1472
  msgid "(default: true)"
1473
  msgstr ""
1474
 
1475
+ #: inc/taxonomies.php:461
1476
  #, fuzzy
1477
  msgid "Rewrite Hierarchical"
1478
  msgstr "层级"
1479
 
1480
+ #: inc/taxonomies.php:462
1481
  msgid "(default: false)"
1482
  msgstr ""
1483
 
1484
+ #: inc/taxonomies.php:463
1485
  msgid "Should the permastruct allow hierarchical urls."
1486
  msgstr ""
1487
 
1488
+ #: inc/taxonomies.php:478
1489
  msgid "Show Admin Column"
1490
  msgstr ""
1491
 
1492
+ #: inc/taxonomies.php:480
1493
  msgid ""
1494
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1495
  "types."
1496
  msgstr ""
1497
 
1498
+ #: inc/taxonomies.php:585
1499
  msgid "Please provide a taxonomy to delete"
1500
  msgstr ""
1501
 
1502
+ #: inc/taxonomies.php:636
1503
  msgid "Please provide a taxonomy name"
1504
  msgstr ""
1505
 
1506
+ #: inc/taxonomies.php:652
1507
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1508
  msgstr ""
1509
 
1510
+ #: inc/taxonomies.php:658
1511
  #, php-format
1512
  msgid "Please choose a different taxonomy name. %s is already used."
1513
  msgstr ""
1514
 
 
 
 
 
 
 
 
1515
  #. Plugin URI of the plugin/theme
1516
  msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1517
  msgstr ""
languages/custom-post-type-ui.pot CHANGED
@@ -2,7 +2,8 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Custom Post Type UI\n"
5
- "POT-Creation-Date: 2015-06-15 22:30-0600\n"
 
6
  "PO-Revision-Date: 2015-05-19 18:37-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
@@ -10,17 +11,16 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.1\n"
14
- "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Poedit-WPHeader: custom-post-type-ui.php\n"
21
- "X-Poedit-SearchPathExcluded-3: tests\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: *.js\n"
 
24
 
25
  #: custom-post-type-ui.php:60
26
  msgid "Custom Post Types"
@@ -189,8 +189,8 @@ msgid "Get Code"
189
  msgstr ""
190
 
191
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
192
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:374
193
- #: inc/taxonomies.php:340
194
  msgid "Settings"
195
  msgstr ""
196
 
@@ -198,122 +198,122 @@ msgstr ""
198
  msgid "Help"
199
  msgstr ""
200
 
201
- #: custom-post-type-ui.php:650
202
  #, php-format
203
  msgid "%s has been successfully added"
204
  msgstr ""
205
 
206
- #: custom-post-type-ui.php:652
207
  #, php-format
208
  msgid "%s has failed to be added"
209
  msgstr ""
210
 
211
- #: custom-post-type-ui.php:656
212
  #, php-format
213
  msgid "%s has been successfully updated"
214
  msgstr ""
215
 
216
- #: custom-post-type-ui.php:658
217
  #, php-format
218
  msgid "%s has failed to be updated"
219
  msgstr ""
220
 
221
- #: custom-post-type-ui.php:662
222
  #, php-format
223
  msgid "%s has been successfully deleted"
224
  msgstr ""
225
 
226
- #: custom-post-type-ui.php:664
227
  #, php-format
228
  msgid "%s has failed to be deleted"
229
  msgstr ""
230
 
231
- #: custom-post-type-ui.php:668
232
  #, php-format
233
  msgid "%s has been successfully imported"
234
  msgstr ""
235
 
236
- #: custom-post-type-ui.php:670
237
  #, php-format
238
  msgid "%s has failed to be imported"
239
  msgstr ""
240
 
241
- #: custom-post-type-ui.php:753 custom-post-type-ui.php:770
242
  #, php-format
243
  msgid "Add new %s"
244
  msgstr ""
245
 
246
- #: custom-post-type-ui.php:754 custom-post-type-ui.php:768
247
  #, php-format
248
  msgid "Edit %s"
249
  msgstr ""
250
 
251
- #: custom-post-type-ui.php:755
252
  #, php-format
253
  msgid "New %s"
254
  msgstr ""
255
 
256
- #: custom-post-type-ui.php:756
257
  #, php-format
258
  msgid "View %s"
259
  msgstr ""
260
 
261
- #: custom-post-type-ui.php:757 custom-post-type-ui.php:765
262
  #, php-format
263
  msgid "All %s"
264
  msgstr ""
265
 
266
- #: custom-post-type-ui.php:758 custom-post-type-ui.php:763
267
  #, php-format
268
  msgid "Search %s"
269
  msgstr ""
270
 
271
- #: custom-post-type-ui.php:759
272
  #, php-format
273
  msgid "No %s found."
274
  msgstr ""
275
 
276
- #: custom-post-type-ui.php:760
277
  #, php-format
278
  msgid "No %s found in trash."
279
  msgstr ""
280
 
281
- #: custom-post-type-ui.php:764
282
  #, php-format
283
  msgid "Popular %s"
284
  msgstr ""
285
 
286
- #: custom-post-type-ui.php:766
287
  #, php-format
288
  msgid "Parent %s"
289
  msgstr ""
290
 
291
- #: custom-post-type-ui.php:767
292
  #, php-format
293
  msgid "Parent %s:"
294
  msgstr ""
295
 
296
- #: custom-post-type-ui.php:769
297
  #, php-format
298
  msgid "Update %s"
299
  msgstr ""
300
 
301
- #: custom-post-type-ui.php:771
302
  #, php-format
303
  msgid "New %s name"
304
  msgstr ""
305
 
306
- #: custom-post-type-ui.php:772
307
  #, php-format
308
  msgid "Separate %s with commas"
309
  msgstr ""
310
 
311
- #: custom-post-type-ui.php:773
312
  #, php-format
313
  msgid "Add or remove %s"
314
  msgstr ""
315
 
316
- #: custom-post-type-ui.php:774
317
  #, php-format
318
  msgid "Choose from the most used %s"
319
  msgstr ""
@@ -447,16 +447,16 @@ msgstr ""
447
  msgid "Post Type"
448
  msgstr ""
449
 
450
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
451
  msgid "Supports"
452
  msgstr ""
453
 
454
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
455
- #: inc/listings.php:225 inc/post-types.php:212 inc/taxonomies.php:198
456
  msgid "Labels"
457
  msgstr ""
458
 
459
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
460
  msgid "Edit"
461
  msgstr ""
462
 
@@ -476,105 +476,105 @@ msgstr ""
476
  msgid "Are you sure you want to delete this?"
477
  msgstr ""
478
 
479
- #: inc/post-types.php:86
480
  msgid ""
481
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
482
  "registers a new post type entry for your install."
483
  msgstr ""
484
 
485
- #: inc/post-types.php:87
486
  msgid ""
487
  "Use appropriate checkbox above save/delete buttons if you wish to change "
488
  "slugs and update post types for existing posts."
489
  msgstr ""
490
 
491
- #: inc/post-types.php:88 inc/taxonomies.php:84
492
  msgid "Select: "
493
  msgstr ""
494
 
495
- #: inc/post-types.php:91 inc/taxonomies.php:88
496
  msgid "Select"
497
  msgstr ""
498
 
499
- #: inc/post-types.php:121
500
  msgid "Post Type Slug"
501
  msgstr ""
502
 
503
- #: inc/post-types.php:122
504
  msgid "(e.g. movie)"
505
  msgstr ""
506
 
507
- #: inc/post-types.php:123
508
  msgid ""
509
  "The post type name. Used to retrieve custom post type content. Should be "
510
  "short and unique"
511
  msgstr ""
512
 
513
- #: inc/post-types.php:134 inc/taxonomies.php:126
514
  msgid "Plural Label"
515
  msgstr ""
516
 
517
- #: inc/post-types.php:135
518
  msgid "(e.g. Movies)"
519
  msgstr ""
520
 
521
- #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
522
- #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
523
- #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
524
- #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
525
- #: inc/post-types.php:365
526
  msgid "Post type label. Used in the admin menu for displaying post types."
527
  msgstr ""
528
 
529
- #: inc/post-types.php:146 inc/taxonomies.php:135
530
  msgid "Singular Label"
531
  msgstr ""
532
 
533
- #: inc/post-types.php:147
534
  msgid "(e.g. Movie)"
535
  msgstr ""
536
 
537
- #: inc/post-types.php:148
538
  msgid ""
539
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
540
  "needed."
541
  msgstr ""
542
 
543
- #: inc/post-types.php:164
544
  msgid "Description"
545
  msgstr ""
546
 
547
- #: inc/post-types.php:165
548
  msgid ""
549
  "Custom Post Type Description. Describe what your custom post type is used "
550
  "for."
551
  msgstr ""
552
 
553
- #: inc/post-types.php:177
554
  msgid "Migrate posts to newly renamed post type?"
555
  msgstr ""
556
 
557
- #: inc/post-types.php:178
558
  msgid "Check this to migrate posts if and when renaming your post type."
559
  msgstr ""
560
 
561
- #: inc/post-types.php:187
562
  msgid "Save Post Type"
563
  msgstr ""
564
 
565
- #: inc/post-types.php:188
566
  msgid "Delete Post Type"
567
  msgstr ""
568
 
569
- #: inc/post-types.php:190
570
  msgid "Add Post Type"
571
  msgstr ""
572
 
573
- #: inc/post-types.php:201 inc/taxonomies.php:187
574
  msgid "Starter Notes"
575
  msgstr ""
576
 
577
- #: inc/post-types.php:204
578
  #, php-format
579
  msgid ""
580
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -583,7 +583,7 @@ msgid ""
583
  "revision, nav_menu_item."
584
  msgstr ""
585
 
586
- #: inc/post-types.php:205
587
  #, php-format
588
  msgid ""
589
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -592,7 +592,7 @@ msgid ""
592
  "post type name. Hover over the question mark for more details."
593
  msgstr ""
594
 
595
- #: inc/post-types.php:206
596
  #, php-format
597
  msgid ""
598
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -600,443 +600,430 @@ msgid ""
600
  "the content will still exist."
601
  msgstr ""
602
 
603
- #: inc/post-types.php:220 inc/taxonomies.php:208
604
  msgid "Menu Name"
605
  msgstr ""
606
 
607
- #: inc/post-types.php:221
608
  msgid "Custom menu name for your custom post type."
609
  msgstr ""
610
 
611
- #: inc/post-types.php:225
612
  msgid "(e.g. My Movies)"
613
  msgstr ""
614
 
615
- #: inc/post-types.php:232 inc/taxonomies.php:217
616
  msgid "All Items"
617
  msgstr ""
618
 
619
- #: inc/post-types.php:237
620
  msgid "(e.g. All Movies)"
621
  msgstr ""
622
 
623
- #: inc/post-types.php:244
624
  msgid "Add New"
625
  msgstr ""
626
 
627
- #: inc/post-types.php:249
628
  msgid "(e.g. Add New)"
629
  msgstr ""
630
 
631
- #: inc/post-types.php:256 inc/taxonomies.php:253
632
  msgid "Add New Item"
633
  msgstr ""
634
 
635
- #: inc/post-types.php:261
636
  msgid "(e.g. Add New Movie)"
637
  msgstr ""
638
 
639
- #: inc/post-types.php:273
640
  msgid "(e.g. Edit)"
641
  msgstr ""
642
 
643
- #: inc/post-types.php:280 inc/taxonomies.php:226
644
  msgid "Edit Item"
645
  msgstr ""
646
 
647
- #: inc/post-types.php:285
648
  msgid "(e.g. Edit Movie)"
649
  msgstr ""
650
 
651
- #: inc/post-types.php:292
652
  msgid "New Item"
653
  msgstr ""
654
 
655
- #: inc/post-types.php:297
656
  msgid "(e.g. New Movie)"
657
  msgstr ""
658
 
659
- #: inc/post-types.php:304
660
  msgid "View"
661
  msgstr ""
662
 
663
- #: inc/post-types.php:309
664
  msgid "(e.g. View)"
665
  msgstr ""
666
 
667
- #: inc/post-types.php:316 inc/taxonomies.php:235
668
  msgid "View Item"
669
  msgstr ""
670
 
671
- #: inc/post-types.php:321
672
  msgid "(e.g. View Movie)"
673
  msgstr ""
674
 
675
- #: inc/post-types.php:328
676
  msgid "Search Item"
677
  msgstr ""
678
 
679
- #: inc/post-types.php:333
680
  msgid "(e.g. Search Movie)"
681
  msgstr ""
682
 
683
- #: inc/post-types.php:340
684
  msgid "Not Found"
685
  msgstr ""
686
 
687
- #: inc/post-types.php:345
688
  msgid "(e.g. No Movies found)"
689
  msgstr ""
690
 
691
- #: inc/post-types.php:352
692
  msgid "Not Found in Trash"
693
  msgstr ""
694
 
695
- #: inc/post-types.php:357
696
  msgid "(e.g. No Movies found in Trash)"
697
  msgstr ""
698
 
699
- #: inc/post-types.php:364
700
  msgid "Parent"
701
  msgstr ""
702
 
703
- #: inc/post-types.php:369
704
  msgid "(e.g. Parent Movie)"
705
  msgstr ""
706
 
707
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
708
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
709
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
710
- #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
711
- #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
712
- #: inc/taxonomies.php:466 tests/CPTUI-Admin-UI-Inputs-Test.php:105
713
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
714
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
715
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
716
  msgid "False"
717
  msgstr ""
718
 
719
- #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
720
- #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
721
- #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
722
- #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
723
- #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
724
- #: inc/taxonomies.php:467 tests/CPTUI-Admin-UI-Inputs-Test.php:106
725
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
726
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
727
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
728
  msgid "True"
729
  msgstr ""
730
 
731
- #: inc/post-types.php:392 tests/CPTUI-Admin-UI-Inputs-Test.php:114
732
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
733
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
734
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
735
  msgid "Public"
736
  msgstr ""
737
 
738
- #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
739
- #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
740
- #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
741
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
742
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
743
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
744
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:242
745
  msgid "(default: True)"
746
  msgstr ""
747
 
748
- #: inc/post-types.php:394
749
  msgid ""
750
  "Whether posts of this type should be shown in the admin UI and is publicly "
751
  "queryable."
752
  msgstr ""
753
 
754
- #: inc/post-types.php:412 inc/taxonomies.php:372
755
  msgid "Show UI"
756
  msgstr ""
757
 
758
- #: inc/post-types.php:414
759
  msgid "Whether to generate a default UI for managing this post type."
760
  msgstr ""
761
 
762
- #: inc/post-types.php:422
763
  msgid "Has Archive"
764
  msgstr ""
765
 
766
- #: inc/post-types.php:423
767
  msgid "Whether the post type will have a post type archive URL."
768
  msgstr ""
769
 
770
- #: inc/post-types.php:424
771
  msgid "If left blank, the archive slug will default to the post type slug."
772
  msgstr ""
773
 
774
- #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
775
- #: inc/taxonomies.php:356 inc/taxonomies.php:476
776
  msgid "(default: False)"
777
  msgstr ""
778
 
779
- #: inc/post-types.php:450
780
  msgid "Slug to be used for archive URL."
781
  msgstr ""
782
 
783
- #: inc/post-types.php:470
784
  msgid "Exclude From Search"
785
  msgstr ""
786
 
787
- #: inc/post-types.php:472
788
  msgid ""
789
  "Whether to exclude posts with this post type from front end search results."
790
  msgstr ""
791
 
792
- #: inc/post-types.php:483
793
  msgid "Capability Type"
794
  msgstr ""
795
 
796
- #: inc/post-types.php:484
797
  msgid "The post type to use for checking read, edit, and delete capabilities"
798
  msgstr ""
799
 
800
- #: inc/post-types.php:501 inc/taxonomies.php:355
801
  msgid "Hierarchical"
802
  msgstr ""
803
 
804
- #: inc/post-types.php:503
805
  msgid "Whether the post type can have parent-child relationships"
806
  msgstr ""
807
 
808
- #: inc/post-types.php:521 inc/taxonomies.php:415
809
  msgid "Rewrite"
810
  msgstr ""
811
 
812
- #: inc/post-types.php:523
813
  msgid "Whether or not WordPress should use rewrites for this post type"
814
  msgstr ""
815
 
816
- #: inc/post-types.php:534 inc/taxonomies.php:426
817
  msgid "Custom Rewrite Slug"
818
  msgstr ""
819
 
820
- #: inc/post-types.php:535
821
  msgid "(default: post type slug)"
822
  msgstr ""
823
 
824
- #: inc/post-types.php:536
825
  msgid "Custom post type slug to use instead of the default."
826
  msgstr ""
827
 
828
- #: inc/post-types.php:553
829
  msgid "With Front"
830
  msgstr ""
831
 
832
- #: inc/post-types.php:555 inc/taxonomies.php:443
833
  msgid "Should the permastruct be prepended with the front base."
834
  msgstr ""
835
 
836
- #: inc/post-types.php:573 inc/taxonomies.php:389
837
  msgid "Query Var"
838
  msgstr ""
839
 
840
- #: inc/post-types.php:575
841
  msgid "Sets the query_var key for this post type."
842
  msgstr ""
843
 
844
- #: inc/post-types.php:583
845
  msgid "Menu Position"
846
  msgstr ""
847
 
848
- #: inc/post-types.php:584
849
  msgid ""
850
  "The position in the menu order the post type should appear. show_in_menu "
851
  "must be true."
852
  msgstr ""
853
 
854
- #: inc/post-types.php:585
855
  msgid ""
856
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
857
- "register_post_type#Parameters\">Available options</a> in the \"menu_position"
858
- "\" section. Range of 5-100"
859
  msgstr ""
860
 
861
- #: inc/post-types.php:600
862
  msgid "Show in Menu"
863
  msgstr ""
864
 
865
- #: inc/post-types.php:601
866
  msgid ""
867
  "Whether to show the post type in the admin menu and where to show that menu."
868
  msgstr ""
869
 
870
- #: inc/post-types.php:602
871
  msgid ""
872
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
873
  "php\" is indicated for second input, post type will be sub menu of that."
874
  msgstr ""
875
 
876
- #: inc/post-types.php:628
877
  msgid "Top-level page file name to make post type a sub-menu of."
878
  msgstr ""
879
 
880
- #: inc/post-types.php:640
881
  msgid "Menu Icon"
882
  msgstr ""
883
 
884
- #: inc/post-types.php:641
885
  msgid "(Full URL for icon or Dashicon class)"
886
  msgstr ""
887
 
888
- #: inc/post-types.php:642
889
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
890
  msgstr ""
891
 
892
- #: inc/post-types.php:655
893
  msgid "Title"
894
  msgstr ""
895
 
896
- #: inc/post-types.php:656
897
  msgid "Adds the title meta box when creating content for this custom post type"
898
  msgstr ""
899
 
900
- #: inc/post-types.php:670
901
  msgid "Editor"
902
  msgstr ""
903
 
904
- #: inc/post-types.php:671
905
  msgid ""
906
  "Adds the content editor meta box when creating content for this custom post "
907
  "type"
908
  msgstr ""
909
 
910
- #: inc/post-types.php:685
911
  msgid "Excerpt"
912
  msgstr ""
913
 
914
- #: inc/post-types.php:686
915
  msgid ""
916
  "Adds the excerpt meta box when creating content for this custom post type"
917
  msgstr ""
918
 
919
- #: inc/post-types.php:700
920
  msgid "Trackbacks"
921
  msgstr ""
922
 
923
- #: inc/post-types.php:701
924
  msgid ""
925
  "Adds the trackbacks meta box when creating content for this custom post type"
926
  msgstr ""
927
 
928
- #: inc/post-types.php:715
929
  msgid "Custom Fields"
930
  msgstr ""
931
 
932
- #: inc/post-types.php:716
933
  msgid ""
934
  "Adds the custom fields meta box when creating content for this custom post "
935
  "type"
936
  msgstr ""
937
 
938
- #: inc/post-types.php:730
939
  msgid "Comments"
940
  msgstr ""
941
 
942
- #: inc/post-types.php:731
943
  msgid ""
944
  "Adds the comments meta box when creating content for this custom post type"
945
  msgstr ""
946
 
947
- #: inc/post-types.php:745
948
  msgid "Revisions"
949
  msgstr ""
950
 
951
- #: inc/post-types.php:746
952
  msgid ""
953
  "Adds the revisions meta box when creating content for this custom post type"
954
  msgstr ""
955
 
956
- #: inc/post-types.php:760
957
  msgid "Featured Image"
958
  msgstr ""
959
 
960
- #: inc/post-types.php:761
961
  msgid ""
962
  "Adds the featured image meta box when creating content for this custom post "
963
  "type"
964
  msgstr ""
965
 
966
- #: inc/post-types.php:775
967
  msgid "Author"
968
  msgstr ""
969
 
970
- #: inc/post-types.php:776
971
  msgid ""
972
  "Adds the author meta box when creating content for this custom post type"
973
  msgstr ""
974
 
975
- #: inc/post-types.php:790
976
  msgid "Page Attributes"
977
  msgstr ""
978
 
979
- #: inc/post-types.php:791
980
  msgid ""
981
  "Adds the page attribute meta box when creating content for this custom post "
982
  "type"
983
  msgstr ""
984
 
985
- #: inc/post-types.php:805
986
  msgid "Post Formats"
987
  msgstr ""
988
 
989
- #: inc/post-types.php:806
990
  msgid "Adds post format support"
991
  msgstr ""
992
 
993
- #: inc/post-types.php:811
994
  msgid "Use the option below to explicitly set \"supports\" to false."
995
  msgstr ""
996
 
997
- #: inc/post-types.php:819
998
  msgid "None"
999
  msgstr ""
1000
 
1001
- #: inc/post-types.php:820
1002
  msgid "Remove all support features"
1003
  msgstr ""
1004
 
1005
- #: inc/post-types.php:826
1006
  msgid "Custom \"Supports\""
1007
  msgstr ""
1008
 
1009
- #: inc/post-types.php:827
1010
  msgid ""
1011
  "Use this input to register custom \"supports\" values, separated by commas."
1012
  msgstr ""
1013
 
1014
- #: inc/post-types.php:833
1015
  msgid "Provide custom support slugs here."
1016
  msgstr ""
1017
 
1018
- #: inc/post-types.php:839
1019
  msgid "Built-in Taxonomies"
1020
  msgstr ""
1021
 
1022
- #: inc/post-types.php:868 inc/taxonomies.php:169
1023
  #, php-format
1024
  msgid "Adds %s support"
1025
  msgstr ""
1026
 
1027
- #: inc/post-types.php:967
1028
  msgid "Please provide a post type to delete"
1029
  msgstr ""
1030
 
1031
- #: inc/post-types.php:1027
1032
  msgid "Please provide a post type name"
1033
  msgstr ""
1034
 
1035
- #: inc/post-types.php:1051
1036
  msgid "Please do not use quotes in post type names or rewrite slugs"
1037
  msgstr ""
1038
 
1039
- #: inc/post-types.php:1058
1040
  #, php-format
1041
  msgid "Please choose a different post type name. %s is already registered."
1042
  msgstr ""
@@ -1197,60 +1184,60 @@ msgid ""
1197
  "as necessary."
1198
  msgstr ""
1199
 
1200
- #: inc/taxonomies.php:82
1201
  msgid ""
1202
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1203
  "registers a new taxonomy entry for your install."
1204
  msgstr ""
1205
 
1206
- #: inc/taxonomies.php:115
1207
  msgid "Taxonomy Slug"
1208
  msgstr ""
1209
 
1210
- #: inc/taxonomies.php:116
1211
  msgid "(e.g. actor)"
1212
  msgstr ""
1213
 
1214
- #: inc/taxonomies.php:117
1215
  msgid ""
1216
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1217
  "and unique"
1218
  msgstr ""
1219
 
1220
- #: inc/taxonomies.php:125 inc/taxonomies.php:207
1221
  msgid "(e.g. Actors)"
1222
  msgstr ""
1223
 
1224
- #: inc/taxonomies.php:127
1225
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1226
  msgstr ""
1227
 
1228
- #: inc/taxonomies.php:134
1229
  msgid "(e.g. Actor)"
1230
  msgstr ""
1231
 
1232
- #: inc/taxonomies.php:136
1233
  msgid ""
1234
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1235
  msgstr ""
1236
 
1237
- #: inc/taxonomies.php:139
1238
  msgid "Attach to Post Type"
1239
  msgstr ""
1240
 
1241
- #: inc/taxonomies.php:178
1242
  msgid "Save Taxonomy"
1243
  msgstr ""
1244
 
1245
- #: inc/taxonomies.php:179
1246
  msgid "Delete Taxonomy"
1247
  msgstr ""
1248
 
1249
- #: inc/taxonomies.php:181
1250
  msgid "Add Taxonomy"
1251
  msgstr ""
1252
 
1253
- #: inc/taxonomies.php:190
1254
  #, php-format
1255
  msgid ""
1256
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1258,7 +1245,7 @@ msgid ""
1258
  "letters that do not have accents."
1259
  msgstr ""
1260
 
1261
- #: inc/taxonomies.php:191
1262
  #, php-format
1263
  msgid ""
1264
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1268,7 +1255,7 @@ msgid ""
1268
  "marks for more details."
1269
  msgstr ""
1270
 
1271
- #: inc/taxonomies.php:192
1272
  #, php-format
1273
  msgid ""
1274
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1277,201 +1264,194 @@ msgid ""
1277
  "terms in the database."
1278
  msgstr ""
1279
 
1280
- #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1281
- #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1282
- #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1283
- #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1284
- #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1285
  msgid ""
1286
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1287
  msgstr ""
1288
 
1289
- #: inc/taxonomies.php:216
1290
  msgid "(e.g. All Actors)"
1291
  msgstr ""
1292
 
1293
- #: inc/taxonomies.php:225
1294
  msgid "(e.g. Edit Actor)"
1295
  msgstr ""
1296
 
1297
- #: inc/taxonomies.php:234
1298
  msgid "(e.g. View Actor)"
1299
  msgstr ""
1300
 
1301
- #: inc/taxonomies.php:243
1302
  msgid "(e.g. Update Actor Name)"
1303
  msgstr ""
1304
 
1305
- #: inc/taxonomies.php:244
1306
  msgid "Update Item Name"
1307
  msgstr ""
1308
 
1309
- #: inc/taxonomies.php:252
1310
  msgid "(e.g. Add New Actor)"
1311
  msgstr ""
1312
 
1313
- #: inc/taxonomies.php:261
1314
  msgid "(e.g. New Actor Name)"
1315
  msgstr ""
1316
 
1317
- #: inc/taxonomies.php:262
1318
  msgid "New Item Name"
1319
  msgstr ""
1320
 
1321
- #: inc/taxonomies.php:270
1322
  msgid "(e.g. Parent Actor)"
1323
  msgstr ""
1324
 
1325
- #: inc/taxonomies.php:271
1326
  msgid "Parent Item"
1327
  msgstr ""
1328
 
1329
- #: inc/taxonomies.php:279
1330
  msgid "(e.g. Parent Actor:)"
1331
  msgstr ""
1332
 
1333
- #: inc/taxonomies.php:280
1334
  msgid "Parent Item Colon"
1335
  msgstr ""
1336
 
1337
- #: inc/taxonomies.php:288
1338
  msgid "(e.g. Search Actors)"
1339
  msgstr ""
1340
 
1341
- #: inc/taxonomies.php:289
1342
  msgid "Search Items"
1343
  msgstr ""
1344
 
1345
- #: inc/taxonomies.php:297
1346
  msgid "(e.g. Popular Actors)"
1347
  msgstr ""
1348
 
1349
- #: inc/taxonomies.php:298
1350
  msgid "Popular Items"
1351
  msgstr ""
1352
 
1353
- #: inc/taxonomies.php:306
1354
  msgid "(e.g. Separate actors with commas)"
1355
  msgstr ""
1356
 
1357
- #: inc/taxonomies.php:307
1358
  msgid "Separate Items with Commas"
1359
  msgstr ""
1360
 
1361
- #: inc/taxonomies.php:315
1362
  msgid "(e.g. Add or remove actors)"
1363
  msgstr ""
1364
 
1365
- #: inc/taxonomies.php:316
1366
  msgid "Add or Remove Items"
1367
  msgstr ""
1368
 
1369
- #: inc/taxonomies.php:324
1370
  msgid "(e.g. Choose from the most used actors)"
1371
  msgstr ""
1372
 
1373
- #: inc/taxonomies.php:325
1374
  msgid "Choose From Most Used"
1375
  msgstr ""
1376
 
1377
- #: inc/taxonomies.php:333
1378
  msgid "(e.g. No actors found)"
1379
  msgstr ""
1380
 
1381
- #: inc/taxonomies.php:334
1382
  msgid "Not found"
1383
  msgstr ""
1384
 
1385
- #: inc/taxonomies.php:357
1386
  msgid "Whether the taxonomy can have parent-child relationships"
1387
  msgstr ""
1388
 
1389
- #: inc/taxonomies.php:374
1390
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1391
  msgstr ""
1392
 
1393
- #: inc/taxonomies.php:391
1394
  msgid "Sets the query_var key for this taxonomy."
1395
  msgstr ""
1396
 
1397
- #: inc/taxonomies.php:399
1398
  msgid "(default: none). Query Var needs to be true to use."
1399
  msgstr ""
1400
 
1401
- #: inc/taxonomies.php:400
1402
  msgid "Custom Query Var String"
1403
  msgstr ""
1404
 
1405
- #: inc/taxonomies.php:401
1406
  msgid "Sets a custom query_var slug for this taxonomy."
1407
  msgstr ""
1408
 
1409
- #: inc/taxonomies.php:417
1410
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1411
  msgstr ""
1412
 
1413
- #: inc/taxonomies.php:425
1414
  msgid "(default: taxonomy name)"
1415
  msgstr ""
1416
 
1417
- #: inc/taxonomies.php:427
1418
  msgid "Custom taxonomy rewrite slug."
1419
  msgstr ""
1420
 
1421
- #: inc/taxonomies.php:441
1422
  msgid "Rewrite With Front"
1423
  msgstr ""
1424
 
1425
- #: inc/taxonomies.php:442
1426
  msgid "(default: true)"
1427
  msgstr ""
1428
 
1429
- #: inc/taxonomies.php:458
1430
  msgid "Rewrite Hierarchical"
1431
  msgstr ""
1432
 
1433
- #: inc/taxonomies.php:459
1434
  msgid "(default: false)"
1435
  msgstr ""
1436
 
1437
- #: inc/taxonomies.php:460
1438
  msgid "Should the permastruct allow hierarchical urls."
1439
  msgstr ""
1440
 
1441
- #: inc/taxonomies.php:475
1442
  msgid "Show Admin Column"
1443
  msgstr ""
1444
 
1445
- #: inc/taxonomies.php:477
1446
  msgid ""
1447
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1448
  "types."
1449
  msgstr ""
1450
 
1451
- #: inc/taxonomies.php:575
1452
  msgid "Please provide a taxonomy to delete"
1453
  msgstr ""
1454
 
1455
- #: inc/taxonomies.php:626
1456
  msgid "Please provide a taxonomy name"
1457
  msgstr ""
1458
 
1459
- #: inc/taxonomies.php:642
1460
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1461
  msgstr ""
1462
 
1463
- #: inc/taxonomies.php:648
1464
  #, php-format
1465
  msgid "Please choose a different taxonomy name. %s is already used."
1466
  msgstr ""
1467
 
1468
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:116
1469
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:158
1470
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:201
1471
- #: tests/CPTUI-Admin-UI-Inputs-Test.php:243
1472
- msgid "Whether posts of this type should be shown in the admin UI"
1473
- msgstr ""
1474
-
1475
  #. Plugin URI of the plugin/theme
1476
  msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1477
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Custom Post Type UI\n"
5
+ "Report-Msgid-Bugs-To: https://wordpress.org/plugins/custom-post-type-ui\n"
6
+ "POT-Creation-Date: 2015-08-11 11:35-0500\n"
7
  "PO-Revision-Date: 2015-05-19 18:37-0600\n"
8
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
9
  "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.2\n"
15
+ "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
20
  "X-Poedit-WPHeader: custom-post-type-ui.php\n"
 
21
  "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: tests\n"
23
+ "X-Poedit-SearchPathExcluded-1: *.js\n"
24
 
25
  #: custom-post-type-ui.php:60
26
  msgid "Custom Post Types"
189
  msgstr ""
190
 
191
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
192
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:377
193
+ #: inc/taxonomies.php:343
194
  msgid "Settings"
195
  msgstr ""
196
 
198
  msgid "Help"
199
  msgstr ""
200
 
201
+ #: custom-post-type-ui.php:651
202
  #, php-format
203
  msgid "%s has been successfully added"
204
  msgstr ""
205
 
206
+ #: custom-post-type-ui.php:653
207
  #, php-format
208
  msgid "%s has failed to be added"
209
  msgstr ""
210
 
211
+ #: custom-post-type-ui.php:657
212
  #, php-format
213
  msgid "%s has been successfully updated"
214
  msgstr ""
215
 
216
+ #: custom-post-type-ui.php:659
217
  #, php-format
218
  msgid "%s has failed to be updated"
219
  msgstr ""
220
 
221
+ #: custom-post-type-ui.php:663
222
  #, php-format
223
  msgid "%s has been successfully deleted"
224
  msgstr ""
225
 
226
+ #: custom-post-type-ui.php:665
227
  #, php-format
228
  msgid "%s has failed to be deleted"
229
  msgstr ""
230
 
231
+ #: custom-post-type-ui.php:669
232
  #, php-format
233
  msgid "%s has been successfully imported"
234
  msgstr ""
235
 
236
+ #: custom-post-type-ui.php:671
237
  #, php-format
238
  msgid "%s has failed to be imported"
239
  msgstr ""
240
 
241
+ #: custom-post-type-ui.php:754 custom-post-type-ui.php:771
242
  #, php-format
243
  msgid "Add new %s"
244
  msgstr ""
245
 
246
+ #: custom-post-type-ui.php:755 custom-post-type-ui.php:769
247
  #, php-format
248
  msgid "Edit %s"
249
  msgstr ""
250
 
251
+ #: custom-post-type-ui.php:756
252
  #, php-format
253
  msgid "New %s"
254
  msgstr ""
255
 
256
+ #: custom-post-type-ui.php:757
257
  #, php-format
258
  msgid "View %s"
259
  msgstr ""
260
 
261
+ #: custom-post-type-ui.php:758 custom-post-type-ui.php:766
262
  #, php-format
263
  msgid "All %s"
264
  msgstr ""
265
 
266
+ #: custom-post-type-ui.php:759 custom-post-type-ui.php:764
267
  #, php-format
268
  msgid "Search %s"
269
  msgstr ""
270
 
271
+ #: custom-post-type-ui.php:760
272
  #, php-format
273
  msgid "No %s found."
274
  msgstr ""
275
 
276
+ #: custom-post-type-ui.php:761
277
  #, php-format
278
  msgid "No %s found in trash."
279
  msgstr ""
280
 
281
+ #: custom-post-type-ui.php:765
282
  #, php-format
283
  msgid "Popular %s"
284
  msgstr ""
285
 
286
+ #: custom-post-type-ui.php:767
287
  #, php-format
288
  msgid "Parent %s"
289
  msgstr ""
290
 
291
+ #: custom-post-type-ui.php:768
292
  #, php-format
293
  msgid "Parent %s:"
294
  msgstr ""
295
 
296
+ #: custom-post-type-ui.php:770
297
  #, php-format
298
  msgid "Update %s"
299
  msgstr ""
300
 
301
+ #: custom-post-type-ui.php:772
302
  #, php-format
303
  msgid "New %s name"
304
  msgstr ""
305
 
306
+ #: custom-post-type-ui.php:773
307
  #, php-format
308
  msgid "Separate %s with commas"
309
  msgstr ""
310
 
311
+ #: custom-post-type-ui.php:774
312
  #, php-format
313
  msgid "Add or remove %s"
314
  msgstr ""
315
 
316
+ #: custom-post-type-ui.php:775
317
  #, php-format
318
  msgid "Choose from the most used %s"
319
  msgstr ""
447
  msgid "Post Type"
448
  msgstr ""
449
 
450
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:648
451
  msgid "Supports"
452
  msgstr ""
453
 
454
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
455
+ #: inc/listings.php:225 inc/post-types.php:215 inc/taxonomies.php:201
456
  msgid "Labels"
457
  msgstr ""
458
 
459
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:271
460
  msgid "Edit"
461
  msgstr ""
462
 
476
  msgid "Are you sure you want to delete this?"
477
  msgstr ""
478
 
479
+ #: inc/post-types.php:89
480
  msgid ""
481
  "DO NOT EDIT the post type slug unless necessary. Changing that value "
482
  "registers a new post type entry for your install."
483
  msgstr ""
484
 
485
+ #: inc/post-types.php:90
486
  msgid ""
487
  "Use appropriate checkbox above save/delete buttons if you wish to change "
488
  "slugs and update post types for existing posts."
489
  msgstr ""
490
 
491
+ #: inc/post-types.php:91 inc/taxonomies.php:87
492
  msgid "Select: "
493
  msgstr ""
494
 
495
+ #: inc/post-types.php:94 inc/taxonomies.php:91
496
  msgid "Select"
497
  msgstr ""
498
 
499
+ #: inc/post-types.php:124
500
  msgid "Post Type Slug"
501
  msgstr ""
502
 
503
+ #: inc/post-types.php:125
504
  msgid "(e.g. movie)"
505
  msgstr ""
506
 
507
+ #: inc/post-types.php:126
508
  msgid ""
509
  "The post type name. Used to retrieve custom post type content. Should be "
510
  "short and unique"
511
  msgstr ""
512
 
513
+ #: inc/post-types.php:137 inc/taxonomies.php:129
514
  msgid "Plural Label"
515
  msgstr ""
516
 
517
+ #: inc/post-types.php:138
518
  msgid "(e.g. Movies)"
519
  msgstr ""
520
 
521
+ #: inc/post-types.php:139 inc/post-types.php:236 inc/post-types.php:248
522
+ #: inc/post-types.php:260 inc/post-types.php:272 inc/post-types.php:284
523
+ #: inc/post-types.php:296 inc/post-types.php:308 inc/post-types.php:320
524
+ #: inc/post-types.php:332 inc/post-types.php:344 inc/post-types.php:356
525
+ #: inc/post-types.php:368
526
  msgid "Post type label. Used in the admin menu for displaying post types."
527
  msgstr ""
528
 
529
+ #: inc/post-types.php:149 inc/taxonomies.php:138
530
  msgid "Singular Label"
531
  msgstr ""
532
 
533
+ #: inc/post-types.php:150
534
  msgid "(e.g. Movie)"
535
  msgstr ""
536
 
537
+ #: inc/post-types.php:151
538
  msgid ""
539
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
540
  "needed."
541
  msgstr ""
542
 
543
+ #: inc/post-types.php:167
544
  msgid "Description"
545
  msgstr ""
546
 
547
+ #: inc/post-types.php:168
548
  msgid ""
549
  "Custom Post Type Description. Describe what your custom post type is used "
550
  "for."
551
  msgstr ""
552
 
553
+ #: inc/post-types.php:180
554
  msgid "Migrate posts to newly renamed post type?"
555
  msgstr ""
556
 
557
+ #: inc/post-types.php:181
558
  msgid "Check this to migrate posts if and when renaming your post type."
559
  msgstr ""
560
 
561
+ #: inc/post-types.php:190
562
  msgid "Save Post Type"
563
  msgstr ""
564
 
565
+ #: inc/post-types.php:191
566
  msgid "Delete Post Type"
567
  msgstr ""
568
 
569
+ #: inc/post-types.php:193
570
  msgid "Add Post Type"
571
  msgstr ""
572
 
573
+ #: inc/post-types.php:204 inc/taxonomies.php:190
574
  msgid "Starter Notes"
575
  msgstr ""
576
 
577
+ #: inc/post-types.php:207
578
  #, php-format
579
  msgid ""
580
  "Post Type names should have %smax 20 characters%s, and only contain "
583
  "revision, nav_menu_item."
584
  msgstr ""
585
 
586
+ #: inc/post-types.php:208
587
  #, php-format
588
  msgid ""
589
  "If you are unfamiliar with the advanced post type settings, just fill in the "
592
  "post type name. Hover over the question mark for more details."
593
  msgstr ""
594
 
595
+ #: inc/post-types.php:209
596
  #, php-format
597
  msgid ""
598
  "Deleting custom post types will %sNOT%s delete any content into the database "
600
  "the content will still exist."
601
  msgstr ""
602
 
603
+ #: inc/post-types.php:223 inc/taxonomies.php:211
604
  msgid "Menu Name"
605
  msgstr ""
606
 
607
+ #: inc/post-types.php:224
608
  msgid "Custom menu name for your custom post type."
609
  msgstr ""
610
 
611
+ #: inc/post-types.php:228
612
  msgid "(e.g. My Movies)"
613
  msgstr ""
614
 
615
+ #: inc/post-types.php:235 inc/taxonomies.php:220
616
  msgid "All Items"
617
  msgstr ""
618
 
619
+ #: inc/post-types.php:240
620
  msgid "(e.g. All Movies)"
621
  msgstr ""
622
 
623
+ #: inc/post-types.php:247
624
  msgid "Add New"
625
  msgstr ""
626
 
627
+ #: inc/post-types.php:252
628
  msgid "(e.g. Add New)"
629
  msgstr ""
630
 
631
+ #: inc/post-types.php:259 inc/taxonomies.php:256
632
  msgid "Add New Item"
633
  msgstr ""
634
 
635
+ #: inc/post-types.php:264
636
  msgid "(e.g. Add New Movie)"
637
  msgstr ""
638
 
639
+ #: inc/post-types.php:276
640
  msgid "(e.g. Edit)"
641
  msgstr ""
642
 
643
+ #: inc/post-types.php:283 inc/taxonomies.php:229
644
  msgid "Edit Item"
645
  msgstr ""
646
 
647
+ #: inc/post-types.php:288
648
  msgid "(e.g. Edit Movie)"
649
  msgstr ""
650
 
651
+ #: inc/post-types.php:295
652
  msgid "New Item"
653
  msgstr ""
654
 
655
+ #: inc/post-types.php:300
656
  msgid "(e.g. New Movie)"
657
  msgstr ""
658
 
659
+ #: inc/post-types.php:307
660
  msgid "View"
661
  msgstr ""
662
 
663
+ #: inc/post-types.php:312
664
  msgid "(e.g. View)"
665
  msgstr ""
666
 
667
+ #: inc/post-types.php:319 inc/taxonomies.php:238
668
  msgid "View Item"
669
  msgstr ""
670
 
671
+ #: inc/post-types.php:324
672
  msgid "(e.g. View Movie)"
673
  msgstr ""
674
 
675
+ #: inc/post-types.php:331
676
  msgid "Search Item"
677
  msgstr ""
678
 
679
+ #: inc/post-types.php:336
680
  msgid "(e.g. Search Movie)"
681
  msgstr ""
682
 
683
+ #: inc/post-types.php:343
684
  msgid "Not Found"
685
  msgstr ""
686
 
687
+ #: inc/post-types.php:348
688
  msgid "(e.g. No Movies found)"
689
  msgstr ""
690
 
691
+ #: inc/post-types.php:355
692
  msgid "Not Found in Trash"
693
  msgstr ""
694
 
695
+ #: inc/post-types.php:360
696
  msgid "(e.g. No Movies found in Trash)"
697
  msgstr ""
698
 
699
+ #: inc/post-types.php:367
700
  msgid "Parent"
701
  msgstr ""
702
 
703
+ #: inc/post-types.php:372
704
  msgid "(e.g. Parent Movie)"
705
  msgstr ""
706
 
707
+ #: inc/post-types.php:386 inc/post-types.php:406 inc/post-types.php:432
708
+ #: inc/post-types.php:464 inc/post-types.php:495 inc/post-types.php:515
709
+ #: inc/post-types.php:547 inc/post-types.php:567 inc/post-types.php:610
710
+ #: inc/taxonomies.php:349 inc/taxonomies.php:366 inc/taxonomies.php:383
711
+ #: inc/taxonomies.php:409 inc/taxonomies.php:435 inc/taxonomies.php:452
712
+ #: inc/taxonomies.php:469
 
 
 
713
  msgid "False"
714
  msgstr ""
715
 
716
+ #: inc/post-types.php:387 inc/post-types.php:407 inc/post-types.php:433
717
+ #: inc/post-types.php:465 inc/post-types.php:496 inc/post-types.php:516
718
+ #: inc/post-types.php:548 inc/post-types.php:568 inc/post-types.php:611
719
+ #: inc/taxonomies.php:350 inc/taxonomies.php:367 inc/taxonomies.php:384
720
+ #: inc/taxonomies.php:410 inc/taxonomies.php:436 inc/taxonomies.php:453
721
+ #: inc/taxonomies.php:470
 
 
 
722
  msgid "True"
723
  msgstr ""
724
 
725
+ #: inc/post-types.php:395
 
 
 
726
  msgid "Public"
727
  msgstr ""
728
 
729
+ #: inc/post-types.php:396 inc/post-types.php:416 inc/post-types.php:525
730
+ #: inc/post-types.php:557 inc/post-types.php:577 inc/post-types.php:619
731
+ #: inc/taxonomies.php:376 inc/taxonomies.php:393 inc/taxonomies.php:419
 
 
 
 
732
  msgid "(default: True)"
733
  msgstr ""
734
 
735
+ #: inc/post-types.php:397
736
  msgid ""
737
  "Whether posts of this type should be shown in the admin UI and is publicly "
738
  "queryable."
739
  msgstr ""
740
 
741
+ #: inc/post-types.php:415 inc/taxonomies.php:375
742
  msgid "Show UI"
743
  msgstr ""
744
 
745
+ #: inc/post-types.php:417
746
  msgid "Whether to generate a default UI for managing this post type."
747
  msgstr ""
748
 
749
+ #: inc/post-types.php:425
750
  msgid "Has Archive"
751
  msgstr ""
752
 
753
+ #: inc/post-types.php:426
754
  msgid "Whether the post type will have a post type archive URL."
755
  msgstr ""
756
 
757
+ #: inc/post-types.php:427
758
  msgid "If left blank, the archive slug will default to the post type slug."
759
  msgstr ""
760
 
761
+ #: inc/post-types.php:441 inc/post-types.php:474 inc/post-types.php:505
762
+ #: inc/taxonomies.php:359 inc/taxonomies.php:479
763
  msgid "(default: False)"
764
  msgstr ""
765
 
766
+ #: inc/post-types.php:453
767
  msgid "Slug to be used for archive URL."
768
  msgstr ""
769
 
770
+ #: inc/post-types.php:473
771
  msgid "Exclude From Search"
772
  msgstr ""
773
 
774
+ #: inc/post-types.php:475
775
  msgid ""
776
  "Whether to exclude posts with this post type from front end search results."
777
  msgstr ""
778
 
779
+ #: inc/post-types.php:486
780
  msgid "Capability Type"
781
  msgstr ""
782
 
783
+ #: inc/post-types.php:487
784
  msgid "The post type to use for checking read, edit, and delete capabilities"
785
  msgstr ""
786
 
787
+ #: inc/post-types.php:504 inc/taxonomies.php:358
788
  msgid "Hierarchical"
789
  msgstr ""
790
 
791
+ #: inc/post-types.php:506
792
  msgid "Whether the post type can have parent-child relationships"
793
  msgstr ""
794
 
795
+ #: inc/post-types.php:524 inc/taxonomies.php:418
796
  msgid "Rewrite"
797
  msgstr ""
798
 
799
+ #: inc/post-types.php:526
800
  msgid "Whether or not WordPress should use rewrites for this post type"
801
  msgstr ""
802
 
803
+ #: inc/post-types.php:537 inc/taxonomies.php:429
804
  msgid "Custom Rewrite Slug"
805
  msgstr ""
806
 
807
+ #: inc/post-types.php:538
808
  msgid "(default: post type slug)"
809
  msgstr ""
810
 
811
+ #: inc/post-types.php:539
812
  msgid "Custom post type slug to use instead of the default."
813
  msgstr ""
814
 
815
+ #: inc/post-types.php:556
816
  msgid "With Front"
817
  msgstr ""
818
 
819
+ #: inc/post-types.php:558 inc/taxonomies.php:446
820
  msgid "Should the permastruct be prepended with the front base."
821
  msgstr ""
822
 
823
+ #: inc/post-types.php:576 inc/taxonomies.php:392
824
  msgid "Query Var"
825
  msgstr ""
826
 
827
+ #: inc/post-types.php:578
828
  msgid "Sets the query_var key for this post type."
829
  msgstr ""
830
 
831
+ #: inc/post-types.php:586
832
  msgid "Menu Position"
833
  msgstr ""
834
 
835
+ #: inc/post-types.php:587
836
  msgid ""
837
  "The position in the menu order the post type should appear. show_in_menu "
838
  "must be true."
839
  msgstr ""
840
 
841
+ #: inc/post-types.php:588
842
  msgid ""
843
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
844
+ "register_post_type#Parameters\" target=\"_blank\">Available options</a> in "
845
+ "the \"menu_position\" section. Range of 5-100"
846
  msgstr ""
847
 
848
+ #: inc/post-types.php:603
849
  msgid "Show in Menu"
850
  msgstr ""
851
 
852
+ #: inc/post-types.php:604
853
  msgid ""
854
  "Whether to show the post type in the admin menu and where to show that menu."
855
  msgstr ""
856
 
857
+ #: inc/post-types.php:605
858
  msgid ""
859
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
860
  "php\" is indicated for second input, post type will be sub menu of that."
861
  msgstr ""
862
 
863
+ #: inc/post-types.php:631
864
  msgid "Top-level page file name to make post type a sub-menu of."
865
  msgstr ""
866
 
867
+ #: inc/post-types.php:643
868
  msgid "Menu Icon"
869
  msgstr ""
870
 
871
+ #: inc/post-types.php:644
872
  msgid "(Full URL for icon or Dashicon class)"
873
  msgstr ""
874
 
875
+ #: inc/post-types.php:645
876
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
877
  msgstr ""
878
 
879
+ #: inc/post-types.php:658
880
  msgid "Title"
881
  msgstr ""
882
 
883
+ #: inc/post-types.php:659
884
  msgid "Adds the title meta box when creating content for this custom post type"
885
  msgstr ""
886
 
887
+ #: inc/post-types.php:673
888
  msgid "Editor"
889
  msgstr ""
890
 
891
+ #: inc/post-types.php:674
892
  msgid ""
893
  "Adds the content editor meta box when creating content for this custom post "
894
  "type"
895
  msgstr ""
896
 
897
+ #: inc/post-types.php:688
898
  msgid "Excerpt"
899
  msgstr ""
900
 
901
+ #: inc/post-types.php:689
902
  msgid ""
903
  "Adds the excerpt meta box when creating content for this custom post type"
904
  msgstr ""
905
 
906
+ #: inc/post-types.php:703
907
  msgid "Trackbacks"
908
  msgstr ""
909
 
910
+ #: inc/post-types.php:704
911
  msgid ""
912
  "Adds the trackbacks meta box when creating content for this custom post type"
913
  msgstr ""
914
 
915
+ #: inc/post-types.php:718
916
  msgid "Custom Fields"
917
  msgstr ""
918
 
919
+ #: inc/post-types.php:719
920
  msgid ""
921
  "Adds the custom fields meta box when creating content for this custom post "
922
  "type"
923
  msgstr ""
924
 
925
+ #: inc/post-types.php:733
926
  msgid "Comments"
927
  msgstr ""
928
 
929
+ #: inc/post-types.php:734
930
  msgid ""
931
  "Adds the comments meta box when creating content for this custom post type"
932
  msgstr ""
933
 
934
+ #: inc/post-types.php:748
935
  msgid "Revisions"
936
  msgstr ""
937
 
938
+ #: inc/post-types.php:749
939
  msgid ""
940
  "Adds the revisions meta box when creating content for this custom post type"
941
  msgstr ""
942
 
943
+ #: inc/post-types.php:763
944
  msgid "Featured Image"
945
  msgstr ""
946
 
947
+ #: inc/post-types.php:764
948
  msgid ""
949
  "Adds the featured image meta box when creating content for this custom post "
950
  "type"
951
  msgstr ""
952
 
953
+ #: inc/post-types.php:778
954
  msgid "Author"
955
  msgstr ""
956
 
957
+ #: inc/post-types.php:779
958
  msgid ""
959
  "Adds the author meta box when creating content for this custom post type"
960
  msgstr ""
961
 
962
+ #: inc/post-types.php:793
963
  msgid "Page Attributes"
964
  msgstr ""
965
 
966
+ #: inc/post-types.php:794
967
  msgid ""
968
  "Adds the page attribute meta box when creating content for this custom post "
969
  "type"
970
  msgstr ""
971
 
972
+ #: inc/post-types.php:808
973
  msgid "Post Formats"
974
  msgstr ""
975
 
976
+ #: inc/post-types.php:809
977
  msgid "Adds post format support"
978
  msgstr ""
979
 
980
+ #: inc/post-types.php:814
981
  msgid "Use the option below to explicitly set \"supports\" to false."
982
  msgstr ""
983
 
984
+ #: inc/post-types.php:822
985
  msgid "None"
986
  msgstr ""
987
 
988
+ #: inc/post-types.php:823
989
  msgid "Remove all support features"
990
  msgstr ""
991
 
992
+ #: inc/post-types.php:829
993
  msgid "Custom \"Supports\""
994
  msgstr ""
995
 
996
+ #: inc/post-types.php:830
997
  msgid ""
998
  "Use this input to register custom \"supports\" values, separated by commas."
999
  msgstr ""
1000
 
1001
+ #: inc/post-types.php:836
1002
  msgid "Provide custom support slugs here."
1003
  msgstr ""
1004
 
1005
+ #: inc/post-types.php:842
1006
  msgid "Built-in Taxonomies"
1007
  msgstr ""
1008
 
1009
+ #: inc/post-types.php:871 inc/taxonomies.php:172
1010
  #, php-format
1011
  msgid "Adds %s support"
1012
  msgstr ""
1013
 
1014
+ #: inc/post-types.php:977
1015
  msgid "Please provide a post type to delete"
1016
  msgstr ""
1017
 
1018
+ #: inc/post-types.php:1037
1019
  msgid "Please provide a post type name"
1020
  msgstr ""
1021
 
1022
+ #: inc/post-types.php:1061
1023
  msgid "Please do not use quotes in post type names or rewrite slugs"
1024
  msgstr ""
1025
 
1026
+ #: inc/post-types.php:1068
1027
  #, php-format
1028
  msgid "Please choose a different post type name. %s is already registered."
1029
  msgstr ""
1184
  "as necessary."
1185
  msgstr ""
1186
 
1187
+ #: inc/taxonomies.php:85
1188
  msgid ""
1189
  "DO NOT EDIT the taxonomy slug unless necessary. Changing that value "
1190
  "registers a new taxonomy entry for your install."
1191
  msgstr ""
1192
 
1193
+ #: inc/taxonomies.php:118
1194
  msgid "Taxonomy Slug"
1195
  msgstr ""
1196
 
1197
+ #: inc/taxonomies.php:119
1198
  msgid "(e.g. actor)"
1199
  msgstr ""
1200
 
1201
+ #: inc/taxonomies.php:120
1202
  msgid ""
1203
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1204
  "and unique"
1205
  msgstr ""
1206
 
1207
+ #: inc/taxonomies.php:128 inc/taxonomies.php:210
1208
  msgid "(e.g. Actors)"
1209
  msgstr ""
1210
 
1211
+ #: inc/taxonomies.php:130
1212
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1213
  msgstr ""
1214
 
1215
+ #: inc/taxonomies.php:137
1216
  msgid "(e.g. Actor)"
1217
  msgstr ""
1218
 
1219
+ #: inc/taxonomies.php:139
1220
  msgid ""
1221
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1222
  msgstr ""
1223
 
1224
+ #: inc/taxonomies.php:142
1225
  msgid "Attach to Post Type"
1226
  msgstr ""
1227
 
1228
+ #: inc/taxonomies.php:181
1229
  msgid "Save Taxonomy"
1230
  msgstr ""
1231
 
1232
+ #: inc/taxonomies.php:182
1233
  msgid "Delete Taxonomy"
1234
  msgstr ""
1235
 
1236
+ #: inc/taxonomies.php:184
1237
  msgid "Add Taxonomy"
1238
  msgstr ""
1239
 
1240
+ #: inc/taxonomies.php:193
1241
  #, php-format
1242
  msgid ""
1243
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1245
  "letters that do not have accents."
1246
  msgstr ""
1247
 
1248
+ #: inc/taxonomies.php:194
1249
  #, php-format
1250
  msgid ""
1251
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1255
  "marks for more details."
1256
  msgstr ""
1257
 
1258
+ #: inc/taxonomies.php:195
1259
  #, php-format
1260
  msgid ""
1261
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1264
  "terms in the database."
1265
  msgstr ""
1266
 
1267
+ #: inc/taxonomies.php:212 inc/taxonomies.php:221 inc/taxonomies.php:230
1268
+ #: inc/taxonomies.php:239 inc/taxonomies.php:248 inc/taxonomies.php:257
1269
+ #: inc/taxonomies.php:266 inc/taxonomies.php:275 inc/taxonomies.php:284
1270
+ #: inc/taxonomies.php:293 inc/taxonomies.php:302 inc/taxonomies.php:311
1271
+ #: inc/taxonomies.php:320 inc/taxonomies.php:329 inc/taxonomies.php:338
1272
  msgid ""
1273
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1274
  msgstr ""
1275
 
1276
+ #: inc/taxonomies.php:219
1277
  msgid "(e.g. All Actors)"
1278
  msgstr ""
1279
 
1280
+ #: inc/taxonomies.php:228
1281
  msgid "(e.g. Edit Actor)"
1282
  msgstr ""
1283
 
1284
+ #: inc/taxonomies.php:237
1285
  msgid "(e.g. View Actor)"
1286
  msgstr ""
1287
 
1288
+ #: inc/taxonomies.php:246
1289
  msgid "(e.g. Update Actor Name)"
1290
  msgstr ""
1291
 
1292
+ #: inc/taxonomies.php:247
1293
  msgid "Update Item Name"
1294
  msgstr ""
1295
 
1296
+ #: inc/taxonomies.php:255
1297
  msgid "(e.g. Add New Actor)"
1298
  msgstr ""
1299
 
1300
+ #: inc/taxonomies.php:264
1301
  msgid "(e.g. New Actor Name)"
1302
  msgstr ""
1303
 
1304
+ #: inc/taxonomies.php:265
1305
  msgid "New Item Name"
1306
  msgstr ""
1307
 
1308
+ #: inc/taxonomies.php:273
1309
  msgid "(e.g. Parent Actor)"
1310
  msgstr ""
1311
 
1312
+ #: inc/taxonomies.php:274
1313
  msgid "Parent Item"
1314
  msgstr ""
1315
 
1316
+ #: inc/taxonomies.php:282
1317
  msgid "(e.g. Parent Actor:)"
1318
  msgstr ""
1319
 
1320
+ #: inc/taxonomies.php:283
1321
  msgid "Parent Item Colon"
1322
  msgstr ""
1323
 
1324
+ #: inc/taxonomies.php:291
1325
  msgid "(e.g. Search Actors)"
1326
  msgstr ""
1327
 
1328
+ #: inc/taxonomies.php:292
1329
  msgid "Search Items"
1330
  msgstr ""
1331
 
1332
+ #: inc/taxonomies.php:300
1333
  msgid "(e.g. Popular Actors)"
1334
  msgstr ""
1335
 
1336
+ #: inc/taxonomies.php:301
1337
  msgid "Popular Items"
1338
  msgstr ""
1339
 
1340
+ #: inc/taxonomies.php:309
1341
  msgid "(e.g. Separate actors with commas)"
1342
  msgstr ""
1343
 
1344
+ #: inc/taxonomies.php:310
1345
  msgid "Separate Items with Commas"
1346
  msgstr ""
1347
 
1348
+ #: inc/taxonomies.php:318
1349
  msgid "(e.g. Add or remove actors)"
1350
  msgstr ""
1351
 
1352
+ #: inc/taxonomies.php:319
1353
  msgid "Add or Remove Items"
1354
  msgstr ""
1355
 
1356
+ #: inc/taxonomies.php:327
1357
  msgid "(e.g. Choose from the most used actors)"
1358
  msgstr ""
1359
 
1360
+ #: inc/taxonomies.php:328
1361
  msgid "Choose From Most Used"
1362
  msgstr ""
1363
 
1364
+ #: inc/taxonomies.php:336
1365
  msgid "(e.g. No actors found)"
1366
  msgstr ""
1367
 
1368
+ #: inc/taxonomies.php:337
1369
  msgid "Not found"
1370
  msgstr ""
1371
 
1372
+ #: inc/taxonomies.php:360
1373
  msgid "Whether the taxonomy can have parent-child relationships"
1374
  msgstr ""
1375
 
1376
+ #: inc/taxonomies.php:377
1377
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1378
  msgstr ""
1379
 
1380
+ #: inc/taxonomies.php:394
1381
  msgid "Sets the query_var key for this taxonomy."
1382
  msgstr ""
1383
 
1384
+ #: inc/taxonomies.php:402
1385
  msgid "(default: none). Query Var needs to be true to use."
1386
  msgstr ""
1387
 
1388
+ #: inc/taxonomies.php:403
1389
  msgid "Custom Query Var String"
1390
  msgstr ""
1391
 
1392
+ #: inc/taxonomies.php:404
1393
  msgid "Sets a custom query_var slug for this taxonomy."
1394
  msgstr ""
1395
 
1396
+ #: inc/taxonomies.php:420
1397
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1398
  msgstr ""
1399
 
1400
+ #: inc/taxonomies.php:428
1401
  msgid "(default: taxonomy name)"
1402
  msgstr ""
1403
 
1404
+ #: inc/taxonomies.php:430
1405
  msgid "Custom taxonomy rewrite slug."
1406
  msgstr ""
1407
 
1408
+ #: inc/taxonomies.php:444
1409
  msgid "Rewrite With Front"
1410
  msgstr ""
1411
 
1412
+ #: inc/taxonomies.php:445
1413
  msgid "(default: true)"
1414
  msgstr ""
1415
 
1416
+ #: inc/taxonomies.php:461
1417
  msgid "Rewrite Hierarchical"
1418
  msgstr ""
1419
 
1420
+ #: inc/taxonomies.php:462
1421
  msgid "(default: false)"
1422
  msgstr ""
1423
 
1424
+ #: inc/taxonomies.php:463
1425
  msgid "Should the permastruct allow hierarchical urls."
1426
  msgstr ""
1427
 
1428
+ #: inc/taxonomies.php:478
1429
  msgid "Show Admin Column"
1430
  msgstr ""
1431
 
1432
+ #: inc/taxonomies.php:480
1433
  msgid ""
1434
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1435
  "types."
1436
  msgstr ""
1437
 
1438
+ #: inc/taxonomies.php:585
1439
  msgid "Please provide a taxonomy to delete"
1440
  msgstr ""
1441
 
1442
+ #: inc/taxonomies.php:636
1443
  msgid "Please provide a taxonomy name"
1444
  msgstr ""
1445
 
1446
+ #: inc/taxonomies.php:652
1447
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1448
  msgstr ""
1449
 
1450
+ #: inc/taxonomies.php:658
1451
  #, php-format
1452
  msgid "Please choose a different taxonomy name. %s is already used."
1453
  msgstr ""
1454
 
 
 
 
 
 
 
 
1455
  #. Plugin URI of the plugin/theme
1456
  msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
1457
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: williamsba1, tw2113, webdevstudios
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
- Tested up to: 4.2
7
- Stable tag: 1.1.1
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -25,18 +25,24 @@ Implied credit to:
25
 
26
  == Screenshots ==
27
 
28
- 1. Landing page screen.
29
- 2. Add new post type screen and tab.
30
- 3. Edit post type screen and tab.
31
- 4. Add new taxonomy screen and tab.
32
- 5. Edit taxonomy screen and tab.
33
- 6. Export post types screen and tab.
34
- 7. Export taxonomies screen and tab.
35
- 8. Get code screen and tab.
36
- 9. Help/support screen.
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
40
  = 1.1.1 =
41
  * Re-add post type and taxonomy select buttons and only display for non-js users.
42
 
@@ -255,6 +261,13 @@ Implied credit to:
255
 
256
  == Upgrade Notice ==
257
 
 
 
 
 
 
 
 
258
  = 1.1.1 =
259
  * Re-add post type and taxonomy select buttons and only display for non-js users.
260
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
+ Tested up to: 4.3
7
+ Stable tag: 1.1.2
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
25
 
26
  == Screenshots ==
27
 
28
+ 1. Add new post type screen and tab.
29
+ 2. Edit post type screen and tab.
30
+ 3. Add new taxonomy screen and tab.
31
+ 4. Edit taxonomy screen and tab.
32
+ 5. Registered post types and taxonomies from CPTUI
33
+ 6. Import/Export screen.
34
+ 7. Help/support screen.
35
+ 8. Update Information/Donate screen.
 
36
 
37
  == Changelog ==
38
 
39
+ = 1.1.2 =
40
+ * Change export value to plural label for taxonomies.
41
+ * Properly select a post type or taxonomy after deleting an existing value.
42
+ * Updated screenshots
43
+ * Added target="_blank" attribute to one of the inline help links for Menu position. Thanks @JulieKuehl
44
+ * Fixed potential XSS issue.
45
+
46
  = 1.1.1 =
47
  * Re-add post type and taxonomy select buttons and only display for non-js users.
48
 
261
 
262
  == Upgrade Notice ==
263
 
264
+ = 1.1.2 =
265
+ * Change export value to plural label for taxonomies.
266
+ * Properly select a post type or taxonomy after deleting an existing value.
267
+ * Updated screenshots
268
+ * Added target="_blank" attribute to one of the inline help links for Menu position. Thanks @JulieKuehl
269
+ * Fixed potential XSS issue.
270
+
271
  = 1.1.1 =
272
  * Re-add post type and taxonomy select buttons and only display for non-js users.
273
 
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-7.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file