Custom Post Type UI - Version 1.0.4

Version Description

  • Fixed incorrect boolean order for hierarchical taxonomies and default value.
  • Fixed missing closing div tags.
  • Default menu position to null instead of empty string.
  • Undefined index notice cleanup.
  • Remove unnecessary hook.
Download this release

Release Info

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

Code changes from version 1.0.3 to 1.0.4

custom-post-type-ui.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
- Version: 1.0.3
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
@@ -15,7 +15,7 @@ if ( ! defined( 'ABSPATH' ) ) {
15
  exit;
16
  }
17
 
18
- define( 'CPT_VERSION', '1.0.3' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
@@ -172,7 +172,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
172
  $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
173
  }
174
 
175
- $menu_position = '';
176
  if ( !empty( $post_type['menu_position'] ) ) {
177
  $menu_position = (int) $post_type['menu_position'];
178
  }
@@ -261,7 +261,7 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
261
 
262
  $rewrite['with_front'] = ( ! empty( $taxonomy['rewrite_withfront'] ) && 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
263
 
264
- $rewrite['hierarchical'] = ( ! empty( $taxonomy['rewrite_hierarchical'] ) && 'false' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? false : true;
265
  }
266
 
267
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
@@ -271,6 +271,8 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
271
  $taxonomy['query_var'] = $taxonomy['query_var_slug'];
272
  }
273
 
 
 
274
  $args = array(
275
  'labels' => $labels,
276
  'label' => $taxonomy['label'],
@@ -278,7 +280,7 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
278
  'show_ui' => get_disp_boolean( $taxonomy['show_ui'] ),
279
  'query_var' => $taxonomy['query_var'],
280
  'rewrite' => $rewrite,
281
- 'show_admin_column' => get_disp_boolean( $taxonomy['show_admin_column'] )
282
  );
283
 
284
  $object_type = ( !empty( $taxonomy['object_types'] ) ) ? $taxonomy['object_types'] : '';
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
+ Version: 1.0.4
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
15
  exit;
16
  }
17
 
18
+ define( 'CPT_VERSION', '1.0.4' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
172
  $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
173
  }
174
 
175
+ $menu_position = null;
176
  if ( !empty( $post_type['menu_position'] ) ) {
177
  $menu_position = (int) $post_type['menu_position'];
178
  }
261
 
262
  $rewrite['with_front'] = ( ! empty( $taxonomy['rewrite_withfront'] ) && 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
263
 
264
+ $rewrite['hierarchical'] = ( ! empty( $taxonomy['rewrite_hierarchical'] ) && 'true' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? true : false;
265
  }
266
 
267
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
271
  $taxonomy['query_var'] = $taxonomy['query_var_slug'];
272
  }
273
 
274
+ $show_admin_column = ( !empty( $taxonomy['show_admin_column'] ) && false !== get_disp_boolean( $taxonomy['show_admin_column'] ) ) ? true : false;
275
+
276
  $args = array(
277
  'labels' => $labels,
278
  'label' => $taxonomy['label'],
280
  'show_ui' => get_disp_boolean( $taxonomy['show_ui'] ),
281
  'query_var' => $taxonomy['query_var'],
282
  'rewrite' => $rewrite,
283
+ 'show_admin_column' => $show_admin_column
284
  );
285
 
286
  $object_type = ( !empty( $taxonomy['object_types'] ) ) ? $taxonomy['object_types'] : '';
inc/post-types.php CHANGED
@@ -784,21 +784,12 @@ function cptui_manage_post_types() {
784
  */
785
  $args = apply_filters( 'cptui_attach_taxonomies_to_post_type', array( 'public' => true ) );
786
 
787
- /**
788
- * Filters the arguments for output type for returned results.
789
- *
790
- * @since 1.0.0
791
- *
792
- * @param string $value Default output type.
793
- */
794
- $output = apply_filters( 'cptui_attach_taxonomies_to_post_type_output', 'objects' );
795
-
796
  # If they don't return an array, fall back to the original default. Don't need to check for empty, because empty array is default for $args param in get_post_types anyway.
797
  if ( !is_array( $args ) ) {
798
  $args = array( 'public' => true );
799
  }
800
 
801
- $add_taxes = get_taxonomies( $args, $output );
802
  unset( $add_taxes['nav_menu'] ); unset( $add_taxes['post_format'] );
803
  foreach ( $add_taxes as $add_tax ) {
804
  /*
@@ -828,6 +819,7 @@ function cptui_manage_post_types() {
828
  echo '<li>' . sprintf( __( 'Deleting custom post types will %sNOT%s delete any content into the database or added to those post types. You can easily recreate your post types and the content will still exist.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
829
  </ol></div>
830
  <?php } ?>
 
831
  </td>
832
  </tr>
833
  </table>
784
  */
785
  $args = apply_filters( 'cptui_attach_taxonomies_to_post_type', array( 'public' => true ) );
786
 
 
 
 
 
 
 
 
 
 
787
  # If they don't return an array, fall back to the original default. Don't need to check for empty, because empty array is default for $args param in get_post_types anyway.
788
  if ( !is_array( $args ) ) {
789
  $args = array( 'public' => true );
790
  }
791
 
792
+ $add_taxes = get_taxonomies( $args, 'objects' );
793
  unset( $add_taxes['nav_menu'] ); unset( $add_taxes['post_format'] );
794
  foreach ( $add_taxes as $add_tax ) {
795
  /*
819
  echo '<li>' . sprintf( __( 'Deleting custom post types will %sNOT%s delete any content into the database or added to those post types. You can easily recreate your post types and the content will still exist.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
820
  </ol></div>
821
  <?php } ?>
822
+ </div>
823
  </td>
824
  </tr>
825
  </table>
inc/taxonomies.php CHANGED
@@ -468,6 +468,7 @@ function cptui_manage_taxonomies() {
468
  echo '<li>' . sprintf( __( 'Deleting custom taxonomies do %sNOT%s delete terms added to those taxonomies. You can recreate your taxonomies and the terms will return. Changing the name, after adding terms to the taxonomy, will not update the terms in the database.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
469
  </ol></div>
470
  <?php } ?>
 
471
  </td>
472
  </tr>
473
  </table><!-- End outter table -->
468
  echo '<li>' . sprintf( __( 'Deleting custom taxonomies do %sNOT%s delete terms added to those taxonomies. You can recreate your taxonomies and the terms will return. Changing the name, after adding terms to the taxonomy, will not update the terms in the database.', 'cpt-plugin' ), '<strong class="wp-ui-highlight">', '</strong>' ); ?>
469
  </ol></div>
470
  <?php } ?>
471
+ </div>
472
  </td>
473
  </tr>
474
  </table><!-- End outter table -->
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.0.3\n"
4
- "POT-Creation-Date: 2015-02-24 17:45+0100\n"
5
- "PO-Revision-Date: 2015-02-24 23:44+0100\n"
6
- "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
@@ -25,11 +25,11 @@ msgstr "Custom Post Types"
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
- #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
- #: ../custom-post-type-ui.php:319
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
@@ -40,7 +40,7 @@ msgstr ""
40
  "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
- #: ../custom-post-type-ui.php:321
44
  #, php-format
45
  msgid ""
46
  "To get started with creating some post types, please visit %s and for "
@@ -54,31 +54,31 @@ msgstr ""
54
  "Lösungsansätze bei deinem Problem behilflich sein, besuche unser %s und wir "
55
  "werden uns Deiner Frage so schnell wie möglich annehmen."
56
 
57
- #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
58
  msgid "Add/Edit Post Types"
59
  msgstr "Post Types hinzufügen/editieren"
60
 
61
- #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
62
  msgid "Add/Edit Taxonomies"
63
  msgstr "Taxonomien hinzufügen/editieren"
64
 
65
- #: ../custom-post-type-ui.php:324 ../inc/support.php:23
66
  msgid "Help/Support"
67
  msgstr "Hilfe/Support"
68
 
69
- #: ../custom-post-type-ui.php:325
70
  msgid "CPT UI Support Forum"
71
  msgstr "CPT UI Support Forum"
72
 
73
- #: ../custom-post-type-ui.php:341
74
  msgid "Help Support This Plugin!"
75
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
76
 
77
- #: ../custom-post-type-ui.php:345
78
  msgid "Professional WordPress<br />Third Edition"
79
  msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
- #: ../custom-post-type-ui.php:350
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
@@ -86,126 +86,126 @@ msgstr ""
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
- #: ../custom-post-type-ui.php:353
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
- #: ../custom-post-type-ui.php:358
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
- #: ../custom-post-type-ui.php:361
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
- #: ../custom-post-type-ui.php:362
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
106
 
107
- #: ../custom-post-type-ui.php:366
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
- #: ../custom-post-type-ui.php:403
112
  #, php-format
113
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
  msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
- #: ../custom-post-type-ui.php:412
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
- #: ../custom-post-type-ui.php:414
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
- #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
  msgstr "Import/Export"
127
 
128
- #: ../custom-post-type-ui.php:476
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
- #: ../custom-post-type-ui.php:480
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
- #: ../custom-post-type-ui.php:506
137
  msgid "Add New Post Type"
138
  msgstr "Neuen Post Type hinzufügen"
139
 
140
- #: ../custom-post-type-ui.php:509
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
- #: ../custom-post-type-ui.php:513
145
  msgid "Add New Taxonomy"
146
  msgstr "Neue Taxonomie hinzufügen"
147
 
148
- #: ../custom-post-type-ui.php:516
149
  msgid "Edit Taxonomies"
150
  msgstr "Taxonomien bearbeiten"
151
 
152
- #: ../custom-post-type-ui.php:520
153
  msgid "Post Types"
154
  msgstr "Post Types"
155
 
156
- #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
157
  msgid "Taxonomies"
158
  msgstr "Taxonomien"
159
 
160
- #: ../custom-post-type-ui.php:522
161
  msgid "Get Code"
162
  msgstr "Code anzeigen"
163
 
164
- #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
165
  #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr "Einstellungen"
168
 
169
- #: ../custom-post-type-ui.php:606
170
  msgid "Help"
171
  msgstr "Hilfe"
172
 
173
- #: ../custom-post-type-ui.php:634
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr "%s wurde erfolgreich hinzugefügt"
177
 
178
- #: ../custom-post-type-ui.php:636
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr "%s konnte nicht hinzugefügt werden"
182
 
183
- #: ../custom-post-type-ui.php:640
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr "%s wurde erfolgreich aktualisiert"
187
 
188
- #: ../custom-post-type-ui.php:642
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr "%s konnte nicht aktualisiert werden"
192
 
193
- #: ../custom-post-type-ui.php:646
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr "%s wurde erfolgreich gelöscht"
197
 
198
- #: ../custom-post-type-ui.php:648
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr "%s konnte nicht gelöscht werden"
202
 
203
- #: ../custom-post-type-ui.php:652
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr "%s wurde erfolgreich importiert"
207
 
208
- #: ../custom-post-type-ui.php:654
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr "%s konnte nicht importiert werden"
@@ -447,7 +447,7 @@ msgstr ""
447
  "anzuzeigen."
448
 
449
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
450
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
451
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
452
  msgid "Click to expand"
453
  msgstr "Zum Aufklappen anklicken"
@@ -929,16 +929,16 @@ msgstr "Entferne alle Support Features"
929
  msgid "Built-in Taxonomies"
930
  msgstr "Vorhandene Taxonomien"
931
 
932
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
933
  #, php-format
934
  msgid "Adds %s support"
935
  msgstr "Fügt %s Unterstützung hinzu"
936
 
937
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
938
  msgid "Starter Notes"
939
  msgstr "Tips für Einsteiger"
940
 
941
- #: ../inc/post-types.php:826
942
  #, php-format
943
  msgid ""
944
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -952,7 +952,7 @@ msgstr ""
952
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
953
  "revision, nav_menu_item."
954
 
955
- #: ../inc/post-types.php:827
956
  #, php-format
957
  msgid ""
958
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -968,7 +968,7 @@ msgstr ""
968
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
969
  "roten Fragezeichen."
970
 
971
- #: ../inc/post-types.php:828
972
  #, php-format
973
  msgid ""
974
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -979,21 +979,21 @@ msgstr ""
979
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
980
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
981
 
982
- #: ../inc/post-types.php:907
983
  msgid "Please provide a post type to delete"
984
  msgstr "Bitte gib einen Post Type zum Löschen an"
985
 
986
- #: ../inc/post-types.php:967
987
  msgid "Please provide a post type name"
988
  msgstr "Bitte gib einen Namen für den Post Type an"
989
 
990
- #: ../inc/post-types.php:985
991
  msgid "Please do not use quotes in post type names or rewrite slugs"
992
  msgstr ""
993
  "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
994
  "Kurzlinks"
995
 
996
- #: ../inc/post-types.php:992
997
  #, php-format
998
  msgid "Please choose a different post type name. %s is already registered."
999
  msgstr ""
@@ -1472,21 +1472,21 @@ msgstr ""
1472
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1473
  "Begriffe nicht in der Datenbank aktualisiert."
1474
 
1475
- #: ../inc/taxonomies.php:556
1476
  msgid "Please provide a taxonomy to delete"
1477
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1478
 
1479
- #: ../inc/taxonomies.php:607
1480
  msgid "Please provide a taxonomy name"
1481
  msgstr "Gib bitte einen Taxonomie-Namen an"
1482
 
1483
- #: ../inc/taxonomies.php:623
1484
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1485
  msgstr ""
1486
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1487
  "Kurzlinks"
1488
 
1489
- #: ../inc/taxonomies.php:629
1490
  #, php-format
1491
  msgid "Please choose a different taxonomy name. %s is already used."
1492
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.0.3\n"
4
+ "POT-Creation-Date: 2015-03-05 01:01-0600\n"
5
+ "PO-Revision-Date: 2015-03-05 01:01-0600\n"
6
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
+ #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
+ #: ../custom-post-type-ui.php:321
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
40
  "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
+ #: ../custom-post-type-ui.php:323
44
  #, php-format
45
  msgid ""
46
  "To get started with creating some post types, please visit %s and for "
54
  "Lösungsansätze bei deinem Problem behilflich sein, besuche unser %s und wir "
55
  "werden uns Deiner Frage so schnell wie möglich annehmen."
56
 
57
+ #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
58
  msgid "Add/Edit Post Types"
59
  msgstr "Post Types hinzufügen/editieren"
60
 
61
+ #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
62
  msgid "Add/Edit Taxonomies"
63
  msgstr "Taxonomien hinzufügen/editieren"
64
 
65
+ #: ../custom-post-type-ui.php:326 ../inc/support.php:23
66
  msgid "Help/Support"
67
  msgstr "Hilfe/Support"
68
 
69
+ #: ../custom-post-type-ui.php:327
70
  msgid "CPT UI Support Forum"
71
  msgstr "CPT UI Support Forum"
72
 
73
+ #: ../custom-post-type-ui.php:343
74
  msgid "Help Support This Plugin!"
75
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
76
 
77
+ #: ../custom-post-type-ui.php:347
78
  msgid "Professional WordPress<br />Third Edition"
79
  msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
+ #: ../custom-post-type-ui.php:352
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
+ #: ../custom-post-type-ui.php:355
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
+ #: ../custom-post-type-ui.php:360
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
+ #: ../custom-post-type-ui.php:363
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
+ #: ../custom-post-type-ui.php:364
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
106
 
107
+ #: ../custom-post-type-ui.php:368
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
+ #: ../custom-post-type-ui.php:405
112
  #, php-format
113
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
  msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
+ #: ../custom-post-type-ui.php:414
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
+ #: ../custom-post-type-ui.php:416
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
+ #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
  msgstr "Import/Export"
127
 
128
+ #: ../custom-post-type-ui.php:478
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
+ #: ../custom-post-type-ui.php:482
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
+ #: ../custom-post-type-ui.php:508
137
  msgid "Add New Post Type"
138
  msgstr "Neuen Post Type hinzufügen"
139
 
140
+ #: ../custom-post-type-ui.php:511
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
+ #: ../custom-post-type-ui.php:515
145
  msgid "Add New Taxonomy"
146
  msgstr "Neue Taxonomie hinzufügen"
147
 
148
+ #: ../custom-post-type-ui.php:518
149
  msgid "Edit Taxonomies"
150
  msgstr "Taxonomien bearbeiten"
151
 
152
+ #: ../custom-post-type-ui.php:522
153
  msgid "Post Types"
154
  msgstr "Post Types"
155
 
156
+ #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
157
  msgid "Taxonomies"
158
  msgstr "Taxonomien"
159
 
160
+ #: ../custom-post-type-ui.php:524
161
  msgid "Get Code"
162
  msgstr "Code anzeigen"
163
 
164
+ #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
165
  #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr "Einstellungen"
168
 
169
+ #: ../custom-post-type-ui.php:608
170
  msgid "Help"
171
  msgstr "Hilfe"
172
 
173
+ #: ../custom-post-type-ui.php:636
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr "%s wurde erfolgreich hinzugefügt"
177
 
178
+ #: ../custom-post-type-ui.php:638
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr "%s konnte nicht hinzugefügt werden"
182
 
183
+ #: ../custom-post-type-ui.php:642
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr "%s wurde erfolgreich aktualisiert"
187
 
188
+ #: ../custom-post-type-ui.php:644
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr "%s konnte nicht aktualisiert werden"
192
 
193
+ #: ../custom-post-type-ui.php:648
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr "%s wurde erfolgreich gelöscht"
197
 
198
+ #: ../custom-post-type-ui.php:650
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr "%s konnte nicht gelöscht werden"
202
 
203
+ #: ../custom-post-type-ui.php:654
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr "%s wurde erfolgreich importiert"
207
 
208
+ #: ../custom-post-type-ui.php:656
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr "%s konnte nicht importiert werden"
447
  "anzuzeigen."
448
 
449
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
450
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
451
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
452
  msgid "Click to expand"
453
  msgstr "Zum Aufklappen anklicken"
929
  msgid "Built-in Taxonomies"
930
  msgstr "Vorhandene Taxonomien"
931
 
932
+ #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
933
  #, php-format
934
  msgid "Adds %s support"
935
  msgstr "Fügt %s Unterstützung hinzu"
936
 
937
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
938
  msgid "Starter Notes"
939
  msgstr "Tips für Einsteiger"
940
 
941
+ #: ../inc/post-types.php:817
942
  #, php-format
943
  msgid ""
944
  "Post Type names should have %smax 20 characters%s, and only contain "
952
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
953
  "revision, nav_menu_item."
954
 
955
+ #: ../inc/post-types.php:818
956
  #, php-format
957
  msgid ""
958
  "If you are unfamiliar with the advanced post type settings, just fill in the "
968
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
969
  "roten Fragezeichen."
970
 
971
+ #: ../inc/post-types.php:819
972
  #, php-format
973
  msgid ""
974
  "Deleting custom post types will %sNOT%s delete any content into the database "
979
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
980
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
981
 
982
+ #: ../inc/post-types.php:899
983
  msgid "Please provide a post type to delete"
984
  msgstr "Bitte gib einen Post Type zum Löschen an"
985
 
986
+ #: ../inc/post-types.php:959
987
  msgid "Please provide a post type name"
988
  msgstr "Bitte gib einen Namen für den Post Type an"
989
 
990
+ #: ../inc/post-types.php:977
991
  msgid "Please do not use quotes in post type names or rewrite slugs"
992
  msgstr ""
993
  "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
994
  "Kurzlinks"
995
 
996
+ #: ../inc/post-types.php:984
997
  #, php-format
998
  msgid "Please choose a different post type name. %s is already registered."
999
  msgstr ""
1472
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1473
  "Begriffe nicht in der Datenbank aktualisiert."
1474
 
1475
+ #: ../inc/taxonomies.php:557
1476
  msgid "Please provide a taxonomy to delete"
1477
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1478
 
1479
+ #: ../inc/taxonomies.php:608
1480
  msgid "Please provide a taxonomy name"
1481
  msgstr "Gib bitte einen Taxonomie-Namen an"
1482
 
1483
+ #: ../inc/taxonomies.php:624
1484
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1485
  msgstr ""
1486
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1487
  "Kurzlinks"
1488
 
1489
+ #: ../inc/taxonomies.php:630
1490
  #, php-format
1491
  msgid "Please choose a different taxonomy name. %s is already used."
1492
  msgstr ""
languages/cpt-plugin-ja.mo CHANGED
Binary file
languages/cpt-plugin-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-24 10:40-0600\n"
6
- "PO-Revision-Date: 2015-02-24 10:41-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"
@@ -25,19 +25,19 @@ msgstr "利用する投稿タイプ"
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
- #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
- #: ../custom-post-type-ui.php:319
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
- #: ../custom-post-type-ui.php:321
41
  #, php-format
42
  msgid ""
43
  "To get started with creating some post types, please visit %s and for "
@@ -46,165 +46,165 @@ msgid ""
46
  "as soon as possible."
47
  msgstr ""
48
 
49
- #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
50
  #, fuzzy
51
  msgid "Add/Edit Post Types"
52
  msgstr "カスタム投稿タイプを編集"
53
 
54
- #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
55
  #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
  msgstr "ビルトイン分類"
58
 
59
- #: ../custom-post-type-ui.php:324 ../inc/support.php:23
60
  #, fuzzy
61
  msgid "Help/Support"
62
  msgstr "サポート"
63
 
64
- #: ../custom-post-type-ui.php:325
65
  msgid "CPT UI Support Forum"
66
  msgstr ""
67
 
68
- #: ../custom-post-type-ui.php:341
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
- #: ../custom-post-type-ui.php:345
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
- #: ../custom-post-type-ui.php:350
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
- #: ../custom-post-type-ui.php:353
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
- #: ../custom-post-type-ui.php:358
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
- #: ../custom-post-type-ui.php:361
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
- #: ../custom-post-type-ui.php:362
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
- #: ../custom-post-type-ui.php:366
99
  msgid "PayPal - The safer, easier way to pay online!"
100
  msgstr ""
101
 
102
- #: ../custom-post-type-ui.php:403
103
  #, php-format
104
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
105
  msgstr ""
106
 
107
- #: ../custom-post-type-ui.php:412
108
  msgid "Please Report Bugs"
109
  msgstr ""
110
 
111
- #: ../custom-post-type-ui.php:414
112
  msgid "Follow on Twitter:"
113
  msgstr ""
114
 
115
- #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
116
  msgid "Import/Export"
117
  msgstr ""
118
 
119
- #: ../custom-post-type-ui.php:476
120
  #, fuzzy
121
  msgid "Manage Taxonomies"
122
  msgstr "カスタム分類の管理"
123
 
124
- #: ../custom-post-type-ui.php:480
125
  #, fuzzy
126
  msgid "Manage Post Types"
127
  msgstr "カスタム投稿タイプの管理"
128
 
129
- #: ../custom-post-type-ui.php:506
130
  #, fuzzy
131
  msgid "Add New Post Type"
132
  msgstr "利用する投稿タイプ"
133
 
134
- #: ../custom-post-type-ui.php:509
135
  #, fuzzy
136
  msgid "Edit Post Types"
137
  msgstr "カスタム投稿タイプを編集"
138
 
139
- #: ../custom-post-type-ui.php:513
140
  #, fuzzy
141
  msgid "Add New Taxonomy"
142
  msgstr "分類名"
143
 
144
- #: ../custom-post-type-ui.php:516
145
  #, fuzzy
146
  msgid "Edit Taxonomies"
147
  msgstr "ビルトイン分類"
148
 
149
- #: ../custom-post-type-ui.php:520
150
  #, fuzzy
151
  msgid "Post Types"
152
  msgstr "投稿タイプ名"
153
 
154
- #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
155
  #, fuzzy
156
  msgid "Taxonomies"
157
  msgstr "ビルトイン分類"
158
 
159
- #: ../custom-post-type-ui.php:522
160
  msgid "Get Code"
161
  msgstr ""
162
 
163
- #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
164
  #: ../inc/taxonomies.php:319
165
  msgid "Settings"
166
  msgstr ""
167
 
168
- #: ../custom-post-type-ui.php:606
169
  msgid "Help"
170
  msgstr ""
171
 
172
- #: ../custom-post-type-ui.php:634
173
  #, php-format
174
  msgid "%s has been successfully added"
175
  msgstr ""
176
 
177
- #: ../custom-post-type-ui.php:636
178
  #, php-format
179
  msgid "%s has failed to be added"
180
  msgstr ""
181
 
182
- #: ../custom-post-type-ui.php:640
183
  #, php-format
184
  msgid "%s has been successfully updated"
185
  msgstr ""
186
 
187
- #: ../custom-post-type-ui.php:642
188
  #, php-format
189
  msgid "%s has failed to be updated"
190
  msgstr ""
191
 
192
- #: ../custom-post-type-ui.php:646
193
  #, php-format
194
  msgid "%s has been successfully deleted"
195
  msgstr ""
196
 
197
- #: ../custom-post-type-ui.php:648
198
  #, php-format
199
  msgid "%s has failed to be deleted"
200
  msgstr ""
201
 
202
- #: ../custom-post-type-ui.php:652
203
  #, php-format
204
  msgid "%s has been successfully imported"
205
  msgstr ""
206
 
207
- #: ../custom-post-type-ui.php:654
208
  #, php-format
209
  msgid "%s has failed to be imported"
210
  msgstr ""
@@ -407,7 +407,7 @@ msgstr ""
407
  #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
- msgstr "編集"
411
 
412
  #: ../inc/post-types.php:154
413
  #, fuzzy
@@ -424,7 +424,7 @@ msgid "Click headings to reveal available options."
424
  msgstr ""
425
 
426
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
428
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
@@ -871,16 +871,16 @@ msgstr ""
871
  msgid "Built-in Taxonomies"
872
  msgstr "ビルトイン分類"
873
 
874
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:826
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -889,7 +889,7 @@ msgid ""
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:827
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -898,7 +898,7 @@ msgid ""
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
- #: ../inc/post-types.php:828
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -909,19 +909,19 @@ msgstr ""
909
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
910
  "ません。"
911
 
912
- #: ../inc/post-types.php:907
913
  msgid "Please provide a post type to delete"
914
  msgstr ""
915
 
916
- #: ../inc/post-types.php:967
917
  msgid "Please provide a post type name"
918
  msgstr ""
919
 
920
- #: ../inc/post-types.php:985
921
  msgid "Please do not use quotes in post type names or rewrite slugs"
922
  msgstr ""
923
 
924
- #: ../inc/post-types.php:992
925
  #, php-format
926
  msgid "Please choose a different post type name. %s is already registered."
927
  msgstr ""
@@ -1339,19 +1339,19 @@ msgstr ""
1339
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1340
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1341
 
1342
- #: ../inc/taxonomies.php:556
1343
  msgid "Please provide a taxonomy to delete"
1344
  msgstr ""
1345
 
1346
- #: ../inc/taxonomies.php:607
1347
  msgid "Please provide a taxonomy name"
1348
  msgstr ""
1349
 
1350
- #: ../inc/taxonomies.php:623
1351
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1352
  msgstr ""
1353
 
1354
- #: ../inc/taxonomies.php:629
1355
  #, php-format
1356
  msgid "Please choose a different taxonomy name. %s is already used."
1357
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-03-05 00:59-0600\n"
6
+ "PO-Revision-Date: 2015-03-05 01:01-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"
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
+ #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
+ #: ../custom-post-type-ui.php:321
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
+ #: ../custom-post-type-ui.php:323
41
  #, php-format
42
  msgid ""
43
  "To get started with creating some post types, please visit %s and for "
46
  "as soon as possible."
47
  msgstr ""
48
 
49
+ #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
50
  #, fuzzy
51
  msgid "Add/Edit Post Types"
52
  msgstr "カスタム投稿タイプを編集"
53
 
54
+ #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
55
  #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
  msgstr "ビルトイン分類"
58
 
59
+ #: ../custom-post-type-ui.php:326 ../inc/support.php:23
60
  #, fuzzy
61
  msgid "Help/Support"
62
  msgstr "サポート"
63
 
64
+ #: ../custom-post-type-ui.php:327
65
  msgid "CPT UI Support Forum"
66
  msgstr ""
67
 
68
+ #: ../custom-post-type-ui.php:343
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
+ #: ../custom-post-type-ui.php:347
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
+ #: ../custom-post-type-ui.php:352
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
+ #: ../custom-post-type-ui.php:355
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
+ #: ../custom-post-type-ui.php:360
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
+ #: ../custom-post-type-ui.php:363
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
+ #: ../custom-post-type-ui.php:364
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
+ #: ../custom-post-type-ui.php:368
99
  msgid "PayPal - The safer, easier way to pay online!"
100
  msgstr ""
101
 
102
+ #: ../custom-post-type-ui.php:405
103
  #, php-format
104
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
105
  msgstr ""
106
 
107
+ #: ../custom-post-type-ui.php:414
108
  msgid "Please Report Bugs"
109
  msgstr ""
110
 
111
+ #: ../custom-post-type-ui.php:416
112
  msgid "Follow on Twitter:"
113
  msgstr ""
114
 
115
+ #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
116
  msgid "Import/Export"
117
  msgstr ""
118
 
119
+ #: ../custom-post-type-ui.php:478
120
  #, fuzzy
121
  msgid "Manage Taxonomies"
122
  msgstr "カスタム分類の管理"
123
 
124
+ #: ../custom-post-type-ui.php:482
125
  #, fuzzy
126
  msgid "Manage Post Types"
127
  msgstr "カスタム投稿タイプの管理"
128
 
129
+ #: ../custom-post-type-ui.php:508
130
  #, fuzzy
131
  msgid "Add New Post Type"
132
  msgstr "利用する投稿タイプ"
133
 
134
+ #: ../custom-post-type-ui.php:511
135
  #, fuzzy
136
  msgid "Edit Post Types"
137
  msgstr "カスタム投稿タイプを編集"
138
 
139
+ #: ../custom-post-type-ui.php:515
140
  #, fuzzy
141
  msgid "Add New Taxonomy"
142
  msgstr "分類名"
143
 
144
+ #: ../custom-post-type-ui.php:518
145
  #, fuzzy
146
  msgid "Edit Taxonomies"
147
  msgstr "ビルトイン分類"
148
 
149
+ #: ../custom-post-type-ui.php:522
150
  #, fuzzy
151
  msgid "Post Types"
152
  msgstr "投稿タイプ名"
153
 
154
+ #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
155
  #, fuzzy
156
  msgid "Taxonomies"
157
  msgstr "ビルトイン分類"
158
 
159
+ #: ../custom-post-type-ui.php:524
160
  msgid "Get Code"
161
  msgstr ""
162
 
163
+ #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
164
  #: ../inc/taxonomies.php:319
165
  msgid "Settings"
166
  msgstr ""
167
 
168
+ #: ../custom-post-type-ui.php:608
169
  msgid "Help"
170
  msgstr ""
171
 
172
+ #: ../custom-post-type-ui.php:636
173
  #, php-format
174
  msgid "%s has been successfully added"
175
  msgstr ""
176
 
177
+ #: ../custom-post-type-ui.php:638
178
  #, php-format
179
  msgid "%s has failed to be added"
180
  msgstr ""
181
 
182
+ #: ../custom-post-type-ui.php:642
183
  #, php-format
184
  msgid "%s has been successfully updated"
185
  msgstr ""
186
 
187
+ #: ../custom-post-type-ui.php:644
188
  #, php-format
189
  msgid "%s has failed to be updated"
190
  msgstr ""
191
 
192
+ #: ../custom-post-type-ui.php:648
193
  #, php-format
194
  msgid "%s has been successfully deleted"
195
  msgstr ""
196
 
197
+ #: ../custom-post-type-ui.php:650
198
  #, php-format
199
  msgid "%s has failed to be deleted"
200
  msgstr ""
201
 
202
+ #: ../custom-post-type-ui.php:654
203
  #, php-format
204
  msgid "%s has been successfully imported"
205
  msgstr ""
206
 
207
+ #: ../custom-post-type-ui.php:656
208
  #, php-format
209
  msgid "%s has failed to be imported"
210
  msgstr ""
407
  #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
+ msgstr "利用する投稿タイプ"
411
 
412
  #: ../inc/post-types.php:154
413
  #, fuzzy
424
  msgstr ""
425
 
426
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
428
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
871
  msgid "Built-in Taxonomies"
872
  msgstr "ビルトイン分類"
873
 
874
+ #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
+ #: ../inc/post-types.php:817
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:818
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
+ #: ../inc/post-types.php:819
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
909
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
910
  "ません。"
911
 
912
+ #: ../inc/post-types.php:899
913
  msgid "Please provide a post type to delete"
914
  msgstr ""
915
 
916
+ #: ../inc/post-types.php:959
917
  msgid "Please provide a post type name"
918
  msgstr ""
919
 
920
+ #: ../inc/post-types.php:977
921
  msgid "Please do not use quotes in post type names or rewrite slugs"
922
  msgstr ""
923
 
924
+ #: ../inc/post-types.php:984
925
  #, php-format
926
  msgid "Please choose a different post type name. %s is already registered."
927
  msgstr ""
1339
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1340
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1341
 
1342
+ #: ../inc/taxonomies.php:557
1343
  msgid "Please provide a taxonomy to delete"
1344
  msgstr ""
1345
 
1346
+ #: ../inc/taxonomies.php:608
1347
  msgid "Please provide a taxonomy name"
1348
  msgstr ""
1349
 
1350
+ #: ../inc/taxonomies.php:624
1351
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1352
  msgstr ""
1353
 
1354
+ #: ../inc/taxonomies.php:630
1355
  #, php-format
1356
  msgid "Please choose a different taxonomy name. %s is already used."
1357
  msgstr ""
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2015-02-24 10:40-0600\n"
5
- "PO-Revision-Date: 2015-02-24 10:41-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"
@@ -24,18 +24,18 @@ msgstr "Özel Yazı Türleri"
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
- #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
- #: ../custom-post-type-ui.php:319
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:321
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,35 +44,35 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "Ek Yazı Türleri"
51
 
52
- #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "Dahili Sınıflandırmalar"
56
 
57
- #: ../custom-post-type-ui.php:324 ../inc/support.php:23
58
  #, fuzzy
59
  msgid "Help/Support"
60
  msgstr "Eklentiye Destek, Yardım!"
61
 
62
- #: ../custom-post-type-ui.php:325
63
  msgid "CPT UI Support Forum"
64
  msgstr ""
65
 
66
- #: ../custom-post-type-ui.php:341
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
- #: ../custom-post-type-ui.php:345
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
- #: ../custom-post-type-ui.php:350
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
@@ -81,131 +81,131 @@ msgstr ""
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
- #: ../custom-post-type-ui.php:353
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
- #: ../custom-post-type-ui.php:358
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
- #: ../custom-post-type-ui.php:361
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
- #: ../custom-post-type-ui.php:362
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
- #: ../custom-post-type-ui.php:366
102
  msgid "PayPal - The safer, easier way to pay online!"
103
  msgstr ""
104
 
105
- #: ../custom-post-type-ui.php:403
106
  #, php-format
107
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:412
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
- #: ../custom-post-type-ui.php:414
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
- #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
119
  msgid "Import/Export"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:476
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
- #: ../custom-post-type-ui.php:480
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
- #: ../custom-post-type-ui.php:506
131
  #, fuzzy
132
  msgid "Add New Post Type"
133
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
134
 
135
- #: ../custom-post-type-ui.php:509
136
  #, fuzzy
137
  msgid "Edit Post Types"
138
  msgstr "Özel Yazı Türleri"
139
 
140
- #: ../custom-post-type-ui.php:513
141
  #, fuzzy
142
  msgid "Add New Taxonomy"
143
  msgstr "Sınıflandırma Adı"
144
 
145
- #: ../custom-post-type-ui.php:516
146
  #, fuzzy
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
- #: ../custom-post-type-ui.php:520
151
  #, fuzzy
152
  msgid "Post Types"
153
  msgstr "Özel Yazı Türleri"
154
 
155
- #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "Sınıflandırmaları Yönet"
159
 
160
- #: ../custom-post-type-ui.php:522
161
  msgid "Get Code"
162
  msgstr "Kodu Alın"
163
 
164
- #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
165
  #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr ""
168
 
169
- #: ../custom-post-type-ui.php:606
170
  msgid "Help"
171
  msgstr ""
172
 
173
- #: ../custom-post-type-ui.php:634
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr ""
177
 
178
- #: ../custom-post-type-ui.php:636
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr ""
182
 
183
- #: ../custom-post-type-ui.php:640
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr ""
187
 
188
- #: ../custom-post-type-ui.php:642
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr ""
192
 
193
- #: ../custom-post-type-ui.php:646
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr ""
197
 
198
- #: ../custom-post-type-ui.php:648
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr ""
202
 
203
- #: ../custom-post-type-ui.php:652
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr ""
207
 
208
- #: ../custom-post-type-ui.php:654
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr ""
@@ -437,7 +437,7 @@ msgid "Click headings to reveal available options."
437
  msgstr ""
438
 
439
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
440
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
441
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
442
  msgid "Click to expand"
443
  msgstr ""
@@ -528,7 +528,7 @@ msgstr "(örneğin: Film Göster)"
528
  #: ../inc/post-types.php:281
529
  #, fuzzy
530
  msgid "Search Item"
531
- msgstr "Eleman Ara"
532
 
533
  #: ../inc/post-types.php:286
534
  #, fuzzy
@@ -900,16 +900,16 @@ msgstr ""
900
  msgid "Built-in Taxonomies"
901
  msgstr "Dahili Sınıflandırmalar"
902
 
903
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
904
  #, fuzzy, php-format
905
  msgid "Adds %s support"
906
  msgstr "Bu Yazı format desteği ekler"
907
 
908
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
909
  msgid "Starter Notes"
910
  msgstr ""
911
 
912
- #: ../inc/post-types.php:826
913
  #, fuzzy, php-format
914
  msgid ""
915
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -920,7 +920,7 @@ msgstr ""
920
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
921
  "post, sayfa, ek, revizyon, nav_menu_item."
922
 
923
- #: ../inc/post-types.php:827
924
  #, fuzzy, php-format
925
  msgid ""
926
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -932,7 +932,7 @@ msgstr ""
932
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
933
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
934
 
935
- #: ../inc/post-types.php:828
936
  #, fuzzy, php-format
937
  msgid ""
938
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -943,22 +943,22 @@ msgstr ""
943
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
944
  "veritabanında olacaktır."
945
 
946
- #: ../inc/post-types.php:907
947
  msgid "Please provide a post type to delete"
948
  msgstr ""
949
 
950
- #: ../inc/post-types.php:967
951
  #, fuzzy
952
  msgid "Please provide a post type name"
953
  msgstr "(varsayılan: yazı türü adı)"
954
 
955
- #: ../inc/post-types.php:985
956
  #, fuzzy
957
  msgid "Please do not use quotes in post type names or rewrite slugs"
958
  msgstr ""
959
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
960
 
961
- #: ../inc/post-types.php:992
962
  #, php-format
963
  msgid "Please choose a different post type name. %s is already registered."
964
  msgstr ""
@@ -1408,23 +1408,23 @@ msgstr ""
1408
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1409
  "içerikleri kalacaktır."
1410
 
1411
- #: ../inc/taxonomies.php:556
1412
  msgid "Please provide a taxonomy to delete"
1413
  msgstr ""
1414
 
1415
- #: ../inc/taxonomies.php:607
1416
  #, fuzzy
1417
  msgid "Please provide a taxonomy name"
1418
  msgstr "(varsayılan: sınıflandırma adı)"
1419
 
1420
- #: ../inc/taxonomies.php:623
1421
  #, fuzzy
1422
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1423
  msgstr ""
1424
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1425
  "kullanmayınız."
1426
 
1427
- #: ../inc/taxonomies.php:629
1428
  #, php-format
1429
  msgid "Please choose a different taxonomy name. %s is already used."
1430
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-03-05 01:00-0600\n"
5
+ "PO-Revision-Date: 2015-03-05 01:00-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"
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
+ #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
+ #: ../custom-post-type-ui.php:321
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
+ #: ../custom-post-type-ui.php:323
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
44
  "as soon as possible."
45
  msgstr ""
46
 
47
+ #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "Ek Yazı Türleri"
51
 
52
+ #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "Dahili Sınıflandırmalar"
56
 
57
+ #: ../custom-post-type-ui.php:326 ../inc/support.php:23
58
  #, fuzzy
59
  msgid "Help/Support"
60
  msgstr "Eklentiye Destek, Yardım!"
61
 
62
+ #: ../custom-post-type-ui.php:327
63
  msgid "CPT UI Support Forum"
64
  msgstr ""
65
 
66
+ #: ../custom-post-type-ui.php:343
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
+ #: ../custom-post-type-ui.php:347
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
+ #: ../custom-post-type-ui.php:352
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
+ #: ../custom-post-type-ui.php:355
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
+ #: ../custom-post-type-ui.php:360
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
+ #: ../custom-post-type-ui.php:363
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
+ #: ../custom-post-type-ui.php:364
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
+ #: ../custom-post-type-ui.php:368
102
  msgid "PayPal - The safer, easier way to pay online!"
103
  msgstr ""
104
 
105
+ #: ../custom-post-type-ui.php:405
106
  #, php-format
107
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:414
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
+ #: ../custom-post-type-ui.php:416
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
+ #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
119
  msgid "Import/Export"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:478
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
+ #: ../custom-post-type-ui.php:482
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
+ #: ../custom-post-type-ui.php:508
131
  #, fuzzy
132
  msgid "Add New Post Type"
133
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
134
 
135
+ #: ../custom-post-type-ui.php:511
136
  #, fuzzy
137
  msgid "Edit Post Types"
138
  msgstr "Özel Yazı Türleri"
139
 
140
+ #: ../custom-post-type-ui.php:515
141
  #, fuzzy
142
  msgid "Add New Taxonomy"
143
  msgstr "Sınıflandırma Adı"
144
 
145
+ #: ../custom-post-type-ui.php:518
146
  #, fuzzy
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
+ #: ../custom-post-type-ui.php:522
151
  #, fuzzy
152
  msgid "Post Types"
153
  msgstr "Özel Yazı Türleri"
154
 
155
+ #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "Sınıflandırmaları Yönet"
159
 
160
+ #: ../custom-post-type-ui.php:524
161
  msgid "Get Code"
162
  msgstr "Kodu Alın"
163
 
164
+ #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
165
  #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr ""
168
 
169
+ #: ../custom-post-type-ui.php:608
170
  msgid "Help"
171
  msgstr ""
172
 
173
+ #: ../custom-post-type-ui.php:636
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr ""
177
 
178
+ #: ../custom-post-type-ui.php:638
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr ""
182
 
183
+ #: ../custom-post-type-ui.php:642
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr ""
187
 
188
+ #: ../custom-post-type-ui.php:644
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr ""
192
 
193
+ #: ../custom-post-type-ui.php:648
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr ""
197
 
198
+ #: ../custom-post-type-ui.php:650
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr ""
202
 
203
+ #: ../custom-post-type-ui.php:654
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr ""
207
 
208
+ #: ../custom-post-type-ui.php:656
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr ""
437
  msgstr ""
438
 
439
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
440
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
441
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
442
  msgid "Click to expand"
443
  msgstr ""
528
  #: ../inc/post-types.php:281
529
  #, fuzzy
530
  msgid "Search Item"
531
+ msgstr "Temel Eleman"
532
 
533
  #: ../inc/post-types.php:286
534
  #, fuzzy
900
  msgid "Built-in Taxonomies"
901
  msgstr "Dahili Sınıflandırmalar"
902
 
903
+ #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
904
  #, fuzzy, php-format
905
  msgid "Adds %s support"
906
  msgstr "Bu Yazı format desteği ekler"
907
 
908
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
909
  msgid "Starter Notes"
910
  msgstr ""
911
 
912
+ #: ../inc/post-types.php:817
913
  #, fuzzy, php-format
914
  msgid ""
915
  "Post Type names should have %smax 20 characters%s, and only contain "
920
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
921
  "post, sayfa, ek, revizyon, nav_menu_item."
922
 
923
+ #: ../inc/post-types.php:818
924
  #, fuzzy, php-format
925
  msgid ""
926
  "If you are unfamiliar with the advanced post type settings, just fill in the "
932
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
933
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
934
 
935
+ #: ../inc/post-types.php:819
936
  #, fuzzy, php-format
937
  msgid ""
938
  "Deleting custom post types will %sNOT%s delete any content into the database "
943
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
944
  "veritabanında olacaktır."
945
 
946
+ #: ../inc/post-types.php:899
947
  msgid "Please provide a post type to delete"
948
  msgstr ""
949
 
950
+ #: ../inc/post-types.php:959
951
  #, fuzzy
952
  msgid "Please provide a post type name"
953
  msgstr "(varsayılan: yazı türü adı)"
954
 
955
+ #: ../inc/post-types.php:977
956
  #, fuzzy
957
  msgid "Please do not use quotes in post type names or rewrite slugs"
958
  msgstr ""
959
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
960
 
961
+ #: ../inc/post-types.php:984
962
  #, php-format
963
  msgid "Please choose a different post type name. %s is already registered."
964
  msgstr ""
1408
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1409
  "içerikleri kalacaktır."
1410
 
1411
+ #: ../inc/taxonomies.php:557
1412
  msgid "Please provide a taxonomy to delete"
1413
  msgstr ""
1414
 
1415
+ #: ../inc/taxonomies.php:608
1416
  #, fuzzy
1417
  msgid "Please provide a taxonomy name"
1418
  msgstr "(varsayılan: sınıflandırma adı)"
1419
 
1420
+ #: ../inc/taxonomies.php:624
1421
  #, fuzzy
1422
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1423
  msgstr ""
1424
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1425
  "kullanmayınız."
1426
 
1427
+ #: ../inc/taxonomies.php:630
1428
  #, php-format
1429
  msgid "Please choose a different taxonomy name. %s is already used."
1430
  msgstr ""
languages/cpt-plugin-zh_CN.mo CHANGED
Binary file
languages/cpt-plugin-zh_CN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-24 10:40-0600\n"
6
- "PO-Revision-Date: 2015-02-24 10:41-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"
@@ -24,19 +24,19 @@ msgstr "附属到文章类型"
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
31
 
32
- #: ../custom-post-type-ui.php:319
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
 
39
- #: ../custom-post-type-ui.php:321
40
  #, php-format
41
  msgid ""
42
  "To get started with creating some post types, please visit %s and for "
@@ -45,165 +45,165 @@ msgid ""
45
  "as soon as possible."
46
  msgstr ""
47
 
48
- #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
49
  #, fuzzy
50
  msgid "Add/Edit Post Types"
51
  msgstr "编辑自定义文章类型"
52
 
53
- #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
54
  #, fuzzy
55
  msgid "Add/Edit Taxonomies"
56
  msgstr "内置类别"
57
 
58
- #: ../custom-post-type-ui.php:324 ../inc/support.php:23
59
  #, fuzzy
60
  msgid "Help/Support"
61
  msgstr "支持"
62
 
63
- #: ../custom-post-type-ui.php:325
64
  msgid "CPT UI Support Forum"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:341
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:345
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
- #: ../custom-post-type-ui.php:350
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:353
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:358
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:361
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:362
94
  msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:366
98
  msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
- #: ../custom-post-type-ui.php:403
102
  #, php-format
103
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:412
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:414
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
115
  msgid "Import/Export"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:476
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
- #: ../custom-post-type-ui.php:480
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
- #: ../custom-post-type-ui.php:506
129
  #, fuzzy
130
  msgid "Add New Post Type"
131
  msgstr "已附属文章类型"
132
 
133
- #: ../custom-post-type-ui.php:509
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "编辑自定义文章类型"
137
 
138
- #: ../custom-post-type-ui.php:513
139
  #, fuzzy
140
  msgid "Add New Taxonomy"
141
  msgstr "类别名称"
142
 
143
- #: ../custom-post-type-ui.php:516
144
  #, fuzzy
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
- #: ../custom-post-type-ui.php:520
149
  #, fuzzy
150
  msgid "Post Types"
151
  msgstr "文章类型名称"
152
 
153
- #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
154
  #, fuzzy
155
  msgid "Taxonomies"
156
  msgstr "内置类别"
157
 
158
- #: ../custom-post-type-ui.php:522
159
  msgid "Get Code"
160
  msgstr ""
161
 
162
- #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
163
  #: ../inc/taxonomies.php:319
164
  msgid "Settings"
165
  msgstr ""
166
 
167
- #: ../custom-post-type-ui.php:606
168
  msgid "Help"
169
  msgstr ""
170
 
171
- #: ../custom-post-type-ui.php:634
172
  #, php-format
173
  msgid "%s has been successfully added"
174
  msgstr ""
175
 
176
- #: ../custom-post-type-ui.php:636
177
  #, php-format
178
  msgid "%s has failed to be added"
179
  msgstr ""
180
 
181
- #: ../custom-post-type-ui.php:640
182
  #, php-format
183
  msgid "%s has been successfully updated"
184
  msgstr ""
185
 
186
- #: ../custom-post-type-ui.php:642
187
  #, php-format
188
  msgid "%s has failed to be updated"
189
  msgstr ""
190
 
191
- #: ../custom-post-type-ui.php:646
192
  #, php-format
193
  msgid "%s has been successfully deleted"
194
  msgstr ""
195
 
196
- #: ../custom-post-type-ui.php:648
197
  #, php-format
198
  msgid "%s has failed to be deleted"
199
  msgstr ""
200
 
201
- #: ../custom-post-type-ui.php:652
202
  #, php-format
203
  msgid "%s has been successfully imported"
204
  msgstr ""
205
 
206
- #: ../custom-post-type-ui.php:654
207
  #, php-format
208
  msgid "%s has failed to be imported"
209
  msgstr ""
@@ -407,7 +407,7 @@ msgstr ""
407
  #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
- msgstr "编辑"
411
 
412
  #: ../inc/post-types.php:154
413
  #, fuzzy
@@ -424,7 +424,7 @@ msgid "Click headings to reveal available options."
424
  msgstr ""
425
 
426
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
428
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
@@ -871,16 +871,16 @@ msgstr ""
871
  msgid "Built-in Taxonomies"
872
  msgstr "内置类别"
873
 
874
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:826
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -889,7 +889,7 @@ msgid ""
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:827
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -898,7 +898,7 @@ msgid ""
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
- #: ../inc/post-types.php:828
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -908,19 +908,19 @@ msgstr ""
908
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
909
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
910
 
911
- #: ../inc/post-types.php:907
912
  msgid "Please provide a post type to delete"
913
  msgstr ""
914
 
915
- #: ../inc/post-types.php:967
916
  msgid "Please provide a post type name"
917
  msgstr ""
918
 
919
- #: ../inc/post-types.php:985
920
  msgid "Please do not use quotes in post type names or rewrite slugs"
921
  msgstr ""
922
 
923
- #: ../inc/post-types.php:992
924
  #, php-format
925
  msgid "Please choose a different post type name. %s is already registered."
926
  msgstr ""
@@ -1338,19 +1338,19 @@ msgstr ""
1338
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1339
  "的重新创建您的类别,并且这些内容依旧存在。"
1340
 
1341
- #: ../inc/taxonomies.php:556
1342
  msgid "Please provide a taxonomy to delete"
1343
  msgstr ""
1344
 
1345
- #: ../inc/taxonomies.php:607
1346
  msgid "Please provide a taxonomy name"
1347
  msgstr ""
1348
 
1349
- #: ../inc/taxonomies.php:623
1350
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1351
  msgstr ""
1352
 
1353
- #: ../inc/taxonomies.php:629
1354
  #, php-format
1355
  msgid "Please choose a different taxonomy name. %s is already used."
1356
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-03-05 00:59-0600\n"
6
+ "PO-Revision-Date: 2015-03-05 01:00-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"
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
31
 
32
+ #: ../custom-post-type-ui.php:321
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
 
39
+ #: ../custom-post-type-ui.php:323
40
  #, php-format
41
  msgid ""
42
  "To get started with creating some post types, please visit %s and for "
45
  "as soon as possible."
46
  msgstr ""
47
 
48
+ #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
49
  #, fuzzy
50
  msgid "Add/Edit Post Types"
51
  msgstr "编辑自定义文章类型"
52
 
53
+ #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
54
  #, fuzzy
55
  msgid "Add/Edit Taxonomies"
56
  msgstr "内置类别"
57
 
58
+ #: ../custom-post-type-ui.php:326 ../inc/support.php:23
59
  #, fuzzy
60
  msgid "Help/Support"
61
  msgstr "支持"
62
 
63
+ #: ../custom-post-type-ui.php:327
64
  msgid "CPT UI Support Forum"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:343
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:347
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
+ #: ../custom-post-type-ui.php:352
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:355
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:360
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:363
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:364
94
  msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:368
98
  msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
+ #: ../custom-post-type-ui.php:405
102
  #, php-format
103
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:414
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:416
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
115
  msgid "Import/Export"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:478
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
+ #: ../custom-post-type-ui.php:482
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
+ #: ../custom-post-type-ui.php:508
129
  #, fuzzy
130
  msgid "Add New Post Type"
131
  msgstr "已附属文章类型"
132
 
133
+ #: ../custom-post-type-ui.php:511
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "编辑自定义文章类型"
137
 
138
+ #: ../custom-post-type-ui.php:515
139
  #, fuzzy
140
  msgid "Add New Taxonomy"
141
  msgstr "类别名称"
142
 
143
+ #: ../custom-post-type-ui.php:518
144
  #, fuzzy
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
+ #: ../custom-post-type-ui.php:522
149
  #, fuzzy
150
  msgid "Post Types"
151
  msgstr "文章类型名称"
152
 
153
+ #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
154
  #, fuzzy
155
  msgid "Taxonomies"
156
  msgstr "内置类别"
157
 
158
+ #: ../custom-post-type-ui.php:524
159
  msgid "Get Code"
160
  msgstr ""
161
 
162
+ #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
163
  #: ../inc/taxonomies.php:319
164
  msgid "Settings"
165
  msgstr ""
166
 
167
+ #: ../custom-post-type-ui.php:608
168
  msgid "Help"
169
  msgstr ""
170
 
171
+ #: ../custom-post-type-ui.php:636
172
  #, php-format
173
  msgid "%s has been successfully added"
174
  msgstr ""
175
 
176
+ #: ../custom-post-type-ui.php:638
177
  #, php-format
178
  msgid "%s has failed to be added"
179
  msgstr ""
180
 
181
+ #: ../custom-post-type-ui.php:642
182
  #, php-format
183
  msgid "%s has been successfully updated"
184
  msgstr ""
185
 
186
+ #: ../custom-post-type-ui.php:644
187
  #, php-format
188
  msgid "%s has failed to be updated"
189
  msgstr ""
190
 
191
+ #: ../custom-post-type-ui.php:648
192
  #, php-format
193
  msgid "%s has been successfully deleted"
194
  msgstr ""
195
 
196
+ #: ../custom-post-type-ui.php:650
197
  #, php-format
198
  msgid "%s has failed to be deleted"
199
  msgstr ""
200
 
201
+ #: ../custom-post-type-ui.php:654
202
  #, php-format
203
  msgid "%s has been successfully imported"
204
  msgstr ""
205
 
206
+ #: ../custom-post-type-ui.php:656
207
  #, php-format
208
  msgid "%s has failed to be imported"
209
  msgstr ""
407
  #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
+ msgstr "附属到文章类型"
411
 
412
  #: ../inc/post-types.php:154
413
  #, fuzzy
424
  msgstr ""
425
 
426
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
428
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
871
  msgid "Built-in Taxonomies"
872
  msgstr "内置类别"
873
 
874
+ #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
+ #: ../inc/post-types.php:817
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:818
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
+ #: ../inc/post-types.php:819
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
908
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
909
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
910
 
911
+ #: ../inc/post-types.php:899
912
  msgid "Please provide a post type to delete"
913
  msgstr ""
914
 
915
+ #: ../inc/post-types.php:959
916
  msgid "Please provide a post type name"
917
  msgstr ""
918
 
919
+ #: ../inc/post-types.php:977
920
  msgid "Please do not use quotes in post type names or rewrite slugs"
921
  msgstr ""
922
 
923
+ #: ../inc/post-types.php:984
924
  #, php-format
925
  msgid "Please choose a different post type name. %s is already registered."
926
  msgstr ""
1338
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1339
  "的重新创建您的类别,并且这些内容依旧存在。"
1340
 
1341
+ #: ../inc/taxonomies.php:557
1342
  msgid "Please provide a taxonomy to delete"
1343
  msgstr ""
1344
 
1345
+ #: ../inc/taxonomies.php:608
1346
  msgid "Please provide a taxonomy name"
1347
  msgstr ""
1348
 
1349
+ #: ../inc/taxonomies.php:624
1350
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1351
  msgstr ""
1352
 
1353
+ #: ../inc/taxonomies.php:630
1354
  #, php-format
1355
  msgid "Please choose a different taxonomy name. %s is already used."
1356
  msgstr ""
languages/custom-post-type-ui.mo CHANGED
Binary file
languages/custom-post-type-ui.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
- "POT-Creation-Date: 2015-02-24 10:40-0600\n"
5
- "PO-Revision-Date: 2015-02-24 10:40-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
@@ -24,18 +24,18 @@ msgstr ""
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
- #: ../custom-post-type-ui.php:319
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:321
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,154 +44,154 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
- #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
- #: ../custom-post-type-ui.php:324 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
- #: ../custom-post-type-ui.php:325
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
- #: ../custom-post-type-ui.php:341
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:345
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:350
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
- #: ../custom-post-type-ui.php:353
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:358
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:361
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:362
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:366
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:403
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
- #: ../custom-post-type-ui.php:412
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:414
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:476
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:480
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:506
123
  msgid "Add New Post Type"
124
  msgstr ""
125
 
126
- #: ../custom-post-type-ui.php:509
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
- #: ../custom-post-type-ui.php:513
131
  msgid "Add New Taxonomy"
132
  msgstr ""
133
 
134
- #: ../custom-post-type-ui.php:516
135
  msgid "Edit Taxonomies"
136
  msgstr ""
137
 
138
- #: ../custom-post-type-ui.php:520
139
  msgid "Post Types"
140
  msgstr ""
141
 
142
- #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
143
  msgid "Taxonomies"
144
  msgstr ""
145
 
146
- #: ../custom-post-type-ui.php:522
147
  msgid "Get Code"
148
  msgstr ""
149
 
150
- #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
151
  #: ../inc/taxonomies.php:319
152
  msgid "Settings"
153
  msgstr ""
154
 
155
- #: ../custom-post-type-ui.php:606
156
  msgid "Help"
157
  msgstr ""
158
 
159
- #: ../custom-post-type-ui.php:634
160
  #, php-format
161
  msgid "%s has been successfully added"
162
  msgstr ""
163
 
164
- #: ../custom-post-type-ui.php:636
165
  #, php-format
166
  msgid "%s has failed to be added"
167
  msgstr ""
168
 
169
- #: ../custom-post-type-ui.php:640
170
  #, php-format
171
  msgid "%s has been successfully updated"
172
  msgstr ""
173
 
174
- #: ../custom-post-type-ui.php:642
175
  #, php-format
176
  msgid "%s has failed to be updated"
177
  msgstr ""
178
 
179
- #: ../custom-post-type-ui.php:646
180
  #, php-format
181
  msgid "%s has been successfully deleted"
182
  msgstr ""
183
 
184
- #: ../custom-post-type-ui.php:648
185
  #, php-format
186
  msgid "%s has failed to be deleted"
187
  msgstr ""
188
 
189
- #: ../custom-post-type-ui.php:652
190
  #, php-format
191
  msgid "%s has been successfully imported"
192
  msgstr ""
193
 
194
- #: ../custom-post-type-ui.php:654
195
  #, php-format
196
  msgid "%s has failed to be imported"
197
  msgstr ""
@@ -399,7 +399,7 @@ msgid "Click headings to reveal available options."
399
  msgstr ""
400
 
401
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
402
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
403
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
404
  msgid "Click to expand"
405
  msgstr ""
@@ -836,16 +836,16 @@ msgstr ""
836
  msgid "Built-in Taxonomies"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
840
  #, php-format
841
  msgid "Adds %s support"
842
  msgstr ""
843
 
844
- #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
845
  msgid "Starter Notes"
846
  msgstr ""
847
 
848
- #: ../inc/post-types.php:826
849
  #, php-format
850
  msgid ""
851
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -854,7 +854,7 @@ msgid ""
854
  "revision, nav_menu_item."
855
  msgstr ""
856
 
857
- #: ../inc/post-types.php:827
858
  #, php-format
859
  msgid ""
860
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -863,7 +863,7 @@ msgid ""
863
  "post type name. Hover over the question mark for more details."
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:828
867
  #, php-format
868
  msgid ""
869
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -871,19 +871,19 @@ msgid ""
871
  "the content will still exist."
872
  msgstr ""
873
 
874
- #: ../inc/post-types.php:907
875
  msgid "Please provide a post type to delete"
876
  msgstr ""
877
 
878
- #: ../inc/post-types.php:967
879
  msgid "Please provide a post type name"
880
  msgstr ""
881
 
882
- #: ../inc/post-types.php:985
883
  msgid "Please do not use quotes in post type names or rewrite slugs"
884
  msgstr ""
885
 
886
- #: ../inc/post-types.php:992
887
  #, php-format
888
  msgid "Please choose a different post type name. %s is already registered."
889
  msgstr ""
@@ -1283,19 +1283,19 @@ msgid ""
1283
  "terms in the database."
1284
  msgstr ""
1285
 
1286
- #: ../inc/taxonomies.php:556
1287
  msgid "Please provide a taxonomy to delete"
1288
  msgstr ""
1289
 
1290
- #: ../inc/taxonomies.php:607
1291
  msgid "Please provide a taxonomy name"
1292
  msgstr ""
1293
 
1294
- #: ../inc/taxonomies.php:623
1295
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1296
  msgstr ""
1297
 
1298
- #: ../inc/taxonomies.php:629
1299
  #, php-format
1300
  msgid "Please choose a different taxonomy name. %s is already used."
1301
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
+ "POT-Creation-Date: 2015-03-05 00:59-0600\n"
5
+ "PO-Revision-Date: 2015-03-05 00:59-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
+ #: ../custom-post-type-ui.php:321
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
+ #: ../custom-post-type-ui.php:323
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
44
  "as soon as possible."
45
  msgstr ""
46
 
47
+ #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
+ #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
+ #: ../custom-post-type-ui.php:326 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
+ #: ../custom-post-type-ui.php:327
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
+ #: ../custom-post-type-ui.php:343
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:347
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:352
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
+ #: ../custom-post-type-ui.php:355
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:360
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:363
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:364
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:368
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:405
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
+ #: ../custom-post-type-ui.php:414
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:416
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:478
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:482
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:508
123
  msgid "Add New Post Type"
124
  msgstr ""
125
 
126
+ #: ../custom-post-type-ui.php:511
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
+ #: ../custom-post-type-ui.php:515
131
  msgid "Add New Taxonomy"
132
  msgstr ""
133
 
134
+ #: ../custom-post-type-ui.php:518
135
  msgid "Edit Taxonomies"
136
  msgstr ""
137
 
138
+ #: ../custom-post-type-ui.php:522
139
  msgid "Post Types"
140
  msgstr ""
141
 
142
+ #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
143
  msgid "Taxonomies"
144
  msgstr ""
145
 
146
+ #: ../custom-post-type-ui.php:524
147
  msgid "Get Code"
148
  msgstr ""
149
 
150
+ #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
151
  #: ../inc/taxonomies.php:319
152
  msgid "Settings"
153
  msgstr ""
154
 
155
+ #: ../custom-post-type-ui.php:608
156
  msgid "Help"
157
  msgstr ""
158
 
159
+ #: ../custom-post-type-ui.php:636
160
  #, php-format
161
  msgid "%s has been successfully added"
162
  msgstr ""
163
 
164
+ #: ../custom-post-type-ui.php:638
165
  #, php-format
166
  msgid "%s has failed to be added"
167
  msgstr ""
168
 
169
+ #: ../custom-post-type-ui.php:642
170
  #, php-format
171
  msgid "%s has been successfully updated"
172
  msgstr ""
173
 
174
+ #: ../custom-post-type-ui.php:644
175
  #, php-format
176
  msgid "%s has failed to be updated"
177
  msgstr ""
178
 
179
+ #: ../custom-post-type-ui.php:648
180
  #, php-format
181
  msgid "%s has been successfully deleted"
182
  msgstr ""
183
 
184
+ #: ../custom-post-type-ui.php:650
185
  #, php-format
186
  msgid "%s has failed to be deleted"
187
  msgstr ""
188
 
189
+ #: ../custom-post-type-ui.php:654
190
  #, php-format
191
  msgid "%s has been successfully imported"
192
  msgstr ""
193
 
194
+ #: ../custom-post-type-ui.php:656
195
  #, php-format
196
  msgid "%s has failed to be imported"
197
  msgstr ""
399
  msgstr ""
400
 
401
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
402
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
403
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
404
  msgid "Click to expand"
405
  msgstr ""
836
  msgid "Built-in Taxonomies"
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
840
  #, php-format
841
  msgid "Adds %s support"
842
  msgstr ""
843
 
844
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
845
  msgid "Starter Notes"
846
  msgstr ""
847
 
848
+ #: ../inc/post-types.php:817
849
  #, php-format
850
  msgid ""
851
  "Post Type names should have %smax 20 characters%s, and only contain "
854
  "revision, nav_menu_item."
855
  msgstr ""
856
 
857
+ #: ../inc/post-types.php:818
858
  #, php-format
859
  msgid ""
860
  "If you are unfamiliar with the advanced post type settings, just fill in the "
863
  "post type name. Hover over the question mark for more details."
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:819
867
  #, php-format
868
  msgid ""
869
  "Deleting custom post types will %sNOT%s delete any content into the database "
871
  "the content will still exist."
872
  msgstr ""
873
 
874
+ #: ../inc/post-types.php:899
875
  msgid "Please provide a post type to delete"
876
  msgstr ""
877
 
878
+ #: ../inc/post-types.php:959
879
  msgid "Please provide a post type name"
880
  msgstr ""
881
 
882
+ #: ../inc/post-types.php:977
883
  msgid "Please do not use quotes in post type names or rewrite slugs"
884
  msgstr ""
885
 
886
+ #: ../inc/post-types.php:984
887
  #, php-format
888
  msgid "Please choose a different post type name. %s is already registered."
889
  msgstr ""
1283
  "terms in the database."
1284
  msgstr ""
1285
 
1286
+ #: ../inc/taxonomies.php:557
1287
  msgid "Please provide a taxonomy to delete"
1288
  msgstr ""
1289
 
1290
+ #: ../inc/taxonomies.php:608
1291
  msgid "Please provide a taxonomy name"
1292
  msgstr ""
1293
 
1294
+ #: ../inc/taxonomies.php:624
1295
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1296
  msgstr ""
1297
 
1298
+ #: ../inc/taxonomies.php:630
1299
  #, php-format
1300
  msgid "Please choose a different taxonomy name. %s is already used."
1301
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
- Stable tag: 1.0.3
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,13 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
40
  = 1.0.3 =
41
  * Fix logic error regarding string "0" evaluating to false when checked for not empty.
42
  * Fix for taxonomy with_front boolean value not evaluating correctly.
@@ -212,6 +219,13 @@ Implied credit to:
212
 
213
  == Upgrade Notice ==
214
 
 
 
 
 
 
 
 
215
  = 1.0.3 =
216
  * Fix logic error regarding string "0" evaluating to false when checked for not empty.
217
  * Fix for taxonomy with_front boolean value not evaluating correctly.
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
+ Stable tag: 1.0.4
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.0.4 =
41
+ * Fixed incorrect boolean order for hierarchical taxonomies and default value.
42
+ * Fixed missing closing div tags.
43
+ * Default menu position to null instead of empty string.
44
+ * Undefined index notice cleanup.
45
+ * Remove unnecessary hook.
46
+
47
  = 1.0.3 =
48
  * Fix logic error regarding string "0" evaluating to false when checked for not empty.
49
  * Fix for taxonomy with_front boolean value not evaluating correctly.
219
 
220
  == Upgrade Notice ==
221
 
222
+ = 1.0.4 =
223
+ * Fixed incorrect boolean order for hierarchical taxonomies and default value.
224
+ * Fixed missing closing div tags.
225
+ * Default menu position to null instead of empty string.
226
+ * Undefined index notice cleanup.
227
+ * Remove unnecessary hook.
228
+
229
  = 1.0.3 =
230
  * Fix logic error regarding string "0" evaluating to false when checked for not empty.
231
  * Fix for taxonomy with_front boolean value not evaluating correctly.