Custom Post Type UI - Version 1.0.2

Version Description

  • Fix issue with checked checkboxes for post type associations for taxonomies.
  • Fix "Get Code" spot related to post type associations for taxonomies.
  • Update some text strings after localization feedback.
  • Fix typos in textdomain for two spots.
  • Updating progressing translation files.
  • Fix value for with_front parameter.
  • Fix error in boolean type for map_meta_cap.
  • Fix missing use of query_var slug if present for taxonomies.
Download this release

Release Info

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

Code changes from version 1.0.1 to 1.0.2

custom-post-type-ui.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios.com
7
- Version: 1.0.1
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.1' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
@@ -113,7 +113,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
113
  * @param string $name Post type name being registered.
114
  * @param array $post_type All parameters for post type registration.
115
  */
116
- $post_type['map_meta_cap'] = apply_filters( 'cptui_map_meta_cap', 'true', $post_type['name'], $post_type );
117
 
118
  /**
119
  * Filters custom supports parameters for 3rd party plugins.
@@ -160,7 +160,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
160
 
161
  $withfront = ( !empty( $post_type['rewrite_withfront'] ) ) ? disp_boolean( $post_type['rewrite_withfront'] ) : '';
162
  if ( !empty( $withfront ) ) {
163
- $rewrite['with_front'] = $post_type['rewrite_withfront'];
164
  }
165
  }
166
 
@@ -272,7 +272,9 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
272
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
273
  $taxonomy['query_var'] = get_disp_boolean( $taxonomy['query_var'] );
274
  }
275
- $query_var_slug = ( !empty( $taxonomy['query_var_slug'] ) ) ? $taxonomy['query_var_slug'] : '';
 
 
276
 
277
  $args = array(
278
  'labels' => $labels,
@@ -280,7 +282,6 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
280
  'hierarchical' => get_disp_boolean( $taxonomy['hierarchical'] ),
281
  'show_ui' => get_disp_boolean( $taxonomy['show_ui'] ),
282
  'query_var' => $taxonomy['query_var'],
283
- 'query_var_slug' => $query_var_slug,
284
  'rewrite' => $rewrite,
285
  'show_admin_column' => get_disp_boolean( $taxonomy['show_admin_column'] )
286
  );
@@ -404,7 +405,7 @@ function cptui_footer( $original = '' ) {
404
  }
405
 
406
  return sprintf(
407
- __( '%s version %s by %s - %s %s · %s · %s · %s', 'cpt-plugin' ),
408
  sprintf(
409
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
410
  __( 'Custom Post Type UI', 'cpt-plugin' )
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.com
7
+ Version: 1.0.2
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
15
  exit;
16
  }
17
 
18
+ define( 'CPT_VERSION', '1.0.2' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
113
  * @param string $name Post type name being registered.
114
  * @param array $post_type All parameters for post type registration.
115
  */
116
+ $post_type['map_meta_cap'] = apply_filters( 'cptui_map_meta_cap', true, $post_type['name'], $post_type );
117
 
118
  /**
119
  * Filters custom supports parameters for 3rd party plugins.
160
 
161
  $withfront = ( !empty( $post_type['rewrite_withfront'] ) ) ? disp_boolean( $post_type['rewrite_withfront'] ) : '';
162
  if ( !empty( $withfront ) ) {
163
+ $rewrite['with_front'] = get_disp_boolean( $post_type['rewrite_withfront'] );
164
  }
165
  }
166
 
272
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
273
  $taxonomy['query_var'] = get_disp_boolean( $taxonomy['query_var'] );
274
  }
275
+ if ( true === $taxonomy['query_var'] && !empty( $taxonomy['query_var_slug'] ) ) {
276
+ $taxonomy['query_var'] = $taxonomy['query_var_slug'];
277
+ }
278
 
279
  $args = array(
280
  'labels' => $labels,
282
  'hierarchical' => get_disp_boolean( $taxonomy['hierarchical'] ),
283
  'show_ui' => get_disp_boolean( $taxonomy['show_ui'] ),
284
  'query_var' => $taxonomy['query_var'],
 
285
  'rewrite' => $rewrite,
286
  'show_admin_column' => get_disp_boolean( $taxonomy['show_admin_column'] )
287
  );
405
  }
406
 
407
  return sprintf(
408
+ __( '%s version %s by %s - %s %s %s &middot; %s &middot; %s', 'cpt-plugin' ),
409
  sprintf(
410
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
411
  __( 'Custom Post Type UI', 'cpt-plugin' )
inc/import_export.php CHANGED
@@ -166,8 +166,8 @@ function cptui_register_my_taxes() {
166
  function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
167
 
168
  $post_types = "''";
169
- if ( is_array( $taxonomy['object_type'] ) ) {
170
- $post_types = 'array( \'' . implode( '\', \'', $taxonomy['object_type'] ) . '\' )';
171
  }
172
 
173
  ?>
166
  function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
167
 
168
  $post_types = "''";
169
+ if ( is_array( $taxonomy['object_types'] ) ) {
170
+ $post_types = 'array( \'' . implode( '\', \'', $taxonomy['object_types'] ) . '\' )';
171
  }
172
 
173
  ?>
inc/post-types.php CHANGED
@@ -527,7 +527,7 @@ function cptui_manage_post_types() {
527
  echo $ui->get_td_end() . $ui->get_tr_end();
528
 
529
  echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Show in Menu', 'cpt-plugin' );
530
- echo $ui->get_p( __( '"Show UI" must be "true". If an existing top level page such as "tools.php" is indicated for second input, post type will be sub menu of that.', 'cpt-plugins' ) );
531
  echo $ui->get_th_end() . $ui->get_td_start();
532
 
533
  /*
@@ -740,7 +740,7 @@ function cptui_manage_post_types() {
740
  'wrap' => false
741
  ) );
742
 
743
- echo $ui->get_p( __( 'Use the option below to explicitly set "supports" to false.', 'cpt-plugins' ) );
744
 
745
  echo $ui->get_check_input( array(
746
  'checkvalue' => 'none',
527
  echo $ui->get_td_end() . $ui->get_tr_end();
528
 
529
  echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Show in Menu', 'cpt-plugin' );
530
+ echo $ui->get_p( __( '"Show UI" must be "true". If an existing top level page such as "tools.php" is indicated for second input, post type will be sub menu of that.', 'cpt-plugin' ) );
531
  echo $ui->get_th_end() . $ui->get_td_start();
532
 
533
  /*
740
  'wrap' => false
741
  ) );
742
 
743
+ echo $ui->get_p( __( 'Use the option below to explicitly set "supports" to false.', 'cpt-plugin' ) );
744
 
745
  echo $ui->get_check_input( array(
746
  'checkvalue' => 'none',
inc/support.php CHANGED
@@ -110,7 +110,7 @@ function cptui_support() {
110
  <li>
111
  <span class="question"><?php _e( 'How do I add a newly registered taxonomy to a post type that already exists?', 'cpt-plugin' ); ?></span>
112
  <div class="answer"><?php printf(
113
- __( 'Check out the %s function for documentation and usage examples.'),
114
  '<a href="http://codex.wordpress.org/Function_Reference/register_taxonomy_for_object_type" target="_blank">register_taxonomy_for_object_type()</a>'
115
  ); ?>
116
  </div>
@@ -126,7 +126,7 @@ function cptui_support() {
126
  ); ?></div>
127
  </li>
128
  <li>
129
- <span class="question"><?php _e( 'How do I filter the "enter title here" text in the post editor screen.', 'cpt-plugin' ); ?></span>
130
  <div class="answer"><p><?php _e( 'Change text inside the post/page editor title field. Should be able to adapt as necessary.', 'cpt-plugin' ); ?></p>
131
  <pre><code>function my_custom_title_text( $title ){
132
  global $post;
110
  <li>
111
  <span class="question"><?php _e( 'How do I add a newly registered taxonomy to a post type that already exists?', 'cpt-plugin' ); ?></span>
112
  <div class="answer"><?php printf(
113
+ __( 'Check out the %s function for documentation and usage examples.', 'cpt-plugin' ),
114
  '<a href="http://codex.wordpress.org/Function_Reference/register_taxonomy_for_object_type" target="_blank">register_taxonomy_for_object_type()</a>'
115
  ); ?>
116
  </div>
126
  ); ?></div>
127
  </li>
128
  <li>
129
+ <span class="question"><?php _e( 'How do I filter the "enter title here" text in the post editor screen?', 'cpt-plugin' ); ?></span>
130
  <div class="answer"><p><?php _e( 'Change text inside the post/page editor title field. Should be able to adapt as necessary.', 'cpt-plugin' ); ?></p>
131
  <pre><code>function my_custom_title_text( $title ){
132
  global $post;
inc/taxonomies.php CHANGED
@@ -148,7 +148,7 @@ function cptui_manage_taxonomies() {
148
  */
149
  echo $ui->get_check_input( array(
150
  'checkvalue' => $post_type->name,
151
- 'checked' => ( !empty( $current['object_type'] ) && is_array( $current['object_type'] ) && in_array( $post_type->name, $current['object_type'] ) ) ? 'true' : 'false',
152
  'name' => $post_type->name,
153
  'namearray' => 'cpt_post_types',
154
  'textvalue' => $post_type->name,
148
  */
149
  echo $ui->get_check_input( array(
150
  'checkvalue' => $post_type->name,
151
+ 'checked' => ( !empty( $current['object_types'] ) && is_array( $current['object_types'] ) && in_array( $post_type->name, $current['object_types'] ) ) ? 'true' : 'false',
152
  'name' => $post_type->name,
153
  'namearray' => 'cpt_post_types',
154
  'textvalue' => $post_type->name,
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,10 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2015-02-10 19:34-0600\n"
5
- "PO-Revision-Date: 2015-02-10 19:34-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
- "Language-Team: Pascal Kläres <pascal.klaeres@gmail.com>\n"
 
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -17,18 +18,16 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
  #: ../custom-post-type-ui.php:57
20
- #, fuzzy
21
  msgid "Custom Post Types"
22
- msgstr "Verwalte Post Types"
23
 
24
  #: ../custom-post-type-ui.php:57
25
  msgid "CPT UI"
26
- msgstr ""
27
 
28
  #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
29
- #, fuzzy
30
  msgid "Custom Post Type UI"
31
- msgstr "Mit Post Type verbinden"
32
 
33
  #: ../custom-post-type-ui.php:323
34
  msgid ""
@@ -36,6 +35,10 @@ msgid ""
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
 
 
 
 
39
 
40
  #: ../custom-post-type-ui.php:325
41
  #, php-format
@@ -45,69 +48,74 @@ msgid ""
45
  "there fits your issue, visit our %s and we will try to get to your question "
46
  "as soon as possible."
47
  msgstr ""
 
 
 
 
 
48
 
49
  #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
50
- #, fuzzy
51
  msgid "Add/Edit Post Types"
52
- msgstr "Verbundene Post Types"
53
 
54
  #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
55
- #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
- msgstr "Bearbeiten"
58
 
59
  #: ../custom-post-type-ui.php:328 ../inc/support.php:23
60
- #, fuzzy
61
  msgid "Help/Support"
62
- msgstr "Unterstütze die Entwicklung dieses Plugins!"
63
 
64
  #: ../custom-post-type-ui.php:329
65
  msgid "CPT UI Support Forum"
66
- msgstr ""
67
 
68
  #: ../custom-post-type-ui.php:345
69
  msgid "Help Support This Plugin!"
70
- msgstr "Unterstütze die Entwicklung dieses Plugins!"
71
 
72
  #: ../custom-post-type-ui.php:349
73
  msgid "Professional WordPress<br />Third Edition"
74
- msgstr ""
75
 
76
  #: ../custom-post-type-ui.php:354
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
 
 
81
 
82
  #: ../custom-post-type-ui.php:357
83
  msgid "Professional WordPress<br />Plugin Development"
84
- msgstr ""
85
 
86
  #: ../custom-post-type-ui.php:362
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
 
 
89
 
90
  #: ../custom-post-type-ui.php:365
91
  msgid "PayPal Donation"
92
- msgstr "Spende über PayPal"
93
 
94
  #: ../custom-post-type-ui.php:366
95
- #, fuzzy
96
  msgid "Please donate to the development of Custom Post Type UI:"
97
- msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
98
 
99
  #: ../custom-post-type-ui.php:370
100
  msgid "PayPal - The safer, easier way to pay online!"
101
- msgstr ""
102
 
103
  #: ../custom-post-type-ui.php:407
104
  #, php-format
105
- msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
106
- msgstr ""
107
 
108
  #: ../custom-post-type-ui.php:416
109
  msgid "Please Report Bugs"
110
- msgstr "Fehler melden"
111
 
112
  #: ../custom-post-type-ui.php:418
113
  msgid "Follow on Twitter:"
@@ -115,7 +123,7 @@ msgstr "Auf Twitter folgen:"
115
 
116
  #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
117
  msgid "Import/Export"
118
- msgstr ""
119
 
120
  #: ../custom-post-type-ui.php:480
121
  msgid "Manage Taxonomies"
@@ -127,27 +135,23 @@ msgstr "Verwalte Post Types"
127
 
128
  #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
129
  msgid "Add New"
130
- msgstr "Hinzufügen"
131
 
132
  #: ../custom-post-type-ui.php:513
133
- #, fuzzy
134
  msgid "Edit Post Types"
135
- msgstr "Verbundene Post Types"
136
 
137
  #: ../custom-post-type-ui.php:517
138
- #, fuzzy
139
  msgid "Edit Taxonomies"
140
- msgstr "Bearbeiten"
141
 
142
  #: ../custom-post-type-ui.php:521
143
- #, fuzzy
144
  msgid "Post Types"
145
- msgstr "Verwalte Post Types"
146
 
147
  #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
148
- #, fuzzy
149
  msgid "Taxonomies"
150
- msgstr "Verwalte Taxonomien"
151
 
152
  #: ../custom-post-type-ui.php:523
153
  msgid "Get Code"
@@ -156,52 +160,51 @@ msgstr "Code anzeigen"
156
  #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
157
  #: ../inc/taxonomies.php:319
158
  msgid "Settings"
159
- msgstr ""
160
 
161
  #: ../custom-post-type-ui.php:607
162
- #, fuzzy
163
  msgid "Help"
164
- msgstr "Wir helfen Ihnen – egal, wo Sie sind."
165
 
166
  #: ../custom-post-type-ui.php:635
167
  #, php-format
168
  msgid "%s has been successfully added"
169
- msgstr ""
170
 
171
  #: ../custom-post-type-ui.php:637
172
  #, php-format
173
  msgid "%s has failed to be added"
174
- msgstr ""
175
 
176
  #: ../custom-post-type-ui.php:641
177
  #, php-format
178
  msgid "%s has been successfully updated"
179
- msgstr ""
180
 
181
  #: ../custom-post-type-ui.php:643
182
  #, php-format
183
  msgid "%s has failed to be updated"
184
- msgstr ""
185
 
186
  #: ../custom-post-type-ui.php:647
187
  #, php-format
188
  msgid "%s has been successfully deleted"
189
- msgstr ""
190
 
191
  #: ../custom-post-type-ui.php:649
192
  #, php-format
193
  msgid "%s has failed to be deleted"
194
- msgstr ""
195
 
196
  #: ../custom-post-type-ui.php:653
197
  #, php-format
198
  msgid "%s has been successfully imported"
199
- msgstr ""
200
 
201
  #: ../custom-post-type-ui.php:655
202
  #, php-format
203
  msgid "%s has failed to be imported"
204
- msgstr ""
205
 
206
  #: ../inc/import_export.php:52
207
  msgid ""
@@ -210,56 +213,64 @@ msgid ""
210
  "export functionality. If you are moving away from Custom Post Type UI, use "
211
  "the information in the \"Get Code\" tab."
212
  msgstr ""
 
 
 
 
 
213
 
214
  #: ../inc/import_export.php:55
215
  msgid "NOTE"
216
- msgstr ""
217
 
218
  #: ../inc/import_export.php:56
219
  msgid "This will not export the associated posts, just the settings."
220
  msgstr ""
 
221
 
222
  #: ../inc/import_export.php:63
223
- #, fuzzy
224
  msgid "Import Post Types"
225
- msgstr "Verwalte Post Types"
226
 
227
  #: ../inc/import_export.php:65 ../inc/import_export.php:91
228
  msgid "Paste content here."
229
- msgstr ""
230
 
231
  #: ../inc/import_export.php:66 ../inc/import_export.php:92
232
  msgid "Note:"
233
- msgstr ""
234
 
235
  #: ../inc/import_export.php:66 ../inc/import_export.php:92
236
  msgid "Importing will overwrite previous registered settings."
237
- msgstr ""
238
 
239
  #: ../inc/import_export.php:67
240
  msgid ""
241
  "To import post types from a different WordPress site, paste the exported "
242
  "content from that site and click the \"Import\" button."
243
  msgstr ""
 
 
244
 
245
  #: ../inc/import_export.php:68 ../inc/import_export.php:94
246
  msgid "Import"
247
- msgstr ""
248
 
249
  #: ../inc/import_export.php:72
250
- #, fuzzy
251
  msgid "Export Post Types"
252
- msgstr "Verwalte Post Types"
253
 
254
  #: ../inc/import_export.php:79
255
  msgid "No post types registered yet."
256
- msgstr ""
257
 
258
  #: ../inc/import_export.php:82 ../inc/import_export.php:107
259
  msgid ""
260
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
261
  "(Mac)."
262
  msgstr ""
 
 
263
 
264
  #: ../inc/import_export.php:83
265
  msgid ""
@@ -267,26 +278,31 @@ msgid ""
267
  "WordPress site. You can also use this to simply back up your post type "
268
  "settings."
269
  msgstr ""
 
 
 
 
270
 
271
  #: ../inc/import_export.php:89
272
- #, fuzzy
273
  msgid "Import Taxonomies"
274
- msgstr "Verwalte Taxonomien"
275
 
276
  #: ../inc/import_export.php:93
277
  msgid ""
278
  "To import taxonomies from a different WordPress site, paste the exported "
279
  "content from that site and click the \"Import\" button."
280
  msgstr ""
 
 
 
281
 
282
  #: ../inc/import_export.php:98
283
- #, fuzzy
284
  msgid "Export Taxonomies"
285
- msgstr "Verwalte Taxonomien"
286
 
287
  #: ../inc/import_export.php:104
288
  msgid "No taxonomies registered yet."
289
- msgstr ""
290
 
291
  #: ../inc/import_export.php:108
292
  msgid ""
@@ -294,57 +310,61 @@ msgid ""
294
  "WordPress site. You can also use this to simply back up your taxonomy "
295
  "settings."
296
  msgstr ""
 
 
 
 
297
 
298
  #: ../inc/import_export.php:116
299
- #, fuzzy
300
  msgid "Get Post Type and Taxonomy Code"
301
- msgstr "Erstelle einen neuen Custom Post Type oder eine neue Taxonomie"
302
 
303
  #: ../inc/import_export.php:118
304
- #, fuzzy
305
  msgid "All CPT UI Post Types"
306
- msgstr "Zusätzliche Custom Post Types"
307
 
308
  #: ../inc/import_export.php:119 ../inc/import_export.php:123
309
  msgid "Copy/paste the code below into your functions.php file."
310
  msgstr ""
 
 
311
 
312
  #: ../inc/import_export.php:122
313
- #, fuzzy
314
  msgid "All CPT UI Taxonomies"
315
- msgstr "Verbundene Taxonomien"
316
 
317
  #: ../inc/import_export.php:153
318
  msgid "No taxonomies to display at this time"
319
- msgstr ""
320
 
321
  #: ../inc/import_export.php:223
322
  msgid "No post types to display at this time"
323
- msgstr ""
324
 
325
  #: ../inc/import_export.php:342
326
- #, fuzzy
327
  msgid "Post types"
328
- msgstr "Verwalte Post Types"
329
 
330
  #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
331
  msgid "Are you sure you want to delete this?"
332
- msgstr ""
333
 
334
  #: ../inc/post-types.php:78
335
  msgid ""
336
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
337
  "Changing that value registers a new post type entry for your install."
338
  msgstr ""
 
 
 
339
 
340
  #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
341
  msgid "Select"
342
- msgstr ""
343
 
344
  #: ../inc/post-types.php:103
345
- #, fuzzy
346
  msgid "Post Type Slug"
347
- msgstr "Post Type Name"
348
 
349
  #: ../inc/post-types.php:104
350
  msgid "(e.g. movie)"
@@ -355,11 +375,12 @@ msgid ""
355
  "The post type name. Used to retrieve custom post type content. Should be "
356
  "short and unique"
357
  msgstr ""
 
 
358
 
359
  #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
360
- #, fuzzy
361
  msgid "Plural Label"
362
- msgstr "Beschriftung (Singular)"
363
 
364
  #: ../inc/post-types.php:117
365
  msgid "(e.g. Movies)"
@@ -374,6 +395,8 @@ msgstr "(z. B. Filme)"
374
  #: ../inc/post-types.php:318
375
  msgid "Post type label. Used in the admin menu for displaying post types."
376
  msgstr ""
 
 
377
 
378
  #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
379
  msgid "Singular Label"
@@ -388,6 +411,8 @@ msgid ""
388
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
389
  "needed."
390
  msgstr ""
 
 
391
 
392
  #: ../inc/post-types.php:145
393
  msgid "Description"
@@ -398,44 +423,44 @@ msgid ""
398
  "Custom Post Type Description. Describe what your custom post type is used "
399
  "for."
400
  msgstr ""
 
 
401
 
402
  #: ../inc/post-types.php:153
403
- #, fuzzy
404
  msgid "Edit Post Type"
405
- msgstr "Verbundene Post Types"
406
 
407
  #: ../inc/post-types.php:154
408
- #, fuzzy
409
  msgid "Delete Post Type"
410
- msgstr "Verbundene Post Types"
411
 
412
  #: ../inc/post-types.php:156
413
- #, fuzzy
414
  msgid "Add Post Type"
415
- msgstr "Verbundene Post Types"
416
 
417
  #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
418
  msgid "Click headings to reveal available options."
419
  msgstr ""
 
 
420
 
421
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
422
  #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
423
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
424
  msgid "Click to expand"
425
- msgstr ""
426
 
427
  #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
428
- #, fuzzy
429
  msgid "Labels"
430
- msgstr "Beschriftung"
431
 
432
  #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
433
  msgid "Menu Name"
434
- msgstr "Menü Name"
435
 
436
  #: ../inc/post-types.php:174
437
  msgid "Custom menu name for your custom post type."
438
- msgstr ""
439
 
440
  #: ../inc/post-types.php:178
441
  msgid "(e.g. My Movies)"
@@ -446,13 +471,12 @@ msgid "All Items"
446
  msgstr "Alle Einträge"
447
 
448
  #: ../inc/post-types.php:190
449
- #, fuzzy
450
  msgid "(e.g. All Movies)"
451
- msgstr "(z. B. Filme)"
452
 
453
  #: ../inc/post-types.php:202
454
  msgid "(e.g. Add New)"
455
- msgstr "(z. B. Hinzufügen)"
456
 
457
  #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
458
  msgid "Add New Item"
@@ -491,9 +515,8 @@ msgid "View"
491
  msgstr "Anzeigen"
492
 
493
  #: ../inc/post-types.php:262
494
- #, fuzzy
495
  msgid "(e.g. View)"
496
- msgstr "(z. B. Film anzeigen)"
497
 
498
  #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
499
  msgid "View Item"
@@ -504,39 +527,36 @@ msgid "(e.g. View Movie)"
504
  msgstr "(z. B. Film anzeigen)"
505
 
506
  #: ../inc/post-types.php:281
507
- #, fuzzy
508
  msgid "Search Item"
509
- msgstr "Übergeordneter Eintrag"
510
 
511
  #: ../inc/post-types.php:286
512
- #, fuzzy
513
  msgid "(e.g. Search Movie)"
514
- msgstr "(z. B. Filme durchsuchen)"
515
 
516
  #: ../inc/post-types.php:293
517
  msgid "Not Found"
518
- msgstr "Nichts gefunden"
519
 
520
  #: ../inc/post-types.php:298
521
- #, fuzzy
522
  msgid "(e.g. No Movies found)"
523
- msgstr "(z. B. Keine Filme im Papierkorb)"
524
 
525
  #: ../inc/post-types.php:305
526
  msgid "Not Found in Trash"
527
- msgstr "Kein Eintrag im Papierkorb"
528
 
529
  #: ../inc/post-types.php:310
530
  msgid "(e.g. No Movies found in Trash)"
531
- msgstr "(z. B. Keine Filme im Papierkorb)"
532
 
533
  #: ../inc/post-types.php:317
534
  msgid "Parent"
535
- msgstr "Übergeordneter Eintrag"
536
 
537
  #: ../inc/post-types.php:322
538
  msgid "(e.g. Parent Movie)"
539
- msgstr "(z. B. Übergeordneter Film)"
540
 
541
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
542
  #: ../inc/post-types.php:376 ../inc/post-types.php:396
@@ -584,52 +604,56 @@ msgstr "Öffentlich"
584
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
585
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
586
  msgid "(default: True)"
587
- msgstr "(Standard: aktiviert)"
588
 
589
  #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
590
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
591
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
592
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
593
  msgid "Whether posts of this type should be shown in the admin UI"
594
- msgstr ""
595
 
596
  #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
597
  msgid "Show UI"
598
- msgstr "Zeige UI"
599
 
600
  #: ../inc/post-types.php:367
601
  msgid "Whether to generate a default UI for managing this post type"
602
  msgstr ""
 
 
603
 
604
  #: ../inc/post-types.php:385
605
  msgid "Has Archive"
606
- msgstr "Archiv-Seite"
607
 
608
  #: ../inc/post-types.php:386 ../inc/post-types.php:406
609
  #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
610
  #: ../inc/taxonomies.php:454
611
  msgid "(default: False)"
612
- msgstr "(Standard: deaktiviert)"
613
 
614
  #: ../inc/post-types.php:387
615
  msgid "Whether the post type will have a post type archive page"
616
- msgstr ""
617
 
618
  #: ../inc/post-types.php:405
619
  msgid "Exclude From Search"
620
- msgstr "Von Suche ausschließen"
621
 
622
  #: ../inc/post-types.php:407
623
  msgid "Whether the post type will be searchable"
624
- msgstr ""
625
 
626
  #: ../inc/post-types.php:418
627
  msgid "Capability Type"
628
- msgstr ""
629
 
630
  #: ../inc/post-types.php:419
631
  msgid "The post type to use for checking read, edit, and delete capabilities"
632
  msgstr ""
 
 
633
 
634
  #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
635
  msgid "Hierarchical"
@@ -637,40 +661,42 @@ msgstr "Hierarchisch"
637
 
638
  #: ../inc/post-types.php:438
639
  msgid "Whether the post type can have parent-child relationships"
640
- msgstr ""
641
 
642
  #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
643
  msgid "Rewrite"
644
- msgstr "Slug umschreiben"
645
 
646
  #: ../inc/post-types.php:458
647
  msgid "Triggers the handling of rewrites for this post type"
648
- msgstr ""
649
 
650
  #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
651
  msgid "Custom Rewrite Slug"
652
- msgstr "Benutzerdefinierter Slug"
653
 
654
  #: ../inc/post-types.php:470
655
  msgid "(default: post type name)"
656
- msgstr "(Standard: Post Type Name)"
657
 
658
  #: ../inc/post-types.php:471
659
  msgid "Custom slug to use instead of the default."
660
  msgstr ""
 
 
661
 
662
  #: ../inc/post-types.php:488
663
  msgid "With Front"
664
- msgstr ""
665
 
666
  #: ../inc/post-types.php:490 ../inc/post-types.php:510
667
  #: ../inc/taxonomies.php:421
668
  msgid "Should the permastruct be prepended with the front base."
669
- msgstr ""
670
 
671
  #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
672
  msgid "Query Var"
673
- msgstr ""
674
 
675
  #: ../inc/post-types.php:514
676
  msgid "Menu Position"
@@ -681,6 +707,8 @@ msgid ""
681
  "The position in the menu order the post type should appear. show_in_menu "
682
  "must be true."
683
  msgstr ""
 
 
684
 
685
  #: ../inc/post-types.php:517
686
  msgid ""
@@ -688,35 +716,45 @@ msgid ""
688
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
689
  "\" section. Range of 5-100"
690
  msgstr ""
 
 
 
 
691
 
692
  #: ../inc/post-types.php:524
693
  msgid "URL or Dashicon value for image to be used as menu icon."
694
  msgstr ""
 
695
 
696
  #: ../inc/post-types.php:529
697
  msgid "Show in Menu"
698
- msgstr "Anzeige im Menü"
699
 
700
  #: ../inc/post-types.php:530
701
  msgid ""
702
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
703
  "php\" is indicated for second input, post type will be sub menu of that."
704
  msgstr ""
 
 
 
705
 
706
  #: ../inc/post-types.php:547
707
- #, fuzzy
708
  msgid "Show In Menu"
709
- msgstr "Anzeige im Menü"
710
 
711
  #: ../inc/post-types.php:549
712
  msgid ""
713
  "Whether to show the post type in the admin menu and where to show that menu. "
714
  "Note that show_ui must be true"
715
  msgstr ""
 
 
 
716
 
717
  #: ../inc/post-types.php:561
718
  msgid "URL to image to be used as menu icon."
719
- msgstr ""
720
 
721
  #: ../inc/post-types.php:572
722
  msgid "Menu Icon"
@@ -724,11 +762,13 @@ msgstr "Menü Icon"
724
 
725
  #: ../inc/post-types.php:573
726
  msgid "(Full URL for icon or Dashicon class)"
727
- msgstr ""
728
 
729
  #: ../inc/post-types.php:574
730
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
731
  msgstr ""
 
 
732
 
733
  #: ../inc/post-types.php:577
734
  msgid "Supports"
@@ -741,6 +781,8 @@ msgstr "Titel"
741
  #: ../inc/post-types.php:588
742
  msgid "Adds the title meta box when creating content for this custom post type"
743
  msgstr ""
 
 
744
 
745
  #: ../inc/post-types.php:602
746
  msgid "Editor"
@@ -751,6 +793,8 @@ msgid ""
751
  "Adds the content editor meta box when creating content for this custom post "
752
  "type"
753
  msgstr ""
 
 
754
 
755
  #: ../inc/post-types.php:617
756
  msgid "Excerpt"
@@ -760,6 +804,8 @@ msgstr "Auszug"
760
  msgid ""
761
  "Adds the excerpt meta box when creating content for this custom post type"
762
  msgstr ""
 
 
763
 
764
  #: ../inc/post-types.php:632
765
  msgid "Trackbacks"
@@ -769,6 +815,8 @@ msgstr "Trackbacks"
769
  msgid ""
770
  "Adds the trackbacks meta box when creating content for this custom post type"
771
  msgstr ""
 
 
772
 
773
  #: ../inc/post-types.php:647
774
  msgid "Custom Fields"
@@ -779,6 +827,8 @@ msgid ""
779
  "Adds the custom fields meta box when creating content for this custom post "
780
  "type"
781
  msgstr ""
 
 
782
 
783
  #: ../inc/post-types.php:662
784
  msgid "Comments"
@@ -788,6 +838,8 @@ msgstr "Kommentare"
788
  msgid ""
789
  "Adds the comments meta box when creating content for this custom post type"
790
  msgstr ""
 
 
791
 
792
  #: ../inc/post-types.php:677
793
  msgid "Revisions"
@@ -797,6 +849,8 @@ msgstr "Revisionen"
797
  msgid ""
798
  "Adds the revisions meta box when creating content for this custom post type"
799
  msgstr ""
 
 
800
 
801
  #: ../inc/post-types.php:692
802
  msgid "Featured Image"
@@ -807,6 +861,8 @@ msgid ""
807
  "Adds the featured image meta box when creating content for this custom post "
808
  "type"
809
  msgstr ""
 
 
810
 
811
  #: ../inc/post-types.php:707
812
  msgid "Author"
@@ -816,6 +872,8 @@ msgstr "Autor"
816
  msgid ""
817
  "Adds the author meta box when creating content for this custom post type"
818
  msgstr ""
 
 
819
 
820
  #: ../inc/post-types.php:722
821
  msgid "Page Attributes"
@@ -826,6 +884,8 @@ msgid ""
826
  "Adds the page attribute meta box when creating content for this custom post "
827
  "type"
828
  msgstr ""
 
 
829
 
830
  #: ../inc/post-types.php:737
831
  msgid "Post Formats"
@@ -833,19 +893,21 @@ msgstr "Formatvorlagen"
833
 
834
  #: ../inc/post-types.php:738
835
  msgid "Adds post format support"
836
- msgstr ""
837
 
838
  #: ../inc/post-types.php:743
839
- msgid "\"Use the option below to explicitly set \"supports\" to false."
840
  msgstr ""
 
 
841
 
842
  #: ../inc/post-types.php:751
843
  msgid "None"
844
- msgstr ""
845
 
846
  #: ../inc/post-types.php:752
847
  msgid "Remove all support features"
848
- msgstr ""
849
 
850
  #: ../inc/post-types.php:759
851
  msgid "Built-in Taxonomies"
@@ -854,116 +916,117 @@ msgstr "Verbundene Taxonomien"
854
  #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
855
  #, php-format
856
  msgid "Adds %s support"
857
- msgstr ""
858
 
859
  #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
860
  msgid "Starter Notes"
861
- msgstr ""
862
 
863
  #: ../inc/post-types.php:809
864
- #, fuzzy, php-format
865
  msgid ""
866
  "Post Type names should have %smax 20 characters%s, and only contain "
867
  "alphanumeric, lowercase characters, underscores in place of spaces and "
868
  "letters that do not have accents. Reserved names: post, page, attachment, "
869
  "revision, nav_menu_item."
870
  msgstr ""
871
- "Maximal 20 Zeichen, keine Großbuchstaben oder Leerzeichen. Bereits vom "
872
- "System reservierte Post Types: post, page, attachment, revision, "
873
- "nav_menu_item."
 
874
 
875
  #: ../inc/post-types.php:810
876
- #, fuzzy, php-format
877
  msgid ""
878
  "If you are unfamiliar with the advanced post type settings, just fill in the "
879
  "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
880
  "values. Labels, if left blank, will be automatically created based on the "
881
  "post type name. Hover over the question mark for more details."
882
  msgstr ""
883
- "Falls Sie nicht sicher mit den unten aufgeführten Einstellungen sind füllen "
884
- "Sie nur den <strong>Post Type Namen</strong> und die <strong>Beschriftung</"
885
- "strong> aus. Die anderen Einstellungen sind auf die gängigsten Standardwerte "
886
- "für benutzerdefinierte Custom Post Types gesetzt. Bewegen Sie den Mauszeiger "
887
- "über das Fragezeichen für weitere Details zum Feld."
 
 
888
 
889
  #: ../inc/post-types.php:811
890
- #, fuzzy, php-format
891
  msgid ""
892
  "Deleting custom post types will %sNOT%s delete any content into the database "
893
  "or added to those post types. You can easily recreate your post types and "
894
  "the content will still exist."
895
  msgstr ""
896
- "Das Löschen eines Post Types führt <strong>nicht</strong> zur Entfernung der "
897
- "Inhalte aus der Datenbank. Erstelle den Post Type erneut und die bereits "
898
- "erstellten Inhalte sind wieder bearbeitbar."
899
 
900
  #: ../inc/post-types.php:890
901
  msgid "Please provide a post type to delete"
902
- msgstr ""
903
 
904
  #: ../inc/post-types.php:950
905
- #, fuzzy
906
  msgid "Please provide a post type name"
907
- msgstr "(Standard: Post Type Name)"
908
 
909
  #: ../inc/post-types.php:968
910
  msgid "Please do not use quotes in post type names or rewrite slugs"
911
  msgstr ""
 
912
 
913
  #: ../inc/post-types.php:975
914
  #, php-format
915
  msgid "Please choose a different post type name. %s is already registered."
916
  msgstr ""
 
917
 
918
  #: ../inc/support.php:44
919
- #, fuzzy
920
  msgid "Custom Post Type UI Support"
921
- msgstr "Erstelle Custom Post Type"
922
 
923
  #: ../inc/support.php:46
924
- #, fuzzy, php-format
925
  msgid ""
926
  "Please note that this plugin will NOT handle display of registered post "
927
  "types or taxonomies in your current theme. It will simply register them for "
928
  "you. If all else fails, visit us on the %s"
929
  msgstr ""
930
- "Beachte bitte, dieses Plugin verwaltet NICHT die Anzeige der erstellten Post "
931
- "Types oder Taxonomien in deinem Theme. Es registriert diese lediglich im "
932
- "System."
933
 
934
  #: ../inc/support.php:47
935
- #, fuzzy
936
  msgid "Support Forums"
937
- msgstr "Unterstützt"
938
 
939
  #: ../inc/support.php:53
940
  msgid "General"
941
- msgstr ""
942
 
943
  #: ../inc/support.php:56
944
- #, fuzzy
945
  msgid ""
946
  "I changed my custom post type name and now I can not get to my posts. How do "
947
  "I get them back?"
948
  msgstr ""
949
- "Frage: <strong>Ich habe den Namen meines Custom Post Types verändert und "
950
- "erhalte nun keinen Zugriff mehr auf meine Einträge!?</strong>"
951
 
952
  #: ../inc/support.php:57
953
- #, fuzzy
954
  msgid ""
955
  "You can either change the custom post type name back to the original name or "
956
  "try the Post Type Switcher plugin"
957
  msgstr ""
958
- "Antwort: Entweder wird der Post Type Namen zurück zum ursprünglichen Namen "
959
- "gewechselt oder die Datenbankeinträge korrigiert. Zum Beispiel mit dem "
960
- "\"Post Type Switcher\" Plugin: "
961
 
962
  #: ../inc/support.php:62
963
  msgid ""
964
  "I changed my custom post type or taxonomy slug and now I have duplicates "
965
  "shown. How do I remove the duplicate?"
966
  msgstr ""
 
 
967
 
968
  #: ../inc/support.php:63
969
  msgid ""
@@ -972,25 +1035,36 @@ msgid ""
972
  "the settings will be mirrored from the previous slug, you will just need to "
973
  "delete the previous version's entry."
974
  msgstr ""
 
 
 
 
975
 
976
  #: ../inc/support.php:66
977
  msgid ""
978
  "I have added post thumbnail and/or post format support to my post type, but "
979
  "those do not appear when adding a post type post."
980
  msgstr ""
 
 
 
981
 
982
  #: ../inc/support.php:67
983
  msgid ""
984
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
985
  msgstr ""
 
 
986
 
987
  #: ../inc/support.php:72
988
  msgid "Front-end Display"
989
- msgstr ""
990
 
991
  #: ../inc/support.php:75
992
  msgid "What template files should I edit to alter my post type display?"
993
  msgstr ""
 
 
994
 
995
  #: ../inc/support.php:76
996
  #, php-format
@@ -998,13 +1072,12 @@ msgid ""
998
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
999
  "details about available templates."
1000
  msgstr ""
 
 
1001
 
1002
  #: ../inc/support.php:83
1003
- #, fuzzy
1004
  msgid "How do I display my custom post type on my site?"
1005
- msgstr ""
1006
- "Frage: <strong>Wie bekomme ich die in einem Custom Post Type erstellten "
1007
- "Inhalte in meine Webseite?</strong>"
1008
 
1009
  #: ../inc/support.php:84
1010
  #, php-format
@@ -1013,12 +1086,18 @@ msgid ""
1013
  "locations. If you have set the post type to have archives, the archive url "
1014
  "should be something like \"http://www.mysite.com/post-type-slug\""
1015
  msgstr ""
 
 
 
 
1016
 
1017
  #: ../inc/support.php:90
1018
  msgid ""
1019
  "I have added categories and tags to my custom post type, but they do not "
1020
  "appear in the archives."
1021
  msgstr ""
 
 
1022
 
1023
  #: ../inc/support.php:91
1024
  #, php-format
@@ -1027,18 +1106,17 @@ msgid ""
1027
  "category and tag archives query for. You can see a tutorial on how to do "
1028
  "that at %s"
1029
  msgstr ""
 
 
 
1030
 
1031
  #: ../inc/support.php:100
1032
- #, fuzzy
1033
  msgid "Advanced"
1034
- msgstr "Tiefergehende Optionen"
1035
 
1036
  #: ../inc/support.php:103
1037
- #, fuzzy
1038
  msgid "How do I add custom metaboxes to my post type?"
1039
- msgstr ""
1040
- "Frage: <strong>Wie erstelle ich benutzerdefinierte Meta Boxen in meinen "
1041
- "Custom Post Types?</strong>"
1042
 
1043
  #: ../inc/support.php:105
1044
  #, php-format
@@ -1046,20 +1124,24 @@ msgid ""
1046
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1047
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1048
  msgstr ""
 
 
1049
 
1050
  #: ../inc/support.php:111
1051
  msgid ""
1052
  "How do I add a newly registered taxonomy to a post type that already exists?"
1053
  msgstr ""
 
 
1054
 
1055
  #: ../inc/support.php:113
1056
  #, php-format
1057
  msgid "Check out the %s function for documentation and usage examples."
1058
- msgstr ""
1059
 
1060
  #: ../inc/support.php:119
1061
  msgid "Post relationships?"
1062
- msgstr ""
1063
 
1064
  #: ../inc/support.php:120
1065
  #, php-format
@@ -1067,74 +1149,85 @@ msgid ""
1067
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1068
  "plugin that should be a good start."
1069
  msgstr ""
 
 
1070
 
1071
  #: ../inc/support.php:129
1072
  msgid ""
1073
- "How do I filter the \"enter title here\" text in the post editor screen."
1074
  msgstr ""
 
 
1075
 
1076
  #: ../inc/support.php:130
1077
  msgid ""
1078
  "Change text inside the post/page editor title field. Should be able to adapt "
1079
  "as necessary."
1080
  msgstr ""
 
 
1081
 
1082
  #: ../inc/taxonomies.php:80
1083
  msgid ""
1084
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1085
  "Changing that value registers a new taxonomy entry for your install."
1086
  msgstr ""
 
 
 
1087
 
1088
  #: ../inc/taxonomies.php:102
1089
- #, fuzzy
1090
  msgid "Taxonomy Slug"
1091
- msgstr "Taxonomie Name"
1092
 
1093
  #: ../inc/taxonomies.php:103
1094
  msgid "(e.g. actors)"
1095
- msgstr "(z. B. regisseure)"
1096
 
1097
  #: ../inc/taxonomies.php:104
1098
  msgid ""
1099
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1100
  "and unique"
1101
  msgstr ""
 
 
1102
 
1103
  #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1104
  msgid "(e.g. Actors)"
1105
- msgstr "(z. B. Regisseure)"
1106
 
1107
  #: ../inc/taxonomies.php:114
1108
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1109
  msgstr ""
 
 
1110
 
1111
  #: ../inc/taxonomies.php:121
1112
  msgid "(e.g. Actor)"
1113
- msgstr "(z. B. Regisseur)"
1114
 
1115
  #: ../inc/taxonomies.php:123
1116
  msgid ""
1117
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1118
  msgstr ""
 
 
1119
 
1120
  #: ../inc/taxonomies.php:126
1121
  msgid "Attach to Post Type"
1122
  msgstr "Mit Post Type verbinden"
1123
 
1124
  #: ../inc/taxonomies.php:165
1125
- #, fuzzy
1126
  msgid "Edit Taxonomy"
1127
- msgstr "Verbundene Taxonomien"
1128
 
1129
  #: ../inc/taxonomies.php:166
1130
- #, fuzzy
1131
  msgid "Delete Taxonomy"
1132
- msgstr "Erstelle Custom Taxonomie"
1133
 
1134
  #: ../inc/taxonomies.php:168
1135
- #, fuzzy
1136
  msgid "Add Taxonomy"
1137
- msgstr "Taxonomie Name"
1138
 
1139
  #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1140
  #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
@@ -1147,41 +1240,40 @@ msgstr "Taxonomie Name"
1147
  msgid ""
1148
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1149
  msgstr ""
 
 
1150
 
1151
  #: ../inc/taxonomies.php:195
1152
  msgid "(e.g. All Actors)"
1153
- msgstr "(z. B. alle Regisseure)"
1154
 
1155
  #: ../inc/taxonomies.php:204
1156
  msgid "(e.g. Edit Actor)"
1157
- msgstr "(z. B. Regisseur bearbeiten)"
1158
 
1159
  #: ../inc/taxonomies.php:213
1160
- #, fuzzy
1161
  msgid "(e.g. View Actor)"
1162
- msgstr "(z. B. Regisseur)"
1163
 
1164
  #: ../inc/taxonomies.php:222
1165
- #, fuzzy
1166
  msgid "(e.g. Update Actor Name)"
1167
- msgstr "(z. B. Regisseur speichern)"
1168
 
1169
  #: ../inc/taxonomies.php:223
1170
- #, fuzzy
1171
  msgid "Update Item Name"
1172
- msgstr "Eintrag speichern"
1173
 
1174
  #: ../inc/taxonomies.php:231
1175
  msgid "(e.g. Add New Actor)"
1176
- msgstr "(z. B. neuen Regisseur hinzufügen)"
1177
 
1178
  #: ../inc/taxonomies.php:240
1179
  msgid "(e.g. New Actor Name)"
1180
- msgstr "(z. B. neuer Regisseur Name)"
1181
 
1182
  #: ../inc/taxonomies.php:241
1183
  msgid "New Item Name"
1184
- msgstr "Neuer Name für Eintrag"
1185
 
1186
  #: ../inc/taxonomies.php:249
1187
  msgid "(e.g. Parent Actor)"
@@ -1240,70 +1332,68 @@ msgid "Choose From Most Used"
1240
  msgstr "Wähle aus den meist Verwendeten"
1241
 
1242
  #: ../inc/taxonomies.php:312
1243
- #, fuzzy
1244
  msgid "(e.g. No actors found)"
1245
- msgstr "(z. B. Kein Film gefunden)"
1246
 
1247
  #: ../inc/taxonomies.php:313
1248
- #, fuzzy
1249
  msgid "Not found"
1250
- msgstr "Nichts gefunden"
1251
 
1252
  #: ../inc/taxonomies.php:336
1253
  msgid "Whether the taxonomy can have parent-child relationships"
1254
- msgstr ""
1255
 
1256
  #: ../inc/taxonomies.php:353
1257
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1258
  msgstr ""
 
 
1259
 
1260
  #: ../inc/taxonomies.php:377
1261
  msgid "(default: none). Query Var needs to be true to use."
1262
  msgstr ""
 
 
1263
 
1264
  #: ../inc/taxonomies.php:378
1265
  msgid "Custom Query Var String"
1266
- msgstr ""
1267
 
1268
  #: ../inc/taxonomies.php:379
1269
- #, fuzzy
1270
  msgid "Custom Query Var Slug"
1271
- msgstr "Benutzerdefinierter Slug"
1272
 
1273
  #: ../inc/taxonomies.php:395
1274
  msgid "Triggers the handling of rewrites for this taxonomy"
1275
- msgstr ""
1276
 
1277
  #: ../inc/taxonomies.php:403
1278
  msgid "(default: taxonomy name)"
1279
- msgstr ""
1280
 
1281
  #: ../inc/taxonomies.php:405
1282
  msgid "Custom Taxonomy Rewrite Slug"
1283
- msgstr ""
1284
 
1285
  #: ../inc/taxonomies.php:419
1286
  msgid "Rewrite With Front"
1287
- msgstr ""
1288
 
1289
  #: ../inc/taxonomies.php:420
1290
- #, fuzzy
1291
  msgid "(default: true)"
1292
- msgstr "(Standard: aktiviert)"
1293
 
1294
  #: ../inc/taxonomies.php:436
1295
- #, fuzzy
1296
  msgid "Rewrite Hierarchical"
1297
- msgstr "Hierarchisch"
1298
 
1299
  #: ../inc/taxonomies.php:437
1300
- #, fuzzy
1301
  msgid "(default: false)"
1302
- msgstr "(Standard: deaktiviert)"
1303
 
1304
  #: ../inc/taxonomies.php:438
1305
  msgid "Should the permastruct allow hierarchical urls."
1306
- msgstr ""
1307
 
1308
  #: ../inc/taxonomies.php:453
1309
  msgid "Show Admin Column"
@@ -1314,19 +1404,22 @@ msgid ""
1314
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1315
  "types."
1316
  msgstr ""
 
 
1317
 
1318
  #: ../inc/taxonomies.php:466
1319
- #, fuzzy, php-format
1320
  msgid ""
1321
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1322
  "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1323
  "letters that do not have accents."
1324
  msgstr ""
1325
- "Maximal 32 Zeichen. Darf nur alphanumerische Zeichen in Kleinbuchstaben und "
1326
- "Unterstriche anstelle von Leerzeichen enthalten."
 
1327
 
1328
  #: ../inc/taxonomies.php:467
1329
- #, fuzzy, php-format
1330
  msgid ""
1331
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1332
  "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
@@ -1334,40 +1427,47 @@ msgid ""
1334
  "automatically created based on the taxonomy name. Hover over the question "
1335
  "marks for more details."
1336
  msgstr ""
1337
- "Falls Sie nicht sicher mit den unten aufgeführten Einstellungen sind füllen "
1338
- "Sie nur den <strong>Taxonomie Namen</strong> und die <strong>Beschriftung</"
1339
- "strong> aus. Die anderen Einstellungen sind auf die gängigsten Standardwerte "
1340
- "für benutzerdefinierte Taxonomien gesetzt. Bewegen Sie den Mauszeiger über "
1341
- "das Fragezeichen für weitere Details zum Feld."
 
 
1342
 
1343
  #: ../inc/taxonomies.php:468
1344
- #, fuzzy, php-format
1345
  msgid ""
1346
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1347
  "taxonomies. You can recreate your taxonomies and the terms will return. "
1348
  "Changing the name, after adding terms to the taxonomy, will not update the "
1349
  "terms in the database."
1350
  msgstr ""
1351
- "Das Löschen einer Taxonomie führt <strong>nicht</strong> zur Entfernung der "
1352
- "Inhalte aus der Datenbank. Erstelle die Taxanomie erneut und die bereits "
1353
- "erstellten Inhalte sind wieder bearbeitbar."
 
 
 
1354
 
1355
  #: ../inc/taxonomies.php:556
1356
  msgid "Please provide a taxonomy to delete"
1357
- msgstr ""
1358
 
1359
  #: ../inc/taxonomies.php:607
1360
  msgid "Please provide a taxonomy name"
1361
- msgstr ""
1362
 
1363
  #: ../inc/taxonomies.php:623
1364
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1365
  msgstr ""
 
1366
 
1367
  #: ../inc/taxonomies.php:629
1368
  #, php-format
1369
  msgid "Please choose a different taxonomy name. %s is already used."
1370
  msgstr ""
 
1371
 
1372
  #~ msgid "version"
1373
  #~ msgstr "Version"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.0\n"
4
+ "POT-Creation-Date: 2015-02-11 21:09-0600\n"
5
+ "PO-Revision-Date: 2015-02-11 21:09-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
+ "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
+ "koller@gmail.com>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
  #: ../custom-post-type-ui.php:57
 
21
  msgid "Custom Post Types"
22
+ msgstr "Custom Post Types"
23
 
24
  #: ../custom-post-type-ui.php:57
25
  msgid "CPT UI"
26
+ msgstr "CPT UI"
27
 
28
  #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
29
  msgid "Custom Post Type UI"
30
+ msgstr "Custom Post Type UI"
31
 
32
  #: ../custom-post-type-ui.php:323
33
  msgid ""
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
+ "Danke dass Sie sich für Custom Post Type UI entschieden haben. Wir hoffen, "
39
+ "dass Sie mit Hilfe unseres Plugins auf eine einfache und schnelle Weise neue "
40
+ "Post Types und Taxonomien erstellen können sowie Ihre Inhalte besser "
41
+ "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
  #: ../custom-post-type-ui.php:325
44
  #, php-format
48
  "there fits your issue, visit our %s and we will try to get to your question "
49
  "as soon as possible."
50
  msgstr ""
51
+ "Um Custom Post Types UI kennenzulernen erstellen Sie doch unter %s einige "
52
+ "Post Types, Taxonomien können Sie unter %s erstellen. Falls Sie Hilfe "
53
+ "benötigen, gehen Sie auf die %s Seite. Sollte keiner der angeführten "
54
+ "Lösungsansätze bei Ihrem Problem helfen, besuchen Sie unser %s und wir "
55
+ "werden uns Ihrer Frage so schnell wie möglich annehmen."
56
 
57
  #: ../custom-post-type-ui.php:326 ../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:327 ../inc/taxonomies.php:26
 
62
  msgid "Add/Edit Taxonomies"
63
+ msgstr "Taxonomien hinzufügen/editieren"
64
 
65
  #: ../custom-post-type-ui.php:328 ../inc/support.php:23
 
66
  msgid "Help/Support"
67
+ msgstr "Hilfe/Support"
68
 
69
  #: ../custom-post-type-ui.php:329
70
  msgid "CPT UI Support Forum"
71
+ msgstr "CPT UI Support Forum"
72
 
73
  #: ../custom-post-type-ui.php:345
74
  msgid "Help Support This Plugin!"
75
+ msgstr "Unterstützen Sie die Entwicklung dieses Plugins!"
76
 
77
  #: ../custom-post-type-ui.php:349
78
  msgid "Professional WordPress<br />Third Edition"
79
+ msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
  #: ../custom-post-type-ui.php:354
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
85
  msgstr ""
86
+ "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
+ "Auflage!"
88
 
89
  #: ../custom-post-type-ui.php:357
90
  msgid "Professional WordPress<br />Plugin Development"
91
+ msgstr "Professional WordPress<br />Plugin Development"
92
 
93
  #: ../custom-post-type-ui.php:362
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
+ "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
+ "Amazon!"
98
 
99
  #: ../custom-post-type-ui.php:365
100
  msgid "PayPal Donation"
101
+ msgstr "PayPal Spende"
102
 
103
  #: ../custom-post-type-ui.php:366
 
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
+ msgstr "Bitte unterstützen Sie die Entwicklung <br />von Custom Post Type UI:"
106
 
107
  #: ../custom-post-type-ui.php:370
108
  msgid "PayPal - The safer, easier way to pay online!"
109
+ msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
  #: ../custom-post-type-ui.php:407
112
  #, php-format
113
+ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
+ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
  #: ../custom-post-type-ui.php:416
117
  msgid "Please Report Bugs"
118
+ msgstr "Bitte Fehler melden"
119
 
120
  #: ../custom-post-type-ui.php:418
121
  msgid "Follow on Twitter:"
123
 
124
  #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
+ msgstr "Import/Export"
127
 
128
  #: ../custom-post-type-ui.php:480
129
  msgid "Manage Taxonomies"
135
 
136
  #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
137
  msgid "Add New"
138
+ msgstr "Neu"
139
 
140
  #: ../custom-post-type-ui.php:513
 
141
  msgid "Edit Post Types"
142
+ msgstr "Post Types bearbeiten"
143
 
144
  #: ../custom-post-type-ui.php:517
 
145
  msgid "Edit Taxonomies"
146
+ msgstr "Taxonomien bearbeiten"
147
 
148
  #: ../custom-post-type-ui.php:521
 
149
  msgid "Post Types"
150
+ msgstr "Post Types"
151
 
152
  #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
 
153
  msgid "Taxonomies"
154
+ msgstr "Taxonomien"
155
 
156
  #: ../custom-post-type-ui.php:523
157
  msgid "Get Code"
160
  #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
161
  #: ../inc/taxonomies.php:319
162
  msgid "Settings"
163
+ msgstr "Einstellungen"
164
 
165
  #: ../custom-post-type-ui.php:607
 
166
  msgid "Help"
167
+ msgstr "Hilfe"
168
 
169
  #: ../custom-post-type-ui.php:635
170
  #, php-format
171
  msgid "%s has been successfully added"
172
+ msgstr "%s wurde erfolgreich hinzugefügt"
173
 
174
  #: ../custom-post-type-ui.php:637
175
  #, php-format
176
  msgid "%s has failed to be added"
177
+ msgstr "%s konnte nicht hinzugefügt werden"
178
 
179
  #: ../custom-post-type-ui.php:641
180
  #, php-format
181
  msgid "%s has been successfully updated"
182
+ msgstr "%s wurde erfolgreich aktualisiert"
183
 
184
  #: ../custom-post-type-ui.php:643
185
  #, php-format
186
  msgid "%s has failed to be updated"
187
+ msgstr "%s konnte nicht aktualisiert werden"
188
 
189
  #: ../custom-post-type-ui.php:647
190
  #, php-format
191
  msgid "%s has been successfully deleted"
192
+ msgstr "%s wurde erfolgreich gelöscht"
193
 
194
  #: ../custom-post-type-ui.php:649
195
  #, php-format
196
  msgid "%s has failed to be deleted"
197
+ msgstr "%s konnte nicht gelöscht werden"
198
 
199
  #: ../custom-post-type-ui.php:653
200
  #, php-format
201
  msgid "%s has been successfully imported"
202
+ msgstr "%s wurde erfolgreich importiert"
203
 
204
  #: ../custom-post-type-ui.php:655
205
  #, php-format
206
  msgid "%s has failed to be imported"
207
+ msgstr "%s konnte nicht importiert werden"
208
 
209
  #: ../inc/import_export.php:52
210
  msgid ""
213
  "export functionality. If you are moving away from Custom Post Type UI, use "
214
  "the information in the \"Get Code\" tab."
215
  msgstr ""
216
+ "Für den Fall dass Sie Post Types oder Taxonomien von dieser Webseite auf "
217
+ "eine andere, die ebenso Custom Post Type UI nutzt, übertragen wollen, "
218
+ "benutzen Sie bitte die Import und Export Funktionen. Sollten Custom Post "
219
+ "Type UI den Rücken kehren dann benutzten Sie die Informationen im \"Code "
220
+ "anzeigen\" Reiter."
221
 
222
  #: ../inc/import_export.php:55
223
  msgid "NOTE"
224
+ msgstr "Anmerkung"
225
 
226
  #: ../inc/import_export.php:56
227
  msgid "This will not export the associated posts, just the settings."
228
  msgstr ""
229
+ "Es werden nur die Einstellungen exportiert nicht die dazugehörigen Beiträge."
230
 
231
  #: ../inc/import_export.php:63
 
232
  msgid "Import Post Types"
233
+ msgstr "Post Types importieren"
234
 
235
  #: ../inc/import_export.php:65 ../inc/import_export.php:91
236
  msgid "Paste content here."
237
+ msgstr "Inhalt hier einfügen."
238
 
239
  #: ../inc/import_export.php:66 ../inc/import_export.php:92
240
  msgid "Note:"
241
+ msgstr "Anmerkung:"
242
 
243
  #: ../inc/import_export.php:66 ../inc/import_export.php:92
244
  msgid "Importing will overwrite previous registered settings."
245
+ msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
246
 
247
  #: ../inc/import_export.php:67
248
  msgid ""
249
  "To import post types from a different WordPress site, paste the exported "
250
  "content from that site and click the \"Import\" button."
251
  msgstr ""
252
+ "Um die Post Types einer anderen WordPress Seite zu importieren, fügen Sie "
253
+ "deren exportierte Inhalte ein und klicken den \"Import\"-Button."
254
 
255
  #: ../inc/import_export.php:68 ../inc/import_export.php:94
256
  msgid "Import"
257
+ msgstr "Importieren"
258
 
259
  #: ../inc/import_export.php:72
 
260
  msgid "Export Post Types"
261
+ msgstr "Post Types exportieren"
262
 
263
  #: ../inc/import_export.php:79
264
  msgid "No post types registered yet."
265
+ msgstr "Es wurden noch keine Post Types erstellt."
266
 
267
  #: ../inc/import_export.php:82 ../inc/import_export.php:107
268
  msgid ""
269
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
270
  "(Mac)."
271
  msgstr ""
272
+ "Um die System-Informationen zu kopieren, klicken Sie unten und drücken dann "
273
+ "Ctrl + C am PC oder Cmd + C am Mac."
274
 
275
  #: ../inc/import_export.php:83
276
  msgid ""
278
  "WordPress site. You can also use this to simply back up your post type "
279
  "settings."
280
  msgstr ""
281
+ "Benutzen Sie die Inhalt des \"Post Types exportieren\" Feldes um die "
282
+ "aktuellen Post Types in eine andere WordPress Webseite zu importieren. Sie "
283
+ "können dies ebenso einfach dazu benutzen Ihre Post Type Einstellungen zu "
284
+ "sichern."
285
 
286
  #: ../inc/import_export.php:89
 
287
  msgid "Import Taxonomies"
288
+ msgstr "Taxonomien importieren"
289
 
290
  #: ../inc/import_export.php:93
291
  msgid ""
292
  "To import taxonomies from a different WordPress site, paste the exported "
293
  "content from that site and click the \"Import\" button."
294
  msgstr ""
295
+ "Um Taxonomien von einer anderen WordPress Seite zu importieren, fügen Sie "
296
+ "über die Zwischenablage die exportierten Inhalte von dieser Seite ein und "
297
+ "klicken den \"Import\"-Button."
298
 
299
  #: ../inc/import_export.php:98
 
300
  msgid "Export Taxonomies"
301
+ msgstr "Taxonomien exportieren"
302
 
303
  #: ../inc/import_export.php:104
304
  msgid "No taxonomies registered yet."
305
+ msgstr "Es wurden noch keine Taxonomien definiert."
306
 
307
  #: ../inc/import_export.php:108
308
  msgid ""
310
  "WordPress site. You can also use this to simply back up your taxonomy "
311
  "settings."
312
  msgstr ""
313
+ "Benutzen Sie die Inhalte des \"Taxonomie exportieren\"-Feldes um die "
314
+ "aktuellen Taxonomien in eine andere WordPress Webseite zu importieren. Sie "
315
+ "können dies ebenso einfach dazu benutzen Ihre Taxonomie Einstellungen zu "
316
+ "sichern."
317
 
318
  #: ../inc/import_export.php:116
 
319
  msgid "Get Post Type and Taxonomy Code"
320
+ msgstr "Erhalte Post Type- und Taxonomie-Code"
321
 
322
  #: ../inc/import_export.php:118
 
323
  msgid "All CPT UI Post Types"
324
+ msgstr "Alle CPT UI-Post Types"
325
 
326
  #: ../inc/import_export.php:119 ../inc/import_export.php:123
327
  msgid "Copy/paste the code below into your functions.php file."
328
  msgstr ""
329
+ "Kopieren sie den Code in die Zwischenablage und fügen Sie ihn im Anschluss "
330
+ "in Ihre functions.php Datei ein."
331
 
332
  #: ../inc/import_export.php:122
 
333
  msgid "All CPT UI Taxonomies"
334
+ msgstr "Alle CPT UI-Taxonomien"
335
 
336
  #: ../inc/import_export.php:153
337
  msgid "No taxonomies to display at this time"
338
+ msgstr "Es gibt keine Taxonomien zum Anzeigen."
339
 
340
  #: ../inc/import_export.php:223
341
  msgid "No post types to display at this time"
342
+ msgstr "Es gibt keine Post Types zum Anzeigen."
343
 
344
  #: ../inc/import_export.php:342
 
345
  msgid "Post types"
346
+ msgstr "Post Types"
347
 
348
  #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
349
  msgid "Are you sure you want to delete this?"
350
+ msgstr "Sind Sie sicher, dass Sie das löschen wollen?"
351
 
352
  #: ../inc/post-types.php:78
353
  msgid ""
354
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
355
  "Changing that value registers a new post type entry for your install."
356
  msgstr ""
357
+ "Wählen Sie einen Post Type zum Bearbeiten aus. Bearbeiten Sie NICHT den Post "
358
+ "Type Kurzlink solange es nicht unbedingt notwendig ist. Die Änderung des "
359
+ "Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
360
 
361
  #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
362
  msgid "Select"
363
+ msgstr "Auswählen"
364
 
365
  #: ../inc/post-types.php:103
 
366
  msgid "Post Type Slug"
367
+ msgstr "Post Type-Kurzlink"
368
 
369
  #: ../inc/post-types.php:104
370
  msgid "(e.g. movie)"
375
  "The post type name. Used to retrieve custom post type content. Should be "
376
  "short and unique"
377
  msgstr ""
378
+ "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
379
+ "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
380
 
381
  #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
 
382
  msgid "Plural Label"
383
+ msgstr "Beschriftung (Plural)"
384
 
385
  #: ../inc/post-types.php:117
386
  msgid "(e.g. Movies)"
395
  #: ../inc/post-types.php:318
396
  msgid "Post type label. Used in the admin menu for displaying post types."
397
  msgstr ""
398
+ "Custom Post Type-Beschriftung. Sie wird im Admin-Menü dazu verwendet den "
399
+ "Post Type anzuzeigen."
400
 
401
  #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
402
  msgid "Singular Label"
411
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
412
  "needed."
413
  msgstr ""
414
+ "Custom Post Type-Beschriftung (Singular). Wird von WordPress verwendet wenn "
415
+ "Beschriftungen im Singular benötigt werden."
416
 
417
  #: ../inc/post-types.php:145
418
  msgid "Description"
423
  "Custom Post Type Description. Describe what your custom post type is used "
424
  "for."
425
  msgstr ""
426
+ "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
427
+ "verwendet wird."
428
 
429
  #: ../inc/post-types.php:153
 
430
  msgid "Edit Post Type"
431
+ msgstr "Post Type bearbeiten"
432
 
433
  #: ../inc/post-types.php:154
 
434
  msgid "Delete Post Type"
435
+ msgstr "Post Type löschen"
436
 
437
  #: ../inc/post-types.php:156
 
438
  msgid "Add Post Type"
439
+ msgstr "Post Type hinzufügen"
440
 
441
  #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
442
  msgid "Click headings to reveal available options."
443
  msgstr ""
444
+ "Die Überschriften anklicken um die verfügbaren Einstellungsmöglichkeiten "
445
+ "anzuzeigen."
446
 
447
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
448
  #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
449
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
450
  msgid "Click to expand"
451
+ msgstr "Zum Aufklappen anklicken"
452
 
453
  #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
 
454
  msgid "Labels"
455
+ msgstr "Beschriftungen"
456
 
457
  #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
458
  msgid "Menu Name"
459
+ msgstr "Menü-Name"
460
 
461
  #: ../inc/post-types.php:174
462
  msgid "Custom menu name for your custom post type."
463
+ msgstr "Benutzerdefinierter Menü-Name für Ihren Custom Post Type."
464
 
465
  #: ../inc/post-types.php:178
466
  msgid "(e.g. My Movies)"
471
  msgstr "Alle Einträge"
472
 
473
  #: ../inc/post-types.php:190
 
474
  msgid "(e.g. All Movies)"
475
+ msgstr "(z. B. Alle Filme)"
476
 
477
  #: ../inc/post-types.php:202
478
  msgid "(e.g. Add New)"
479
+ msgstr "(z. B. Neuen hinzufügen)"
480
 
481
  #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
482
  msgid "Add New Item"
515
  msgstr "Anzeigen"
516
 
517
  #: ../inc/post-types.php:262
 
518
  msgid "(e.g. View)"
519
+ msgstr "(z. B. Anzeigen)"
520
 
521
  #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
522
  msgid "View Item"
527
  msgstr "(z. B. Film anzeigen)"
528
 
529
  #: ../inc/post-types.php:281
 
530
  msgid "Search Item"
531
+ msgstr "Eintrag suchen"
532
 
533
  #: ../inc/post-types.php:286
 
534
  msgid "(e.g. Search Movie)"
535
+ msgstr "(z. B. Film suchen)"
536
 
537
  #: ../inc/post-types.php:293
538
  msgid "Not Found"
539
+ msgstr "Nicht gefunden"
540
 
541
  #: ../inc/post-types.php:298
 
542
  msgid "(e.g. No Movies found)"
543
+ msgstr "(z. B. Keine Filme gefunden)"
544
 
545
  #: ../inc/post-types.php:305
546
  msgid "Not Found in Trash"
547
+ msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
548
 
549
  #: ../inc/post-types.php:310
550
  msgid "(e.g. No Movies found in Trash)"
551
+ msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
552
 
553
  #: ../inc/post-types.php:317
554
  msgid "Parent"
555
+ msgstr "Parent"
556
 
557
  #: ../inc/post-types.php:322
558
  msgid "(e.g. Parent Movie)"
559
+ msgstr "(z. B. Parent Film)"
560
 
561
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
562
  #: ../inc/post-types.php:376 ../inc/post-types.php:396
604
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
605
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
606
  msgid "(default: True)"
607
+ msgstr "(Voreinstellung: aktiviert)"
608
 
609
  #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
610
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
611
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
612
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
613
  msgid "Whether posts of this type should be shown in the admin UI"
614
+ msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
615
 
616
  #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
617
  msgid "Show UI"
618
+ msgstr "Benutzeroberfläche anzeigen"
619
 
620
  #: ../inc/post-types.php:367
621
  msgid "Whether to generate a default UI for managing this post type"
622
  msgstr ""
623
+ "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
624
+ "erstellt werden"
625
 
626
  #: ../inc/post-types.php:385
627
  msgid "Has Archive"
628
+ msgstr "Archiv anlegen"
629
 
630
  #: ../inc/post-types.php:386 ../inc/post-types.php:406
631
  #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
632
  #: ../inc/taxonomies.php:454
633
  msgid "(default: False)"
634
+ msgstr "(Voreinstellung: deaktiviert)"
635
 
636
  #: ../inc/post-types.php:387
637
  msgid "Whether the post type will have a post type archive page"
638
+ msgstr "Soll der Post Type eine Post Type-Archiv Seite haben"
639
 
640
  #: ../inc/post-types.php:405
641
  msgid "Exclude From Search"
642
+ msgstr "Von der Suche ausschließen"
643
 
644
  #: ../inc/post-types.php:407
645
  msgid "Whether the post type will be searchable"
646
+ msgstr "Soll der Post Type durchsuchbar sein"
647
 
648
  #: ../inc/post-types.php:418
649
  msgid "Capability Type"
650
+ msgstr "Capability Typ"
651
 
652
  #: ../inc/post-types.php:419
653
  msgid "The post type to use for checking read, edit, and delete capabilities"
654
  msgstr ""
655
+ "Der Post Type der herangezogen wird um die Lesen, Bearbeiten und Löschen "
656
+ "Befähigung überprüft"
657
 
658
  #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
659
  msgid "Hierarchical"
661
 
662
  #: ../inc/post-types.php:438
663
  msgid "Whether the post type can have parent-child relationships"
664
+ msgstr "Darf der Post Type parent-child Beziehungen haben"
665
 
666
  #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
667
  msgid "Rewrite"
668
+ msgstr "Rewrite"
669
 
670
  #: ../inc/post-types.php:458
671
  msgid "Triggers the handling of rewrites for this post type"
672
+ msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
673
 
674
  #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
675
  msgid "Custom Rewrite Slug"
676
+ msgstr "Benutzerdefinierter Rewrite-Kurzlink"
677
 
678
  #: ../inc/post-types.php:470
679
  msgid "(default: post type name)"
680
+ msgstr "(Voreinstellung: Post Type-Name)"
681
 
682
  #: ../inc/post-types.php:471
683
  msgid "Custom slug to use instead of the default."
684
  msgstr ""
685
+ "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
686
+ "soll."
687
 
688
  #: ../inc/post-types.php:488
689
  msgid "With Front"
690
+ msgstr "With Front"
691
 
692
  #: ../inc/post-types.php:490 ../inc/post-types.php:510
693
  #: ../inc/taxonomies.php:421
694
  msgid "Should the permastruct be prepended with the front base."
695
+ msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
696
 
697
  #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
698
  msgid "Query Var"
699
+ msgstr "Query Var"
700
 
701
  #: ../inc/post-types.php:514
702
  msgid "Menu Position"
707
  "The position in the menu order the post type should appear. show_in_menu "
708
  "must be true."
709
  msgstr ""
710
+ "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
711
+ "anzeigen\" muss dafür aktiviert sein."
712
 
713
  #: ../inc/post-types.php:517
714
  msgid ""
716
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
717
  "\" section. Range of 5-100"
718
  msgstr ""
719
+ "<a href=\"http://codex.wordpress.org/Function_Reference/"
720
+ "register_post_type#Parameters\">Lesen Sie mehr </a> zu den verfügbaren "
721
+ "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
722
+ "Werte reichen von 5 bis 100."
723
 
724
  #: ../inc/post-types.php:524
725
  msgid "URL or Dashicon value for image to be used as menu icon."
726
  msgstr ""
727
+ "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
728
 
729
  #: ../inc/post-types.php:529
730
  msgid "Show in Menu"
731
+ msgstr "Im Menü anzeigen"
732
 
733
  #: ../inc/post-types.php:530
734
  msgid ""
735
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
736
  "php\" is indicated for second input, post type will be sub menu of that."
737
  msgstr ""
738
+ "\"Benutzeroberfläche anzeigen\" muss \"aktiviert\" sein. Sollte eine top-"
739
+ "level-parent Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
740
+ "sein wird der Post Type als Untermenü davon angezeigt."
741
 
742
  #: ../inc/post-types.php:547
 
743
  msgid "Show In Menu"
744
+ msgstr "Im Menü anzeigen"
745
 
746
  #: ../inc/post-types.php:549
747
  msgid ""
748
  "Whether to show the post type in the admin menu and where to show that menu. "
749
  "Note that show_ui must be true"
750
  msgstr ""
751
+ "Soll der Post Type im Admin-Menü angezeigt werden soll und an welcher "
752
+ "Position dieses Menü angezeigt werden. Beachten Sie dass "
753
+ "\"Benutzeroberfläche anzeigen\" dafür aktiviert sein muss"
754
 
755
  #: ../inc/post-types.php:561
756
  msgid "URL to image to be used as menu icon."
757
+ msgstr "URL zum Bild das als Menü Icon benutzt werden soll."
758
 
759
  #: ../inc/post-types.php:572
760
  msgid "Menu Icon"
762
 
763
  #: ../inc/post-types.php:573
764
  msgid "(Full URL for icon or Dashicon class)"
765
+ msgstr "(Komplette URL für das Icon oder die Dashicon Klasse)"
766
 
767
  #: ../inc/post-types.php:574
768
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
769
  msgstr ""
770
+ "URL zum Bild das anstelle dessen als Menü-Icon oder Dashicon-Klasse "
771
+ "verwendet wird."
772
 
773
  #: ../inc/post-types.php:577
774
  msgid "Supports"
781
  #: ../inc/post-types.php:588
782
  msgid "Adds the title meta box when creating content for this custom post type"
783
  msgstr ""
784
+ "Fügt die Title Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
785
+ "erstellt werden"
786
 
787
  #: ../inc/post-types.php:602
788
  msgid "Editor"
793
  "Adds the content editor meta box when creating content for this custom post "
794
  "type"
795
  msgstr ""
796
+ "Fügt eine Editor Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
797
+ "erstellt werden"
798
 
799
  #: ../inc/post-types.php:617
800
  msgid "Excerpt"
804
  msgid ""
805
  "Adds the excerpt meta box when creating content for this custom post type"
806
  msgstr ""
807
+ "Fügt eine Zusammenfassung Meta Box hinzu sobald Inhalte für diesen Custom "
808
+ "Post Type erstellt werden"
809
 
810
  #: ../inc/post-types.php:632
811
  msgid "Trackbacks"
815
  msgid ""
816
  "Adds the trackbacks meta box when creating content for this custom post type"
817
  msgstr ""
818
+ "Fügt eine Trackback Meta Box hinzu sobald Inhalte für diesen Custom Post "
819
+ "Type erstellt werden"
820
 
821
  #: ../inc/post-types.php:647
822
  msgid "Custom Fields"
827
  "Adds the custom fields meta box when creating content for this custom post "
828
  "type"
829
  msgstr ""
830
+ "Fügt eine Eigene Felder Meta Box hinzu sobald Inhalte für diesen Custom Post "
831
+ "Type erstellt werden"
832
 
833
  #: ../inc/post-types.php:662
834
  msgid "Comments"
838
  msgid ""
839
  "Adds the comments meta box when creating content for this custom post type"
840
  msgstr ""
841
+ "Fügt eine Kommentare Meta Box hinzu sobald Inhalte für diesen Custom Post "
842
+ "Type erstellt werden"
843
 
844
  #: ../inc/post-types.php:677
845
  msgid "Revisions"
849
  msgid ""
850
  "Adds the revisions meta box when creating content for this custom post type"
851
  msgstr ""
852
+ "Fügt eine Versions Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
853
+ "erstellt werden"
854
 
855
  #: ../inc/post-types.php:692
856
  msgid "Featured Image"
861
  "Adds the featured image meta box when creating content for this custom post "
862
  "type"
863
  msgstr ""
864
+ "Fügt eine Featured Image Meta Box hinzu sobald Inhalte für diesen Custom "
865
+ "Post Type erstellt werden"
866
 
867
  #: ../inc/post-types.php:707
868
  msgid "Author"
872
  msgid ""
873
  "Adds the author meta box when creating content for this custom post type"
874
  msgstr ""
875
+ "Fügt eine Autoren Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
876
+ "erstellt werden"
877
 
878
  #: ../inc/post-types.php:722
879
  msgid "Page Attributes"
884
  "Adds the page attribute meta box when creating content for this custom post "
885
  "type"
886
  msgstr ""
887
+ "Fügt eine Seiten Attribut Meta Box hinzu sobald Inhalte für diesen Custom "
888
+ "Post Type erstellt werden"
889
 
890
  #: ../inc/post-types.php:737
891
  msgid "Post Formats"
893
 
894
  #: ../inc/post-types.php:738
895
  msgid "Adds post format support"
896
+ msgstr "Fügt die Unterstützung für Formvorlagen für Posts hinzu"
897
 
898
  #: ../inc/post-types.php:743
899
+ msgid "Use the option below to explicitly set \"supports\" to false."
900
  msgstr ""
901
+ "Benutzen Sie die Option unten an um die \"Unterstützung\" explizit zu "
902
+ "deaktivieren."
903
 
904
  #: ../inc/post-types.php:751
905
  msgid "None"
906
+ msgstr "Keines"
907
 
908
  #: ../inc/post-types.php:752
909
  msgid "Remove all support features"
910
+ msgstr "Entferne alle Support Features"
911
 
912
  #: ../inc/post-types.php:759
913
  msgid "Built-in Taxonomies"
916
  #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
917
  #, php-format
918
  msgid "Adds %s support"
919
+ msgstr "Fügt %s Support hinzu"
920
 
921
  #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
922
  msgid "Starter Notes"
923
+ msgstr "Beginne Notizen"
924
 
925
  #: ../inc/post-types.php:809
926
+ #, php-format
927
  msgid ""
928
  "Post Type names should have %smax 20 characters%s, and only contain "
929
  "alphanumeric, lowercase characters, underscores in place of spaces and "
930
  "letters that do not have accents. Reserved names: post, page, attachment, "
931
  "revision, nav_menu_item."
932
  msgstr ""
933
+ "Post Type Name sollten %smaximal 20 Zeichen%s lang sein; alphanumerisch, nur "
934
+ "Kleinbuchstaben, Unterstriche anstelle Leerzeichen und es dürfen keine "
935
+ "Akzente enthalten sein. Reservierte und schon vergebene Post Type Namen: "
936
+ "post, page, attachment, revision, nav_menu_item."
937
 
938
  #: ../inc/post-types.php:810
939
+ #, php-format
940
  msgid ""
941
  "If you are unfamiliar with the advanced post type settings, just fill in the "
942
  "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
943
  "values. Labels, if left blank, will be automatically created based on the "
944
  "post type name. Hover over the question mark for more details."
945
  msgstr ""
946
+ "Sollten sie mit der Nutzung der Erweiterten Post Type Einstellungen nicht "
947
+ "vertraut sein, dann tragen Sie nur Werte in den %sPost Type Name%s und "
948
+ "%sBeschriftungs%s Feldern ein. Für die übrigen Einstellungen werden "
949
+ "Werkseinstellungen verwendet. Im Falle, dass keine Beschriftungen "
950
+ "eingetragen wurden, werden selbige automatisch basierend auf dem Post Type "
951
+ "Name erstellt. Fahren Sie mit dem Mauszeiger über das Fragezeichen für "
952
+ "weiterführende Informationen."
953
 
954
  #: ../inc/post-types.php:811
955
+ #, php-format
956
  msgid ""
957
  "Deleting custom post types will %sNOT%s delete any content into the database "
958
  "or added to those post types. You can easily recreate your post types and "
959
  "the content will still exist."
960
  msgstr ""
961
+ "Das Löschen eines Post Types führt %sNICHT%s zur Entfernung von Inhalten aus "
962
+ "der Datenbank bzw. mit ihnen assoziierten. Sie können Ihre Post Type leicht "
963
+ "erneut erstellen und die bereits erstellten Inhalte sind wieder bearbeitbar."
964
 
965
  #: ../inc/post-types.php:890
966
  msgid "Please provide a post type to delete"
967
+ msgstr "Bitte geben Sie einen Post Type zum Löschen an"
968
 
969
  #: ../inc/post-types.php:950
 
970
  msgid "Please provide a post type name"
971
+ msgstr "Bitte geben Sie einen Post Type Namen an"
972
 
973
  #: ../inc/post-types.php:968
974
  msgid "Please do not use quotes in post type names or rewrite slugs"
975
  msgstr ""
976
+ "Bitte verwenden Sie keine Anführungszeichen in Post Type Namen oder Kurzlinks"
977
 
978
  #: ../inc/post-types.php:975
979
  #, php-format
980
  msgid "Please choose a different post type name. %s is already registered."
981
  msgstr ""
982
+ "Bitte wählen Sie einen anderen Post Type Namen. %s ist bereits in Verwendung."
983
 
984
  #: ../inc/support.php:44
 
985
  msgid "Custom Post Type UI Support"
986
+ msgstr "Custom Post Type UI Support"
987
 
988
  #: ../inc/support.php:46
989
+ #, php-format
990
  msgid ""
991
  "Please note that this plugin will NOT handle display of registered post "
992
  "types or taxonomies in your current theme. It will simply register them for "
993
  "you. If all else fails, visit us on the %s"
994
  msgstr ""
995
+ "Beachten Sie bitte, dass dieses Plugin NICHT die Anzeige der erstellten Post "
996
+ "Types oder Taxonomien in Ihrem aktiven Theme regeln wird. Es wird sie "
997
+ "lediglich für Sie registrieren. Bei weiteren Problemen besuchen Sie uns im %s"
998
 
999
  #: ../inc/support.php:47
 
1000
  msgid "Support Forums"
1001
+ msgstr "Support Foren"
1002
 
1003
  #: ../inc/support.php:53
1004
  msgid "General"
1005
+ msgstr "Allgemein"
1006
 
1007
  #: ../inc/support.php:56
 
1008
  msgid ""
1009
  "I changed my custom post type name and now I can not get to my posts. How do "
1010
  "I get them back?"
1011
  msgstr ""
1012
+ "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1013
+ "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich sie wieder zurück?"
1014
 
1015
  #: ../inc/support.php:57
 
1016
  msgid ""
1017
  "You can either change the custom post type name back to the original name or "
1018
  "try the Post Type Switcher plugin"
1019
  msgstr ""
1020
+ "Sie können entweder den Namen des Custom Post Types auf den ursprünglichen "
1021
+ "zurücksetzen oder aber sie verwenden das Post Type Switcher-Plugin"
 
1022
 
1023
  #: ../inc/support.php:62
1024
  msgid ""
1025
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1026
  "shown. How do I remove the duplicate?"
1027
  msgstr ""
1028
+ "Ich habe meinen Custom Post Type oder den Taxonomie Kurzlink verändert. "
1029
+ "Jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1030
 
1031
  #: ../inc/support.php:63
1032
  msgid ""
1035
  "the settings will be mirrored from the previous slug, you will just need to "
1036
  "delete the previous version's entry."
1037
  msgstr ""
1038
+ "Die Umbenennung eines Kurzlinks zu einem Post Type oder einer Taxonomie "
1039
+ "erstellt einen neuen eigenen Post Type oder Taxonomie. Nachdem die "
1040
+ "Einstellung aus dem vorherigen Kurzlink übernommen werden müssen Sie einfach "
1041
+ "den ursprünglichen Eintrag löschen."
1042
 
1043
  #: ../inc/support.php:66
1044
  msgid ""
1045
  "I have added post thumbnail and/or post format support to my post type, but "
1046
  "those do not appear when adding a post type post."
1047
  msgstr ""
1048
+ "Ich habe Post Thumbnails und oder Post Format Support zu meinem Post Type "
1049
+ "hinzugefügt, aber diese werden nicht angezeigt wenn ich einen Beitrag für "
1050
+ "diesen Post Type hinzufüge."
1051
 
1052
  #: ../inc/support.php:67
1053
  msgid ""
1054
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1055
  msgstr ""
1056
+ "Stellen Sie sicher, dass Ihr Theme den Support für Post \"post-thumbnails\" "
1057
+ "aktiviert hat"
1058
 
1059
  #: ../inc/support.php:72
1060
  msgid "Front-end Display"
1061
+ msgstr "Front-End Anzeige"
1062
 
1063
  #: ../inc/support.php:75
1064
  msgid "What template files should I edit to alter my post type display?"
1065
  msgstr ""
1066
+ "Welche Template Files sollte ich bearbeiten um meine Post Type Anzeige zu "
1067
+ "verändern?"
1068
 
1069
  #: ../inc/support.php:76
1070
  #, php-format
1072
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1073
  "details about available templates."
1074
  msgstr ""
1075
+ "Besuchen Sie bitte die %sTemplate Hierarchy%s Seite im WordPress Code um "
1076
+ "mehr über die verfügbaren Template zu erfahren."
1077
 
1078
  #: ../inc/support.php:83
 
1079
  msgid "How do I display my custom post type on my site?"
1080
+ msgstr "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen?"
 
 
1081
 
1082
  #: ../inc/support.php:84
1083
  #, php-format
1086
  "locations. If you have set the post type to have archives, the archive url "
1087
  "should be something like \"http://www.mysite.com/post-type-slug\""
1088
  msgstr ""
1089
+ "Sie werden die %sWP_Query%s nutzen müssen um den Ort der Darstellung frei "
1090
+ "wählen zu können. Sollten für den Post Type eingestellt haben, dass er "
1091
+ "Archive hat, sollte die Archiv URL z.B. \"http://www.mysite.com/post-type-"
1092
+ "slug\" lauten."
1093
 
1094
  #: ../inc/support.php:90
1095
  msgid ""
1096
  "I have added categories and tags to my custom post type, but they do not "
1097
  "appear in the archives."
1098
  msgstr ""
1099
+ "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1100
+ "jetzt werden Sie nicht im Archiv angezeigt."
1101
 
1102
  #: ../inc/support.php:91
1103
  #, php-format
1106
  "category and tag archives query for. You can see a tutorial on how to do "
1107
  "that at %s"
1108
  msgstr ""
1109
+ "Sie müssen Ihren neue erstellen Post Type zu den Types hinzufügen in den "
1110
+ "denen Kategorien und Tag Archive durchsucht werden. Sie finden ein Tutorial "
1111
+ "dazu unter %s"
1112
 
1113
  #: ../inc/support.php:100
 
1114
  msgid "Advanced"
1115
+ msgstr "Erweitert"
1116
 
1117
  #: ../inc/support.php:103
 
1118
  msgid "How do I add custom metaboxes to my post type?"
1119
+ msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
 
 
1120
 
1121
  #: ../inc/support.php:105
1122
  #, php-format
1124
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1125
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1126
  msgstr ""
1127
+ "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1128
+ "WordPress\". Beides wird von den WebDevStudios entwickelt."
1129
 
1130
  #: ../inc/support.php:111
1131
  msgid ""
1132
  "How do I add a newly registered taxonomy to a post type that already exists?"
1133
  msgstr ""
1134
+ "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1135
+ "bereits existiert?"
1136
 
1137
  #: ../inc/support.php:113
1138
  #, php-format
1139
  msgid "Check out the %s function for documentation and usage examples."
1140
+ msgstr "Gehen Sie zur %s Funktion für Dokumentation und Nutzungsbeispiele."
1141
 
1142
  #: ../inc/support.php:119
1143
  msgid "Post relationships?"
1144
+ msgstr "Beitragsbeziehung?"
1145
 
1146
  #: ../inc/support.php:120
1147
  #, php-format
1149
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1150
  "plugin that should be a good start."
1151
  msgstr ""
1152
+ "%s hat einen ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1153
+ "%s Plugins veröffentlicht."
1154
 
1155
  #: ../inc/support.php:129
1156
  msgid ""
1157
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1158
  msgstr ""
1159
+ "Wie kann ich den \"Titel hier eingeben\" Text im Neuen Beitrage erstellen "
1160
+ "Fenster ändern?"
1161
 
1162
  #: ../inc/support.php:130
1163
  msgid ""
1164
  "Change text inside the post/page editor title field. Should be able to adapt "
1165
  "as necessary."
1166
  msgstr ""
1167
+ "Ändern Sie den Text innerhalb des Beitrag/Seiten Editor Titel Feldes. Es "
1168
+ "sollte möglich sein es anzupassen falls notwendig."
1169
 
1170
  #: ../inc/taxonomies.php:80
1171
  msgid ""
1172
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1173
  "Changing that value registers a new taxonomy entry for your install."
1174
  msgstr ""
1175
+ "Wählen Sie eine Taxonomie zum Bearbeiten aus. Bearbeiten Sie NICHT Kurzlink "
1176
+ "der Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung des "
1177
+ "Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1178
 
1179
  #: ../inc/taxonomies.php:102
 
1180
  msgid "Taxonomy Slug"
1181
+ msgstr "Taxonomie Kurzlink"
1182
 
1183
  #: ../inc/taxonomies.php:103
1184
  msgid "(e.g. actors)"
1185
+ msgstr "(z. B. Schauspieler)"
1186
 
1187
  #: ../inc/taxonomies.php:104
1188
  msgid ""
1189
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1190
  "and unique"
1191
  msgstr ""
1192
+ "Der Taxonomie Name. Wird zum abrufen von benutzerdefinierten Taxonomie "
1193
+ "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1194
 
1195
  #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1196
  msgid "(e.g. Actors)"
1197
+ msgstr "(z. B. Schauspieler)"
1198
 
1199
  #: ../inc/taxonomies.php:114
1200
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1201
  msgstr ""
1202
+ "Taxonomie Beschreibung. Wird im Admin-Menü dazu verwendet benutzerdefinierte "
1203
+ "Taxonomien anzuzeigen."
1204
 
1205
  #: ../inc/taxonomies.php:121
1206
  msgid "(e.g. Actor)"
1207
+ msgstr "(z. B. Schauspieler)"
1208
 
1209
  #: ../inc/taxonomies.php:123
1210
  msgid ""
1211
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1212
  msgstr ""
1213
+ "Taxonomie Beschriftung (Singular). Wird in WordPress verwendet wenn eine "
1214
+ "Beschriftung in der Einzahl benötigt wird."
1215
 
1216
  #: ../inc/taxonomies.php:126
1217
  msgid "Attach to Post Type"
1218
  msgstr "Mit Post Type verbinden"
1219
 
1220
  #: ../inc/taxonomies.php:165
 
1221
  msgid "Edit Taxonomy"
1222
+ msgstr "Taxonomien bearbeiten"
1223
 
1224
  #: ../inc/taxonomies.php:166
 
1225
  msgid "Delete Taxonomy"
1226
+ msgstr "Taxonomie löschen"
1227
 
1228
  #: ../inc/taxonomies.php:168
 
1229
  msgid "Add Taxonomy"
1230
+ msgstr "Taxonomie hinzufügen"
1231
 
1232
  #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1233
  #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1240
  msgid ""
1241
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1242
  msgstr ""
1243
+ "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1244
+ "Anzeige von Taxonomien verwendet."
1245
 
1246
  #: ../inc/taxonomies.php:195
1247
  msgid "(e.g. All Actors)"
1248
+ msgstr "(z. B. Alle Schauspieler)"
1249
 
1250
  #: ../inc/taxonomies.php:204
1251
  msgid "(e.g. Edit Actor)"
1252
+ msgstr "(z. B. Schauspieler bearbeiten)"
1253
 
1254
  #: ../inc/taxonomies.php:213
 
1255
  msgid "(e.g. View Actor)"
1256
+ msgstr "(z. B. Schauspieler anzeigen)"
1257
 
1258
  #: ../inc/taxonomies.php:222
 
1259
  msgid "(e.g. Update Actor Name)"
1260
+ msgstr "(z. B. Namen des Schauspielers aktualisieren)"
1261
 
1262
  #: ../inc/taxonomies.php:223
 
1263
  msgid "Update Item Name"
1264
+ msgstr "Eintragsname aktualisieren"
1265
 
1266
  #: ../inc/taxonomies.php:231
1267
  msgid "(e.g. Add New Actor)"
1268
+ msgstr "(z. B. Neuen Schauspieler hinzufügen)"
1269
 
1270
  #: ../inc/taxonomies.php:240
1271
  msgid "(e.g. New Actor Name)"
1272
+ msgstr "(z. B. Neuer Schauspieler Name)"
1273
 
1274
  #: ../inc/taxonomies.php:241
1275
  msgid "New Item Name"
1276
+ msgstr "Eintragsname aktualisieren"
1277
 
1278
  #: ../inc/taxonomies.php:249
1279
  msgid "(e.g. Parent Actor)"
1332
  msgstr "Wähle aus den meist Verwendeten"
1333
 
1334
  #: ../inc/taxonomies.php:312
 
1335
  msgid "(e.g. No actors found)"
1336
+ msgstr "(z. B. Keine Schauspieler gefunden)"
1337
 
1338
  #: ../inc/taxonomies.php:313
 
1339
  msgid "Not found"
1340
+ msgstr "Nicht gefunden"
1341
 
1342
  #: ../inc/taxonomies.php:336
1343
  msgid "Whether the taxonomy can have parent-child relationships"
1344
+ msgstr "Ob die Taxonomie eine parent-child Beziehung haben darf"
1345
 
1346
  #: ../inc/taxonomies.php:353
1347
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1348
  msgstr ""
1349
+ "Ob eine Standard UI erstellt werden soll um diese benutzerdefinierte "
1350
+ "Taxonomie zu verwalten"
1351
 
1352
  #: ../inc/taxonomies.php:377
1353
  msgid "(default: none). Query Var needs to be true to use."
1354
  msgstr ""
1355
+ "(Voreinstellung: Keine - Query Var muss aktiviert sein um es benutzen zu "
1356
+ "können)"
1357
 
1358
  #: ../inc/taxonomies.php:378
1359
  msgid "Custom Query Var String"
1360
+ msgstr "Benutzerdefinierte Quer Var Zeile"
1361
 
1362
  #: ../inc/taxonomies.php:379
 
1363
  msgid "Custom Query Var Slug"
1364
+ msgstr "Benutzerdefinierter Query Var Kurzlink"
1365
 
1366
  #: ../inc/taxonomies.php:395
1367
  msgid "Triggers the handling of rewrites for this taxonomy"
1368
+ msgstr "Stösst Rewrites für diese Taxonomie an"
1369
 
1370
  #: ../inc/taxonomies.php:403
1371
  msgid "(default: taxonomy name)"
1372
+ msgstr "(Voreinstellung: Taxanomie Name)"
1373
 
1374
  #: ../inc/taxonomies.php:405
1375
  msgid "Custom Taxonomy Rewrite Slug"
1376
+ msgstr "Benutzerdefinierte Taxonomie Kurzlink"
1377
 
1378
  #: ../inc/taxonomies.php:419
1379
  msgid "Rewrite With Front"
1380
+ msgstr "Überschreiben mittels With Front"
1381
 
1382
  #: ../inc/taxonomies.php:420
 
1383
  msgid "(default: true)"
1384
+ msgstr "(Voreinstellung: aktiviert)"
1385
 
1386
  #: ../inc/taxonomies.php:436
 
1387
  msgid "Rewrite Hierarchical"
1388
+ msgstr "Hierarchisches überschreiben"
1389
 
1390
  #: ../inc/taxonomies.php:437
 
1391
  msgid "(default: false)"
1392
+ msgstr "(Voreinstellung: deaktiviert)"
1393
 
1394
  #: ../inc/taxonomies.php:438
1395
  msgid "Should the permastruct allow hierarchical urls."
1396
+ msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1397
 
1398
  #: ../inc/taxonomies.php:453
1399
  msgid "Show Admin Column"
1404
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1405
  "types."
1406
  msgstr ""
1407
+ "Ob es erlaubt ist Taxonomie Spalten in assoziierten Post Types automatisch "
1408
+ "zu erstellen."
1409
 
1410
  #: ../inc/taxonomies.php:466
1411
+ #, php-format
1412
  msgid ""
1413
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1414
  "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1415
  "letters that do not have accents."
1416
  msgstr ""
1417
+ "Taxonomie Namen sollten %smaximal 32 Zeichen%s lang sein; alphanumerisch, "
1418
+ "nur Kleinbuchstaben, Unterstriche anstelle Leerzeichen und es dürfen keine "
1419
+ "Akzente enthalten sein."
1420
 
1421
  #: ../inc/taxonomies.php:467
1422
+ #, php-format
1423
  msgid ""
1424
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1425
  "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1427
  "automatically created based on the taxonomy name. Hover over the question "
1428
  "marks for more details."
1429
  msgstr ""
1430
+ "Sollten sie mit der Nutzung der Erweiterten Taxonomie Einstellungen nicht "
1431
+ "vertraut sein, dann tragen Sie nur Werte in den %sTaxonomie Namen%s und "
1432
+ "%sBeschriftungs%s Feldern ein. Für die übrigen Einstellungen werden "
1433
+ "Werkseinstellungen verwendet. Im Falle, dass keine Beschriftungen "
1434
+ "eingetragen wurden, werden selbige automatisch basierend auf dem Taxonomie "
1435
+ "Namen erstellt. Fahren Sie mit dem Mauszeiger über das Fragezeichen für "
1436
+ "weiterführende Informationen."
1437
 
1438
  #: ../inc/taxonomies.php:468
1439
+ #, php-format
1440
  msgid ""
1441
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1442
  "taxonomies. You can recreate your taxonomies and the terms will return. "
1443
  "Changing the name, after adding terms to the taxonomy, will not update the "
1444
  "terms in the database."
1445
  msgstr ""
1446
+ "Das Löschen einer benutzerdefinierten Taxonomie führt %sNICHT%s zur "
1447
+ "Entfernung von Begriffen die zu diesen Taxonomien hinzugefügt wurde. Sie "
1448
+ "können Ihre Taxonomien leicht erneut erstellen und die bereits erstellten "
1449
+ "Inhalte sind wieder bearbeitbar. Sollten Sie den Name, nachdem Sie die "
1450
+ "Begriffe zu der Taxonomie hinzugefügt haben, werden die Begriffe nicht in "
1451
+ "der Datenbank aktualisiert."
1452
 
1453
  #: ../inc/taxonomies.php:556
1454
  msgid "Please provide a taxonomy to delete"
1455
+ msgstr "Geben Sie bitte eine Taxonomie zum Löschen an"
1456
 
1457
  #: ../inc/taxonomies.php:607
1458
  msgid "Please provide a taxonomy name"
1459
+ msgstr "Geben Sie bitte einen Taxonomie-Namen an"
1460
 
1461
  #: ../inc/taxonomies.php:623
1462
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1463
  msgstr ""
1464
+ "Benutzen Sie bitte keine Anführungszeichen in Taxonomie Namen oder Kurzlinks"
1465
 
1466
  #: ../inc/taxonomies.php:629
1467
  #, php-format
1468
  msgid "Please choose a different taxonomy name. %s is already used."
1469
  msgstr ""
1470
+ "Bitte wählen Sie einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1471
 
1472
  #~ msgid "version"
1473
  #~ msgstr "Version"
languages/cpt-plugin-ja.mo CHANGED
Binary file
languages/cpt-plugin-ja.po CHANGED
@@ -2,344 +2,1460 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-06-28 21:48+0900\n"
6
- "PO-Revision-Date: 2010-06-28 21:49+0900\n"
7
- "Last-Translator: Tai <tekapo@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
  "X-Poedit-Basepath: /Users/digitalcubeimac/www/wp_300_ja/wp-content/plugins\n"
14
- "X-Poedit-Language: Japanese\n"
15
- "X-Poedit-Country: JAPAN\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
 
17
  "X-Poedit-SearchPath-0: custom-post-type-ui\n"
18
 
19
- #: custom-post-type-ui/custom-post-type-ui.php:422
20
- msgid "Custom Post Types UI"
21
- msgstr "Custom Post Types UI"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- #: custom-post-type-ui/custom-post-type-ui.php:423
24
- msgid "Plugin version"
25
- msgstr "プラグインバージョン"
26
 
27
- #: custom-post-type-ui/custom-post-type-ui.php:424
28
- msgid "WordPress version"
29
- msgstr "WordPress のバージョン"
30
 
31
- #: custom-post-type-ui/custom-post-type-ui.php:425
32
- msgid "Slightly Outdated Demo Video"
33
- msgstr "ちょっと古いデモビデオ"
34
 
35
- #: custom-post-type-ui/custom-post-type-ui.php:447
36
- msgid "Custom post type deleted successfully"
37
- msgstr "カスタム投稿タイプの削除に成功しました。"
 
38
 
39
- #: custom-post-type-ui/custom-post-type-ui.php:452
40
- msgid "Manage Custom Post Types"
 
41
  msgstr "カスタム投稿タイプの管理"
42
 
43
- #: custom-post-type-ui/custom-post-type-ui.php:453
44
- msgid "Deleting custom post types does <strong>NOT</strong> delete any content added to those post types. You can easily recreate your post types and the content will still exist."
45
- msgstr "カスタム投稿タイプを削除してもその投稿タイプに追加されている<strong>コンテンツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなりません。"
46
 
47
- #: custom-post-type-ui/custom-post-type-ui.php:460
48
- #: custom-post-type-ui/custom-post-type-ui.php:672
49
- msgid "Action"
50
- msgstr "操作"
51
 
52
- #: custom-post-type-ui/custom-post-type-ui.php:461
53
- #: custom-post-type-ui/custom-post-type-ui.php:594
54
- #: custom-post-type-ui/custom-post-type-ui.php:673
55
- msgid "Name"
56
- msgstr "名前"
57
 
58
- #: custom-post-type-ui/custom-post-type-ui.php:462
59
- #: custom-post-type-ui/custom-post-type-ui.php:595
60
- #: custom-post-type-ui/custom-post-type-ui.php:674
61
- #: custom-post-type-ui/custom-post-type-ui.php:898
62
- #: custom-post-type-ui/custom-post-type-ui.php:1115
63
- msgid "Label"
64
- msgstr "ラベル"
65
 
66
- #: custom-post-type-ui/custom-post-type-ui.php:463
67
- #: custom-post-type-ui/custom-post-type-ui.php:597
68
- #: custom-post-type-ui/custom-post-type-ui.php:983
69
- msgid "Public"
70
- msgstr "一般公開"
71
 
72
- #: custom-post-type-ui/custom-post-type-ui.php:464
73
- #: custom-post-type-ui/custom-post-type-ui.php:598
74
- #: custom-post-type-ui/custom-post-type-ui.php:678
75
- #: custom-post-type-ui/custom-post-type-ui.php:993
76
- #: custom-post-type-ui/custom-post-type-ui.php:1233
77
- msgid "Show UI"
78
- msgstr "UI を表示"
79
 
80
- #: custom-post-type-ui/custom-post-type-ui.php:465
81
- #: custom-post-type-ui/custom-post-type-ui.php:600
82
- #: custom-post-type-ui/custom-post-type-ui.php:677
83
- #: custom-post-type-ui/custom-post-type-ui.php:1008
84
- #: custom-post-type-ui/custom-post-type-ui.php:1223
85
- msgid "Hierarchical"
86
- msgstr "階層"
87
 
88
- #: custom-post-type-ui/custom-post-type-ui.php:466
89
- #: custom-post-type-ui/custom-post-type-ui.php:601
90
- #: custom-post-type-ui/custom-post-type-ui.php:679
91
- #: custom-post-type-ui/custom-post-type-ui.php:1018
92
- #: custom-post-type-ui/custom-post-type-ui.php:1253
93
- msgid "Rewrite"
94
- msgstr "リライト"
 
95
 
96
- #: custom-post-type-ui/custom-post-type-ui.php:467
97
- #: custom-post-type-ui/custom-post-type-ui.php:602
98
- #: custom-post-type-ui/custom-post-type-ui.php:680
99
- msgid "Rewrite Slug"
100
- msgstr "Rewrite スラッグ"
101
 
102
- #: custom-post-type-ui/custom-post-type-ui.php:468
103
- msgid "Total Published"
104
- msgstr "公開数"
 
105
 
106
- #: custom-post-type-ui/custom-post-type-ui.php:469
107
- msgid "Total Drafts"
108
- msgstr "下書き数"
 
109
 
110
- #: custom-post-type-ui/custom-post-type-ui.php:470
111
- #: custom-post-type-ui/custom-post-type-ui.php:1048
112
- msgid "Supports"
113
- msgstr "サポート"
114
 
115
- #: custom-post-type-ui/custom-post-type-ui.php:574
116
- msgid "Place the below code in your themes functions.php file to manually create this custom post type"
117
- msgstr "以下のコードを functions.php ファイルに追記すれば、手動でこのカスタム投稿タイプを作成できます。"
 
118
 
119
- #: custom-post-type-ui/custom-post-type-ui.php:590
120
- msgid "Additional Custom Post Types"
121
- msgstr "追加されているカスタム投稿タイプ"
 
122
 
123
- #: custom-post-type-ui/custom-post-type-ui.php:591
124
- msgid "The custom post types below are registered in WordPress but were not created by the Custom Post Type UI Plugin."
125
- msgstr "以下のカスタム投稿タイプは WordPress に登録されていますが Custom Post Type UI で作成されてものではありません。"
 
126
 
127
- #: custom-post-type-ui/custom-post-type-ui.php:596
128
- #: custom-post-type-ui/custom-post-type-ui.php:675
129
- #: custom-post-type-ui/custom-post-type-ui.php:903
130
- #: custom-post-type-ui/custom-post-type-ui.php:1120
131
- msgid "Singular Label"
132
- msgstr "単数形のラベル"
 
133
 
134
- #: custom-post-type-ui/custom-post-type-ui.php:599
135
- #: custom-post-type-ui/custom-post-type-ui.php:1003
136
- msgid "Capability Type"
137
- msgstr "利用タイプ"
138
 
139
- #: custom-post-type-ui/custom-post-type-ui.php:603
140
- #: custom-post-type-ui/custom-post-type-ui.php:1033
141
- #: custom-post-type-ui/custom-post-type-ui.php:1243
142
- msgid "Query Var"
143
- msgstr "クエリーバージョン"
144
 
145
- #: custom-post-type-ui/custom-post-type-ui.php:658
146
- msgid "Custom taxonomy deleted successfully"
147
- msgstr "カスタム分類を削除しました。"
 
148
 
149
- #: custom-post-type-ui/custom-post-type-ui.php:663
150
- msgid "Manage Custom Taxonomies"
151
- msgstr "カスタム分類の管理"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
 
153
- #: custom-post-type-ui/custom-post-type-ui.php:664
154
- msgid "Deleting custom taxonomies does <strong>NOT</strong> delete any content added to those taxonomies. You can easily recreate your taxonomies and the content will still exist."
155
- msgstr "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除されません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
156
 
157
- #: custom-post-type-ui/custom-post-type-ui.php:676
158
- msgid "Attached Post Types"
 
159
  msgstr "利用する投稿タイプ"
160
 
161
- #: custom-post-type-ui/custom-post-type-ui.php:751
162
- msgid "Place the below code in your themes functions.php file to manually create this custom taxonomy"
163
- msgstr "以下のコードを functions.php ファイルに追記すれば、手動でこのカスタム分類を作成できます。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
- #: custom-post-type-ui/custom-post-type-ui.php:852
166
- msgid "Custom post type created successfully. You may need to refresh to view the new post type."
167
- msgstr "カスタム投稿タイプを作成しました。新しい投稿タイプを表示するには画面を再読み込みする必要があるかもしれません。"
 
 
168
 
169
- #: custom-post-type-ui/custom-post-type-ui.php:857
170
- msgid "Custom taxonomy created successfully. You may need to refresh to view the new taxonomy."
171
- msgstr "カスタム分類を作成しました。新しい分類を表示するには画面を再読み込みする必要があるかもしれません。"
 
172
 
173
- #: custom-post-type-ui/custom-post-type-ui.php:863
174
- msgid "Post type name is a required field."
175
- msgstr "投稿タイプ名は必須項目です。"
176
 
177
- #: custom-post-type-ui/custom-post-type-ui.php:867
178
- msgid "Taxonomy name is a required field."
179
- msgstr "分類名は必須です。"
 
 
 
180
 
181
- #: custom-post-type-ui/custom-post-type-ui.php:871
182
- msgid "You must assign your custom taxonomy to at least one post type."
183
- msgstr "カスタム分類は最低ひとつのカスタム投稿タイプに割り当てる必要があります。"
184
 
185
- #: custom-post-type-ui/custom-post-type-ui.php:880
186
- msgid "Edit Custom Post Type"
187
- msgstr "カスタム投稿タイプを編集"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
 
189
- #: custom-post-type-ui/custom-post-type-ui.php:880
190
- #: custom-post-type-ui/custom-post-type-ui.php:882
191
- #: custom-post-type-ui/custom-post-type-ui.php:1097
192
- #: custom-post-type-ui/custom-post-type-ui.php:1099
193
- msgid "Reset"
194
- msgstr "リセット"
195
 
196
- #: custom-post-type-ui/custom-post-type-ui.php:882
197
- msgid "Create New Custom Post Type"
198
- msgstr "カスタム投稿タイプの作成"
 
 
199
 
200
- #: custom-post-type-ui/custom-post-type-ui.php:884
201
- msgid "If you are unfamiliar with the options below only fill out the <strong>Post Type Name</strong> and <strong>Label</strong> fields and check which meta boxes to support. The other settings are set to the most common defaults for custom post types."
202
- msgstr "以下のオプションについてよく分からなければ、<strong>投稿タイプ名</strong>と<strong>ラベル</strong>の欄だけ入力し、サポートするメタボックスをチェックしてください。他の設定はカスタム投稿タイプにもっとも一般的な初期設定値が設定されます。"
203
 
204
- #: custom-post-type-ui/custom-post-type-ui.php:893
205
- msgid "Post Type Name"
 
206
  msgstr "投稿タイプ名"
207
 
208
- #: custom-post-type-ui/custom-post-type-ui.php:908
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  msgid "Description"
210
  msgstr "説明"
211
 
212
- #: custom-post-type-ui/custom-post-type-ui.php:913
213
- #: custom-post-type-ui/custom-post-type-ui.php:1149
214
- msgid "View Advanced Label Options"
215
- msgstr "詳細ラベル設定を表示する"
 
216
 
217
- #: custom-post-type-ui/custom-post-type-ui.php:914
218
- #: custom-post-type-ui/custom-post-type-ui.php:1150
219
- msgid "View Advanced Options"
220
- msgstr "詳細設定を表示する"
221
 
222
- #: custom-post-type-ui/custom-post-type-ui.php:920
223
- msgid "Below are the advanced label options for custom post types. If you are unfamiliar with these labels the plugin will automatically create labels based off of your custom post type name"
224
- msgstr "以下はカスタム投稿タイプの詳細ラベルオプションです。こうしたラベルについてよく分からなければ、入力したカスタム投稿タイプ名をもとに自動的にラベルを作成します。"
 
225
 
226
- #: custom-post-type-ui/custom-post-type-ui.php:923
227
- msgid "Add New"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  msgstr "新規追加"
229
 
230
- #: custom-post-type-ui/custom-post-type-ui.php:928
231
- #: custom-post-type-ui/custom-post-type-ui.php:1194
232
  msgid "Add New Item"
233
  msgstr "新規項目追加"
234
 
235
- #: custom-post-type-ui/custom-post-type-ui.php:933
 
 
 
 
236
  msgid "Edit"
237
  msgstr "編集"
238
 
239
- #: custom-post-type-ui/custom-post-type-ui.php:938
240
- #: custom-post-type-ui/custom-post-type-ui.php:1184
 
 
 
241
  msgid "Edit Item"
242
  msgstr "項目を編集"
243
 
244
- #: custom-post-type-ui/custom-post-type-ui.php:943
 
 
 
 
245
  msgid "New Item"
246
  msgstr "新規項目"
247
 
248
- #: custom-post-type-ui/custom-post-type-ui.php:948
 
 
 
 
 
249
  msgid "View"
250
  msgstr "表示"
251
 
252
- #: custom-post-type-ui/custom-post-type-ui.php:953
 
 
 
 
253
  msgid "View Item"
254
  msgstr "項目を表示"
255
 
256
- #: custom-post-type-ui/custom-post-type-ui.php:958
257
- #: custom-post-type-ui/custom-post-type-ui.php:1159
258
- msgid "Search Items"
 
 
 
 
259
  msgstr "項目検索"
260
 
261
- #: custom-post-type-ui/custom-post-type-ui.php:963
 
 
 
 
262
  msgid "Not Found"
263
  msgstr "見つかりません"
264
 
265
- #: custom-post-type-ui/custom-post-type-ui.php:968
 
 
 
 
266
  msgid "Not Found in Trash"
267
  msgstr "ゴミ箱にはありません。"
268
 
269
- #: custom-post-type-ui/custom-post-type-ui.php:973
 
 
 
 
 
270
  msgid "Parent"
271
  msgstr "親"
272
 
273
- #: custom-post-type-ui/custom-post-type-ui.php:1028
274
- #: custom-post-type-ui/custom-post-type-ui.php:1263
275
- msgid "Custom Rewrite Slug"
276
- msgstr "カスタムリライトスラッグ"
277
 
278
- #: custom-post-type-ui/custom-post-type-ui.php:1043
279
- msgid "Menu Position"
280
- msgstr "メニューの位置"
 
 
 
 
 
 
 
 
 
 
 
281
 
282
- #: custom-post-type-ui/custom-post-type-ui.php:1064
283
- msgid "Built-in Taxonomies"
284
- msgstr "ビルトイン分類"
 
 
 
 
 
 
 
 
 
 
 
285
 
286
- #: custom-post-type-ui/custom-post-type-ui.php:1097
287
- msgid "Edit Custom Taxonomy"
288
- msgstr "カスタム分類の編集"
 
 
 
289
 
290
- #: custom-post-type-ui/custom-post-type-ui.php:1099
291
- msgid "Create Custom Taxonomy"
292
- msgstr "カスタム分類作成"
 
 
 
 
 
 
 
293
 
294
- #: custom-post-type-ui/custom-post-type-ui.php:1101
295
- msgid "If you are unfamiliar with the options below only fill out the <strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> fields. The other settings are set to the most common defaults for custom taxonomies."
296
- msgstr "以下のオプションについてよく分からなければ、<strong>分類名</strong>と<strong>投稿タイプ名</strong>の欄だけ入力してください。他の設定はカスタム分類にもっとも一般的な初期設定値が設定されます。"
 
 
 
297
 
298
- #: custom-post-type-ui/custom-post-type-ui.php:1110
299
- msgid "Taxonomy Name"
300
- msgstr "分類名"
301
 
302
- #: custom-post-type-ui/custom-post-type-ui.php:1125
303
- msgid "Attach to Post Type"
304
- msgstr "利用する投稿タイプ"
305
 
306
- #: custom-post-type-ui/custom-post-type-ui.php:1156
307
- msgid "Below are the advanced label options for custom taxonomies. If you are unfamiliar with these labels the plugin will automatically create labels based off of your custom taxonomy name"
308
- msgstr "以下はカスタム分類の詳細ラベルオプションです。こうしたラベルについてよく分からなければ、入力したカスタム分類名をもとに自動的にラベルを作成します。"
309
 
310
- #: custom-post-type-ui/custom-post-type-ui.php:1164
311
- msgid "Popular Items"
312
- msgstr "よく利用されている項目"
 
 
313
 
314
- #: custom-post-type-ui/custom-post-type-ui.php:1169
315
- msgid "All Items"
316
- msgstr "すべての項目"
317
 
318
- #: custom-post-type-ui/custom-post-type-ui.php:1174
319
- msgid "Parent Item"
320
- msgstr "親項目"
321
 
322
- #: custom-post-type-ui/custom-post-type-ui.php:1179
323
- msgid "Parent Item Colon"
324
- msgstr "親項目コロン"
325
 
326
- #: custom-post-type-ui/custom-post-type-ui.php:1189
327
- msgid "Update Item"
328
- msgstr "項目をアップデート"
329
 
330
- #: custom-post-type-ui/custom-post-type-ui.php:1199
331
- msgid "New Item Name"
332
- msgstr "新規項目名"
333
 
334
- #: custom-post-type-ui/custom-post-type-ui.php:1204
335
- msgid "Separate Items with Commas"
336
- msgstr "項目が複数ある場合はコンマで区切ってください。"
337
 
338
- #: custom-post-type-ui/custom-post-type-ui.php:1209
339
- msgid "Add or Remove Items"
340
- msgstr "項目の追加もしくは削除"
341
 
342
- #: custom-post-type-ui/custom-post-type-ui.php:1214
343
- msgid "Choose From Most Used"
344
- msgstr "最もよく使われているものから選択"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-02-11 21:09-0600\n"
6
+ "PO-Revision-Date: 2015-02-11 21:09-0600\n"
7
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
+ "Language: ja_JP\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
  "X-Poedit-Basepath: /Users/digitalcubeimac/www/wp_300_ja/wp-content/plugins\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.7.4\n"
17
  "X-Poedit-SearchPath-0: custom-post-type-ui\n"
18
 
19
+ #: ../custom-post-type-ui.php:57
20
+ #, fuzzy
21
+ msgid "Custom Post Types"
22
+ msgstr "利用する投稿タイプ"
23
+
24
+ #: ../custom-post-type-ui.php:57
25
+ msgid "CPT UI"
26
+ msgstr ""
27
+
28
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
29
+ #, fuzzy
30
+ msgid "Custom Post Type UI"
31
+ msgstr "利用する投稿タイプ"
32
+
33
+ #: ../custom-post-type-ui.php:323
34
+ msgid ""
35
+ "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
+ "with our plugin provides efficiency and speed in creating post types and "
37
+ "taxonomies, to better organize your content, without having to touch code."
38
+ msgstr ""
39
+
40
+ #: ../custom-post-type-ui.php:325
41
+ #, php-format
42
+ msgid ""
43
+ "To get started with creating some post types, please visit %s and for "
44
+ "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
45
+ "there fits your issue, visit our %s and we will try to get to your question "
46
+ "as soon as possible."
47
+ msgstr ""
48
+
49
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
50
+ #, fuzzy
51
+ msgid "Add/Edit Post Types"
52
+ msgstr "カスタム投稿タイプを編集"
53
+
54
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
55
+ #, fuzzy
56
+ msgid "Add/Edit Taxonomies"
57
+ msgstr "ビルトイン分類"
58
+
59
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:23
60
+ #, fuzzy
61
+ msgid "Help/Support"
62
+ msgstr "サポート"
63
+
64
+ #: ../custom-post-type-ui.php:329
65
+ msgid "CPT UI Support Forum"
66
+ msgstr ""
67
+
68
+ #: ../custom-post-type-ui.php:345
69
+ msgid "Help Support This Plugin!"
70
+ msgstr ""
71
+
72
+ #: ../custom-post-type-ui.php:349
73
+ msgid "Professional WordPress<br />Third Edition"
74
+ msgstr ""
75
+
76
+ #: ../custom-post-type-ui.php:354
77
+ msgid ""
78
+ "The leading book on WordPress design and development! Brand new third "
79
+ "edition!"
80
+ msgstr ""
81
+
82
+ #: ../custom-post-type-ui.php:357
83
+ msgid "Professional WordPress<br />Plugin Development"
84
+ msgstr ""
85
+
86
+ #: ../custom-post-type-ui.php:362
87
+ msgid "Highest rated WordPress development book on Amazon!"
88
+ msgstr ""
89
+
90
+ #: ../custom-post-type-ui.php:365
91
+ msgid "PayPal Donation"
92
+ msgstr ""
93
+
94
+ #: ../custom-post-type-ui.php:366
95
+ msgid "Please donate to the development of Custom Post Type UI:"
96
+ msgstr ""
97
+
98
+ #: ../custom-post-type-ui.php:370
99
+ msgid "PayPal - The safer, easier way to pay online!"
100
+ msgstr ""
101
+
102
+ #: ../custom-post-type-ui.php:407
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:416
108
+ msgid "Please Report Bugs"
109
+ msgstr ""
110
 
111
+ #: ../custom-post-type-ui.php:418
112
+ msgid "Follow on Twitter:"
113
+ msgstr ""
114
 
115
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
116
+ msgid "Import/Export"
117
+ msgstr ""
118
 
119
+ #: ../custom-post-type-ui.php:480
120
+ #, fuzzy
121
+ msgid "Manage Taxonomies"
122
+ msgstr "カスタム分類の管理"
123
 
124
+ #: ../custom-post-type-ui.php:484
125
+ #, fuzzy
126
+ msgid "Manage Post Types"
127
  msgstr "カスタム投稿タイプの管理"
128
 
129
+ #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
130
+ msgid "Add New"
131
+ msgstr "新規追加"
132
 
133
+ #: ../custom-post-type-ui.php:513
134
+ #, fuzzy
135
+ msgid "Edit Post Types"
136
+ msgstr "カスタム投稿タイプを編集"
137
 
138
+ #: ../custom-post-type-ui.php:517
139
+ #, fuzzy
140
+ msgid "Edit Taxonomies"
141
+ msgstr "ビルトイン分類"
 
142
 
143
+ #: ../custom-post-type-ui.php:521
144
+ #, fuzzy
145
+ msgid "Post Types"
146
+ msgstr "投稿タイプ名"
 
 
 
147
 
148
+ #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
149
+ #, fuzzy
150
+ msgid "Taxonomies"
151
+ msgstr "ビルトイン分類"
 
152
 
153
+ #: ../custom-post-type-ui.php:523
154
+ msgid "Get Code"
155
+ msgstr ""
 
 
 
 
156
 
157
+ #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
158
+ #: ../inc/taxonomies.php:319
159
+ msgid "Settings"
160
+ msgstr ""
 
 
 
161
 
162
+ #: ../custom-post-type-ui.php:607
163
+ msgid "Help"
164
+ msgstr ""
165
+
166
+ #: ../custom-post-type-ui.php:635
167
+ #, php-format
168
+ msgid "%s has been successfully added"
169
+ msgstr ""
170
 
171
+ #: ../custom-post-type-ui.php:637
172
+ #, php-format
173
+ msgid "%s has failed to be added"
174
+ msgstr ""
 
175
 
176
+ #: ../custom-post-type-ui.php:641
177
+ #, php-format
178
+ msgid "%s has been successfully updated"
179
+ msgstr ""
180
 
181
+ #: ../custom-post-type-ui.php:643
182
+ #, php-format
183
+ msgid "%s has failed to be updated"
184
+ msgstr ""
185
 
186
+ #: ../custom-post-type-ui.php:647
187
+ #, php-format
188
+ msgid "%s has been successfully deleted"
189
+ msgstr ""
190
 
191
+ #: ../custom-post-type-ui.php:649
192
+ #, php-format
193
+ msgid "%s has failed to be deleted"
194
+ msgstr ""
195
 
196
+ #: ../custom-post-type-ui.php:653
197
+ #, php-format
198
+ msgid "%s has been successfully imported"
199
+ msgstr ""
200
 
201
+ #: ../custom-post-type-ui.php:655
202
+ #, php-format
203
+ msgid "%s has failed to be imported"
204
+ msgstr ""
205
 
206
+ #: ../inc/import_export.php:52
207
+ msgid ""
208
+ "If you are wanting to migrate registered post types or taxonomies from this "
209
+ "site to another, that will also use Custom Post Type UI, use the import and "
210
+ "export functionality. If you are moving away from Custom Post Type UI, use "
211
+ "the information in the \"Get Code\" tab."
212
+ msgstr ""
213
 
214
+ #: ../inc/import_export.php:55
215
+ msgid "NOTE"
216
+ msgstr ""
 
217
 
218
+ #: ../inc/import_export.php:56
219
+ msgid "This will not export the associated posts, just the settings."
220
+ msgstr ""
 
 
221
 
222
+ #: ../inc/import_export.php:63
223
+ #, fuzzy
224
+ msgid "Import Post Types"
225
+ msgstr "利用する投稿タイプ"
226
 
227
+ #: ../inc/import_export.php:65 ../inc/import_export.php:91
228
+ msgid "Paste content here."
229
+ msgstr ""
230
+
231
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
232
+ msgid "Note:"
233
+ msgstr ""
234
+
235
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
236
+ msgid "Importing will overwrite previous registered settings."
237
+ msgstr ""
238
+
239
+ #: ../inc/import_export.php:67
240
+ msgid ""
241
+ "To import post types from a different WordPress site, paste the exported "
242
+ "content from that site and click the \"Import\" button."
243
+ msgstr ""
244
 
245
+ #: ../inc/import_export.php:68 ../inc/import_export.php:94
246
+ msgid "Import"
247
+ msgstr ""
248
 
249
+ #: ../inc/import_export.php:72
250
+ #, fuzzy
251
+ msgid "Export Post Types"
252
  msgstr "利用する投稿タイプ"
253
 
254
+ #: ../inc/import_export.php:79
255
+ msgid "No post types registered yet."
256
+ msgstr ""
257
+
258
+ #: ../inc/import_export.php:82 ../inc/import_export.php:107
259
+ msgid ""
260
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
261
+ "(Mac)."
262
+ msgstr ""
263
+
264
+ #: ../inc/import_export.php:83
265
+ msgid ""
266
+ "Use the content above to import current post types into a different "
267
+ "WordPress site. You can also use this to simply back up your post type "
268
+ "settings."
269
+ msgstr ""
270
+
271
+ #: ../inc/import_export.php:89
272
+ #, fuzzy
273
+ msgid "Import Taxonomies"
274
+ msgstr "ビルトイン分類"
275
 
276
+ #: ../inc/import_export.php:93
277
+ msgid ""
278
+ "To import taxonomies from a different WordPress site, paste the exported "
279
+ "content from that site and click the \"Import\" button."
280
+ msgstr ""
281
 
282
+ #: ../inc/import_export.php:98
283
+ #, fuzzy
284
+ msgid "Export Taxonomies"
285
+ msgstr "ビルトイン分類"
286
 
287
+ #: ../inc/import_export.php:104
288
+ msgid "No taxonomies registered yet."
289
+ msgstr ""
290
 
291
+ #: ../inc/import_export.php:108
292
+ msgid ""
293
+ "Use the content above to import current taxonomies into a different "
294
+ "WordPress site. You can also use this to simply back up your taxonomy "
295
+ "settings."
296
+ msgstr ""
297
 
298
+ #: ../inc/import_export.php:116
299
+ msgid "Get Post Type and Taxonomy Code"
300
+ msgstr ""
301
 
302
+ #: ../inc/import_export.php:118
303
+ #, fuzzy
304
+ msgid "All CPT UI Post Types"
305
+ msgstr "追加されているカスタム投稿タイプ"
306
+
307
+ #: ../inc/import_export.php:119 ../inc/import_export.php:123
308
+ msgid "Copy/paste the code below into your functions.php file."
309
+ msgstr ""
310
+
311
+ #: ../inc/import_export.php:122
312
+ #, fuzzy
313
+ msgid "All CPT UI Taxonomies"
314
+ msgstr "ビルトイン分類"
315
+
316
+ #: ../inc/import_export.php:153
317
+ msgid "No taxonomies to display at this time"
318
+ msgstr ""
319
+
320
+ #: ../inc/import_export.php:223
321
+ msgid "No post types to display at this time"
322
+ msgstr ""
323
+
324
+ #: ../inc/import_export.php:342
325
+ #, fuzzy
326
+ msgid "Post types"
327
+ msgstr "投稿タイプ名"
328
 
329
+ #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
330
+ msgid "Are you sure you want to delete this?"
331
+ msgstr ""
 
 
 
332
 
333
+ #: ../inc/post-types.php:78
334
+ msgid ""
335
+ "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
336
+ "Changing that value registers a new post type entry for your install."
337
+ msgstr ""
338
 
339
+ #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
340
+ msgid "Select"
341
+ msgstr ""
342
 
343
+ #: ../inc/post-types.php:103
344
+ #, fuzzy
345
+ msgid "Post Type Slug"
346
  msgstr "投稿タイプ名"
347
 
348
+ #: ../inc/post-types.php:104
349
+ msgid "(e.g. movie)"
350
+ msgstr ""
351
+
352
+ #: ../inc/post-types.php:105
353
+ msgid ""
354
+ "The post type name. Used to retrieve custom post type content. Should be "
355
+ "short and unique"
356
+ msgstr ""
357
+
358
+ #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
359
+ #, fuzzy
360
+ msgid "Plural Label"
361
+ msgstr "単数形のラベル"
362
+
363
+ #: ../inc/post-types.php:117
364
+ msgid "(e.g. Movies)"
365
+ msgstr ""
366
+
367
+ #: ../inc/post-types.php:118 ../inc/post-types.php:186
368
+ #: ../inc/post-types.php:198 ../inc/post-types.php:210
369
+ #: ../inc/post-types.php:222 ../inc/post-types.php:234
370
+ #: ../inc/post-types.php:246 ../inc/post-types.php:258
371
+ #: ../inc/post-types.php:270 ../inc/post-types.php:282
372
+ #: ../inc/post-types.php:294 ../inc/post-types.php:306
373
+ #: ../inc/post-types.php:318
374
+ msgid "Post type label. Used in the admin menu for displaying post types."
375
+ msgstr ""
376
+
377
+ #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
378
+ msgid "Singular Label"
379
+ msgstr "単数形のラベル"
380
+
381
+ #: ../inc/post-types.php:129
382
+ msgid "(e.g. Movie)"
383
+ msgstr ""
384
+
385
+ #: ../inc/post-types.php:130
386
+ msgid ""
387
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
388
+ "needed."
389
+ msgstr ""
390
+
391
+ #: ../inc/post-types.php:145
392
  msgid "Description"
393
  msgstr "説明"
394
 
395
+ #: ../inc/post-types.php:146
396
+ msgid ""
397
+ "Custom Post Type Description. Describe what your custom post type is used "
398
+ "for."
399
+ msgstr ""
400
 
401
+ #: ../inc/post-types.php:153
402
+ #, fuzzy
403
+ msgid "Edit Post Type"
404
+ msgstr "利用する投稿タイプ"
405
 
406
+ #: ../inc/post-types.php:154
407
+ #, fuzzy
408
+ msgid "Delete Post Type"
409
+ msgstr "利用する投稿タイプ"
410
 
411
+ #: ../inc/post-types.php:156
412
+ #, fuzzy
413
+ msgid "Add Post Type"
414
+ msgstr "利用する投稿タイプ"
415
+
416
+ #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
417
+ msgid "Click headings to reveal available options."
418
+ msgstr ""
419
+
420
+ #: ../inc/post-types.php:165 ../inc/post-types.php:327
421
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
422
+ #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
423
+ msgid "Click to expand"
424
+ msgstr ""
425
+
426
+ #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
427
+ #, fuzzy
428
+ msgid "Labels"
429
+ msgstr "ラベル"
430
+
431
+ #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
432
+ #, fuzzy
433
+ msgid "Menu Name"
434
+ msgstr "名前"
435
+
436
+ #: ../inc/post-types.php:174
437
+ msgid "Custom menu name for your custom post type."
438
+ msgstr ""
439
+
440
+ #: ../inc/post-types.php:178
441
+ msgid "(e.g. My Movies)"
442
+ msgstr ""
443
+
444
+ #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
445
+ msgid "All Items"
446
+ msgstr "すべての項目"
447
+
448
+ #: ../inc/post-types.php:190
449
+ msgid "(e.g. All Movies)"
450
+ msgstr ""
451
+
452
+ #: ../inc/post-types.php:202
453
+ #, fuzzy
454
+ msgid "(e.g. Add New)"
455
  msgstr "新規追加"
456
 
457
+ #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
 
458
  msgid "Add New Item"
459
  msgstr "新規項目追加"
460
 
461
+ #: ../inc/post-types.php:214
462
+ msgid "(e.g. Add New Movie)"
463
+ msgstr ""
464
+
465
+ #: ../inc/post-types.php:221
466
  msgid "Edit"
467
  msgstr "編集"
468
 
469
+ #: ../inc/post-types.php:226
470
+ msgid "(e.g. Edit)"
471
+ msgstr ""
472
+
473
+ #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
474
  msgid "Edit Item"
475
  msgstr "項目を編集"
476
 
477
+ #: ../inc/post-types.php:238
478
+ msgid "(e.g. Edit Movie)"
479
+ msgstr ""
480
+
481
+ #: ../inc/post-types.php:245
482
  msgid "New Item"
483
  msgstr "新規項目"
484
 
485
+ #: ../inc/post-types.php:250
486
+ #, fuzzy
487
+ msgid "(e.g. New Movie)"
488
+ msgstr "新規項目追加"
489
+
490
+ #: ../inc/post-types.php:257
491
  msgid "View"
492
  msgstr "表示"
493
 
494
+ #: ../inc/post-types.php:262
495
+ msgid "(e.g. View)"
496
+ msgstr ""
497
+
498
+ #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
499
  msgid "View Item"
500
  msgstr "項目を表示"
501
 
502
+ #: ../inc/post-types.php:274
503
+ msgid "(e.g. View Movie)"
504
+ msgstr ""
505
+
506
+ #: ../inc/post-types.php:281
507
+ #, fuzzy
508
+ msgid "Search Item"
509
  msgstr "項目検索"
510
 
511
+ #: ../inc/post-types.php:286
512
+ msgid "(e.g. Search Movie)"
513
+ msgstr ""
514
+
515
+ #: ../inc/post-types.php:293
516
  msgid "Not Found"
517
  msgstr "見つかりません"
518
 
519
+ #: ../inc/post-types.php:298
520
+ msgid "(e.g. No Movies found)"
521
+ msgstr ""
522
+
523
+ #: ../inc/post-types.php:305
524
  msgid "Not Found in Trash"
525
  msgstr "ゴミ箱にはありません。"
526
 
527
+ #: ../inc/post-types.php:310
528
+ #, fuzzy
529
+ msgid "(e.g. No Movies found in Trash)"
530
+ msgstr "ゴミ箱にはありません。"
531
+
532
+ #: ../inc/post-types.php:317
533
  msgid "Parent"
534
  msgstr "親"
535
 
536
+ #: ../inc/post-types.php:322
537
+ msgid "(e.g. Parent Movie)"
538
+ msgstr ""
 
539
 
540
+ #: ../inc/post-types.php:336 ../inc/post-types.php:356
541
+ #: ../inc/post-types.php:376 ../inc/post-types.php:396
542
+ #: ../inc/post-types.php:427 ../inc/post-types.php:447
543
+ #: ../inc/post-types.php:479 ../inc/post-types.php:499
544
+ #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
545
+ #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
546
+ #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
547
+ #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
548
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
549
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
550
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
551
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
552
+ msgid "False"
553
+ msgstr ""
554
 
555
+ #: ../inc/post-types.php:337 ../inc/post-types.php:357
556
+ #: ../inc/post-types.php:377 ../inc/post-types.php:397
557
+ #: ../inc/post-types.php:428 ../inc/post-types.php:448
558
+ #: ../inc/post-types.php:480 ../inc/post-types.php:500
559
+ #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
560
+ #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
561
+ #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
562
+ #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
563
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
564
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
565
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
566
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
567
+ msgid "True"
568
+ msgstr ""
569
 
570
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
571
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
572
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
573
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
574
+ msgid "Public"
575
+ msgstr "一般公開"
576
 
577
+ #: ../inc/post-types.php:346 ../inc/post-types.php:366
578
+ #: ../inc/post-types.php:457 ../inc/post-types.php:489
579
+ #: ../inc/post-types.php:509 ../inc/post-types.php:548
580
+ #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
581
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
582
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
583
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
584
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
585
+ msgid "(default: True)"
586
+ msgstr ""
587
 
588
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
589
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
590
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
591
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
592
+ msgid "Whether posts of this type should be shown in the admin UI"
593
+ msgstr ""
594
 
595
+ #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
596
+ msgid "Show UI"
597
+ msgstr "UI を表示"
598
 
599
+ #: ../inc/post-types.php:367
600
+ msgid "Whether to generate a default UI for managing this post type"
601
+ msgstr ""
602
 
603
+ #: ../inc/post-types.php:385
604
+ msgid "Has Archive"
605
+ msgstr ""
606
 
607
+ #: ../inc/post-types.php:386 ../inc/post-types.php:406
608
+ #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
609
+ #: ../inc/taxonomies.php:454
610
+ msgid "(default: False)"
611
+ msgstr ""
612
 
613
+ #: ../inc/post-types.php:387
614
+ msgid "Whether the post type will have a post type archive page"
615
+ msgstr ""
616
 
617
+ #: ../inc/post-types.php:405
618
+ msgid "Exclude From Search"
619
+ msgstr ""
620
 
621
+ #: ../inc/post-types.php:407
622
+ msgid "Whether the post type will be searchable"
623
+ msgstr ""
624
 
625
+ #: ../inc/post-types.php:418
626
+ msgid "Capability Type"
627
+ msgstr "利用タイプ"
628
 
629
+ #: ../inc/post-types.php:419
630
+ msgid "The post type to use for checking read, edit, and delete capabilities"
631
+ msgstr ""
632
 
633
+ #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
634
+ msgid "Hierarchical"
635
+ msgstr "階層"
636
 
637
+ #: ../inc/post-types.php:438
638
+ msgid "Whether the post type can have parent-child relationships"
639
+ msgstr ""
640
 
641
+ #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
642
+ msgid "Rewrite"
643
+ msgstr "リライト"
644
+
645
+ #: ../inc/post-types.php:458
646
+ msgid "Triggers the handling of rewrites for this post type"
647
+ msgstr ""
648
+
649
+ #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
650
+ msgid "Custom Rewrite Slug"
651
+ msgstr "カスタムリライトスラッグ"
652
+
653
+ #: ../inc/post-types.php:470
654
+ msgid "(default: post type name)"
655
+ msgstr ""
656
+
657
+ #: ../inc/post-types.php:471
658
+ msgid "Custom slug to use instead of the default."
659
+ msgstr ""
660
+
661
+ #: ../inc/post-types.php:488
662
+ msgid "With Front"
663
+ msgstr ""
664
+
665
+ #: ../inc/post-types.php:490 ../inc/post-types.php:510
666
+ #: ../inc/taxonomies.php:421
667
+ msgid "Should the permastruct be prepended with the front base."
668
+ msgstr ""
669
+
670
+ #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
671
+ msgid "Query Var"
672
+ msgstr "クエリーバージョン"
673
+
674
+ #: ../inc/post-types.php:514
675
+ msgid "Menu Position"
676
+ msgstr "メニューの位置"
677
+
678
+ #: ../inc/post-types.php:516
679
+ msgid ""
680
+ "The position in the menu order the post type should appear. show_in_menu "
681
+ "must be true."
682
+ msgstr ""
683
+
684
+ #: ../inc/post-types.php:517
685
+ msgid ""
686
+ "See <a href=\"http://codex.wordpress.org/Function_Reference/"
687
+ "register_post_type#Parameters\">Available options</a> in the \"menu_position"
688
+ "\" section. Range of 5-100"
689
+ msgstr ""
690
+
691
+ #: ../inc/post-types.php:524
692
+ msgid "URL or Dashicon value for image to be used as menu icon."
693
+ msgstr ""
694
+
695
+ #: ../inc/post-types.php:529
696
+ msgid "Show in Menu"
697
+ msgstr ""
698
+
699
+ #: ../inc/post-types.php:530
700
+ msgid ""
701
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
702
+ "php\" is indicated for second input, post type will be sub menu of that."
703
+ msgstr ""
704
+
705
+ #: ../inc/post-types.php:547
706
+ #, fuzzy
707
+ msgid "Show In Menu"
708
+ msgstr "UI を表示"
709
+
710
+ #: ../inc/post-types.php:549
711
+ msgid ""
712
+ "Whether to show the post type in the admin menu and where to show that menu. "
713
+ "Note that show_ui must be true"
714
+ msgstr ""
715
+
716
+ #: ../inc/post-types.php:561
717
+ msgid "URL to image to be used as menu icon."
718
+ msgstr ""
719
+
720
+ #: ../inc/post-types.php:572
721
+ #, fuzzy
722
+ msgid "Menu Icon"
723
+ msgstr "メニューの位置"
724
+
725
+ #: ../inc/post-types.php:573
726
+ msgid "(Full URL for icon or Dashicon class)"
727
+ msgstr ""
728
+
729
+ #: ../inc/post-types.php:574
730
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
731
+ msgstr ""
732
+
733
+ #: ../inc/post-types.php:577
734
+ msgid "Supports"
735
+ msgstr "サポート"
736
+
737
+ #: ../inc/post-types.php:587
738
+ msgid "Title"
739
+ msgstr ""
740
+
741
+ #: ../inc/post-types.php:588
742
+ msgid "Adds the title meta box when creating content for this custom post type"
743
+ msgstr ""
744
+
745
+ #: ../inc/post-types.php:602
746
+ #, fuzzy
747
+ msgid "Editor"
748
+ msgstr "編集"
749
+
750
+ #: ../inc/post-types.php:603
751
+ msgid ""
752
+ "Adds the content editor meta box when creating content for this custom post "
753
+ "type"
754
+ msgstr ""
755
+
756
+ #: ../inc/post-types.php:617
757
+ msgid "Excerpt"
758
+ msgstr ""
759
+
760
+ #: ../inc/post-types.php:618
761
+ msgid ""
762
+ "Adds the excerpt meta box when creating content for this custom post type"
763
+ msgstr ""
764
+
765
+ #: ../inc/post-types.php:632
766
+ msgid "Trackbacks"
767
+ msgstr ""
768
+
769
+ #: ../inc/post-types.php:633
770
+ msgid ""
771
+ "Adds the trackbacks meta box when creating content for this custom post type"
772
+ msgstr ""
773
+
774
+ #: ../inc/post-types.php:647
775
+ #, fuzzy
776
+ msgid "Custom Fields"
777
+ msgstr "カスタムリライトスラッグ"
778
+
779
+ #: ../inc/post-types.php:648
780
+ msgid ""
781
+ "Adds the custom fields meta box when creating content for this custom post "
782
+ "type"
783
+ msgstr ""
784
+
785
+ #: ../inc/post-types.php:662
786
+ msgid "Comments"
787
+ msgstr ""
788
+
789
+ #: ../inc/post-types.php:663
790
+ msgid ""
791
+ "Adds the comments meta box when creating content for this custom post type"
792
+ msgstr ""
793
+
794
+ #: ../inc/post-types.php:677
795
+ msgid "Revisions"
796
+ msgstr ""
797
+
798
+ #: ../inc/post-types.php:678
799
+ msgid ""
800
+ "Adds the revisions meta box when creating content for this custom post type"
801
+ msgstr ""
802
+
803
+ #: ../inc/post-types.php:692
804
+ msgid "Featured Image"
805
+ msgstr ""
806
+
807
+ #: ../inc/post-types.php:693
808
+ msgid ""
809
+ "Adds the featured image meta box when creating content for this custom post "
810
+ "type"
811
+ msgstr ""
812
+
813
+ #: ../inc/post-types.php:707
814
+ msgid "Author"
815
+ msgstr ""
816
+
817
+ #: ../inc/post-types.php:708
818
+ msgid ""
819
+ "Adds the author meta box when creating content for this custom post type"
820
+ msgstr ""
821
+
822
+ #: ../inc/post-types.php:722
823
+ msgid "Page Attributes"
824
+ msgstr ""
825
+
826
+ #: ../inc/post-types.php:723
827
+ msgid ""
828
+ "Adds the page attribute meta box when creating content for this custom post "
829
+ "type"
830
+ msgstr ""
831
+
832
+ #: ../inc/post-types.php:737
833
+ msgid "Post Formats"
834
+ msgstr ""
835
+
836
+ #: ../inc/post-types.php:738
837
+ msgid "Adds post format support"
838
+ msgstr ""
839
+
840
+ #: ../inc/post-types.php:743
841
+ msgid "Use the option below to explicitly set \"supports\" to false."
842
+ msgstr ""
843
+
844
+ #: ../inc/post-types.php:751
845
+ msgid "None"
846
+ msgstr ""
847
+
848
+ #: ../inc/post-types.php:752
849
+ msgid "Remove all support features"
850
+ msgstr ""
851
+
852
+ #: ../inc/post-types.php:759
853
+ msgid "Built-in Taxonomies"
854
+ msgstr "ビルトイン分類"
855
+
856
+ #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
857
+ #, php-format
858
+ msgid "Adds %s support"
859
+ msgstr ""
860
+
861
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
862
+ msgid "Starter Notes"
863
+ msgstr ""
864
+
865
+ #: ../inc/post-types.php:809
866
+ #, php-format
867
+ msgid ""
868
+ "Post Type names should have %smax 20 characters%s, and only contain "
869
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
870
+ "letters that do not have accents. Reserved names: post, page, attachment, "
871
+ "revision, nav_menu_item."
872
+ msgstr ""
873
+
874
+ #: ../inc/post-types.php:810
875
+ #, php-format
876
+ msgid ""
877
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
878
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
879
+ "values. Labels, if left blank, will be automatically created based on the "
880
+ "post type name. Hover over the question mark for more details."
881
+ msgstr ""
882
+
883
+ #: ../inc/post-types.php:811
884
+ #, fuzzy, php-format
885
+ msgid ""
886
+ "Deleting custom post types will %sNOT%s delete any content into the database "
887
+ "or added to those post types. You can easily recreate your post types and "
888
+ "the content will still exist."
889
+ msgstr ""
890
+ "カスタム投稿タイプを削除してもその投稿タイプに追加されている<strong>コンテン"
891
+ "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
892
+ "ません。"
893
+
894
+ #: ../inc/post-types.php:890
895
+ msgid "Please provide a post type to delete"
896
+ msgstr ""
897
+
898
+ #: ../inc/post-types.php:950
899
+ msgid "Please provide a post type name"
900
+ msgstr ""
901
+
902
+ #: ../inc/post-types.php:968
903
+ msgid "Please do not use quotes in post type names or rewrite slugs"
904
+ msgstr ""
905
+
906
+ #: ../inc/post-types.php:975
907
+ #, php-format
908
+ msgid "Please choose a different post type name. %s is already registered."
909
+ msgstr ""
910
+
911
+ #: ../inc/support.php:44
912
+ #, fuzzy
913
+ msgid "Custom Post Type UI Support"
914
+ msgstr "Custom Post Types UI"
915
+
916
+ #: ../inc/support.php:46
917
+ #, php-format
918
+ msgid ""
919
+ "Please note that this plugin will NOT handle display of registered post "
920
+ "types or taxonomies in your current theme. It will simply register them for "
921
+ "you. If all else fails, visit us on the %s"
922
+ msgstr ""
923
+
924
+ #: ../inc/support.php:47
925
+ #, fuzzy
926
+ msgid "Support Forums"
927
+ msgstr "サポート"
928
+
929
+ #: ../inc/support.php:53
930
+ msgid "General"
931
+ msgstr ""
932
+
933
+ #: ../inc/support.php:56
934
+ msgid ""
935
+ "I changed my custom post type name and now I can not get to my posts. How do "
936
+ "I get them back?"
937
+ msgstr ""
938
+
939
+ #: ../inc/support.php:57
940
+ msgid ""
941
+ "You can either change the custom post type name back to the original name or "
942
+ "try the Post Type Switcher plugin"
943
+ msgstr ""
944
+
945
+ #: ../inc/support.php:62
946
+ msgid ""
947
+ "I changed my custom post type or taxonomy slug and now I have duplicates "
948
+ "shown. How do I remove the duplicate?"
949
+ msgstr ""
950
+
951
+ #: ../inc/support.php:63
952
+ msgid ""
953
+ "Renaming the slug for a post type or taxonomy creates a new entry in our "
954
+ "saved option which gets registered as its own post type or taxonomy. Since "
955
+ "the settings will be mirrored from the previous slug, you will just need to "
956
+ "delete the previous version's entry."
957
+ msgstr ""
958
+
959
+ #: ../inc/support.php:66
960
+ msgid ""
961
+ "I have added post thumbnail and/or post format support to my post type, but "
962
+ "those do not appear when adding a post type post."
963
+ msgstr ""
964
+
965
+ #: ../inc/support.php:67
966
+ msgid ""
967
+ "Make sure your theme has post \"post-thumbnails\" theme support enabled."
968
+ msgstr ""
969
+
970
+ #: ../inc/support.php:72
971
+ msgid "Front-end Display"
972
+ msgstr ""
973
+
974
+ #: ../inc/support.php:75
975
+ msgid "What template files should I edit to alter my post type display?"
976
+ msgstr ""
977
+
978
+ #: ../inc/support.php:76
979
+ #, php-format
980
+ msgid ""
981
+ "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
982
+ "details about available templates."
983
+ msgstr ""
984
+
985
+ #: ../inc/support.php:83
986
+ msgid "How do I display my custom post type on my site?"
987
+ msgstr ""
988
+
989
+ #: ../inc/support.php:84
990
+ #, php-format
991
+ msgid ""
992
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
993
+ "locations. If you have set the post type to have archives, the archive url "
994
+ "should be something like \"http://www.mysite.com/post-type-slug\""
995
+ msgstr ""
996
+
997
+ #: ../inc/support.php:90
998
+ msgid ""
999
+ "I have added categories and tags to my custom post type, but they do not "
1000
+ "appear in the archives."
1001
+ msgstr ""
1002
+
1003
+ #: ../inc/support.php:91
1004
+ #, php-format
1005
+ msgid ""
1006
+ "You will need to add your newly created post type to the types that the "
1007
+ "category and tag archives query for. You can see a tutorial on how to do "
1008
+ "that at %s"
1009
+ msgstr ""
1010
+
1011
+ #: ../inc/support.php:100
1012
+ msgid "Advanced"
1013
+ msgstr ""
1014
+
1015
+ #: ../inc/support.php:103
1016
+ msgid "How do I add custom metaboxes to my post type?"
1017
+ msgstr ""
1018
+
1019
+ #: ../inc/support.php:105
1020
+ #, php-format
1021
+ msgid ""
1022
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1023
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1024
+ msgstr ""
1025
+
1026
+ #: ../inc/support.php:111
1027
+ msgid ""
1028
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1029
+ msgstr ""
1030
+
1031
+ #: ../inc/support.php:113
1032
+ #, php-format
1033
+ msgid "Check out the %s function for documentation and usage examples."
1034
+ msgstr ""
1035
+
1036
+ #: ../inc/support.php:119
1037
+ #, fuzzy
1038
+ msgid "Post relationships?"
1039
+ msgstr "利用する投稿タイプ"
1040
+
1041
+ #: ../inc/support.php:120
1042
+ #, php-format
1043
+ msgid ""
1044
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1045
+ "plugin that should be a good start."
1046
+ msgstr ""
1047
+
1048
+ #: ../inc/support.php:129
1049
+ msgid ""
1050
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1051
+ msgstr ""
1052
+
1053
+ #: ../inc/support.php:130
1054
+ msgid ""
1055
+ "Change text inside the post/page editor title field. Should be able to adapt "
1056
+ "as necessary."
1057
+ msgstr ""
1058
+
1059
+ #: ../inc/taxonomies.php:80
1060
+ msgid ""
1061
+ "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1062
+ "Changing that value registers a new taxonomy entry for your install."
1063
+ msgstr ""
1064
+
1065
+ #: ../inc/taxonomies.php:102
1066
+ #, fuzzy
1067
+ msgid "Taxonomy Slug"
1068
+ msgstr "分類名"
1069
+
1070
+ #: ../inc/taxonomies.php:103
1071
+ msgid "(e.g. actors)"
1072
+ msgstr ""
1073
+
1074
+ #: ../inc/taxonomies.php:104
1075
+ msgid ""
1076
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1077
+ "and unique"
1078
+ msgstr ""
1079
+
1080
+ #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1081
+ msgid "(e.g. Actors)"
1082
+ msgstr ""
1083
+
1084
+ #: ../inc/taxonomies.php:114
1085
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1086
+ msgstr ""
1087
+
1088
+ #: ../inc/taxonomies.php:121
1089
+ msgid "(e.g. Actor)"
1090
+ msgstr ""
1091
+
1092
+ #: ../inc/taxonomies.php:123
1093
+ msgid ""
1094
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1095
+ msgstr ""
1096
+
1097
+ #: ../inc/taxonomies.php:126
1098
+ msgid "Attach to Post Type"
1099
+ msgstr "利用する投稿タイプ"
1100
+
1101
+ #: ../inc/taxonomies.php:165
1102
+ #, fuzzy
1103
+ msgid "Edit Taxonomy"
1104
+ msgstr "カスタム分類の編集"
1105
+
1106
+ #: ../inc/taxonomies.php:166
1107
+ #, fuzzy
1108
+ msgid "Delete Taxonomy"
1109
+ msgstr "カスタム分類作成"
1110
+
1111
+ #: ../inc/taxonomies.php:168
1112
+ #, fuzzy
1113
+ msgid "Add Taxonomy"
1114
+ msgstr "分類名"
1115
+
1116
+ #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1117
+ #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1118
+ #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1119
+ #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1120
+ #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1121
+ #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1122
+ #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1123
+ #: ../inc/taxonomies.php:314
1124
+ msgid ""
1125
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1126
+ msgstr ""
1127
+
1128
+ #: ../inc/taxonomies.php:195
1129
+ msgid "(e.g. All Actors)"
1130
+ msgstr ""
1131
+
1132
+ #: ../inc/taxonomies.php:204
1133
+ msgid "(e.g. Edit Actor)"
1134
+ msgstr ""
1135
+
1136
+ #: ../inc/taxonomies.php:213
1137
+ msgid "(e.g. View Actor)"
1138
+ msgstr ""
1139
+
1140
+ #: ../inc/taxonomies.php:222
1141
+ msgid "(e.g. Update Actor Name)"
1142
+ msgstr ""
1143
+
1144
+ #: ../inc/taxonomies.php:223
1145
+ #, fuzzy
1146
+ msgid "Update Item Name"
1147
+ msgstr "項目をアップデート"
1148
+
1149
+ #: ../inc/taxonomies.php:231
1150
+ msgid "(e.g. Add New Actor)"
1151
+ msgstr ""
1152
+
1153
+ #: ../inc/taxonomies.php:240
1154
+ msgid "(e.g. New Actor Name)"
1155
+ msgstr ""
1156
+
1157
+ #: ../inc/taxonomies.php:241
1158
+ msgid "New Item Name"
1159
+ msgstr "新規項目名"
1160
+
1161
+ #: ../inc/taxonomies.php:249
1162
+ msgid "(e.g. Parent Actor)"
1163
+ msgstr ""
1164
+
1165
+ #: ../inc/taxonomies.php:250
1166
+ msgid "Parent Item"
1167
+ msgstr "親項目"
1168
+
1169
+ #: ../inc/taxonomies.php:258
1170
+ msgid "(e.g. Parent Actor:)"
1171
+ msgstr ""
1172
+
1173
+ #: ../inc/taxonomies.php:259
1174
+ msgid "Parent Item Colon"
1175
+ msgstr "親項目コロン"
1176
+
1177
+ #: ../inc/taxonomies.php:267
1178
+ msgid "(e.g. Search Actors)"
1179
+ msgstr ""
1180
+
1181
+ #: ../inc/taxonomies.php:268
1182
+ msgid "Search Items"
1183
+ msgstr "項目検索"
1184
+
1185
+ #: ../inc/taxonomies.php:276
1186
+ msgid "(e.g. Popular Actors)"
1187
+ msgstr ""
1188
+
1189
+ #: ../inc/taxonomies.php:277
1190
+ msgid "Popular Items"
1191
+ msgstr "よく利用されている項目"
1192
+
1193
+ #: ../inc/taxonomies.php:285
1194
+ #, fuzzy
1195
+ msgid "(e.g. Separate actors with commas)"
1196
+ msgstr "項目が複数ある場合はコンマで区切ってください。"
1197
+
1198
+ #: ../inc/taxonomies.php:286
1199
+ msgid "Separate Items with Commas"
1200
+ msgstr "項目が複数ある場合はコンマで区切ってください。"
1201
+
1202
+ #: ../inc/taxonomies.php:294
1203
+ #, fuzzy
1204
+ msgid "(e.g. Add or remove actors)"
1205
+ msgstr "項目の追加もしくは削除"
1206
+
1207
+ #: ../inc/taxonomies.php:295
1208
+ msgid "Add or Remove Items"
1209
+ msgstr "項目の追加もしくは削除"
1210
+
1211
+ #: ../inc/taxonomies.php:303
1212
+ #, fuzzy
1213
+ msgid "(e.g. Choose from the most used actors)"
1214
+ msgstr "最もよく使われているものから選択"
1215
+
1216
+ #: ../inc/taxonomies.php:304
1217
+ msgid "Choose From Most Used"
1218
+ msgstr "最もよく使われているものから選択"
1219
+
1220
+ #: ../inc/taxonomies.php:312
1221
+ msgid "(e.g. No actors found)"
1222
+ msgstr ""
1223
+
1224
+ #: ../inc/taxonomies.php:313
1225
+ #, fuzzy
1226
+ msgid "Not found"
1227
+ msgstr "見つかりません"
1228
+
1229
+ #: ../inc/taxonomies.php:336
1230
+ msgid "Whether the taxonomy can have parent-child relationships"
1231
+ msgstr ""
1232
+
1233
+ #: ../inc/taxonomies.php:353
1234
+ msgid "Whether to generate a default UI for managing this custom taxonomy"
1235
+ msgstr ""
1236
+
1237
+ #: ../inc/taxonomies.php:377
1238
+ msgid "(default: none). Query Var needs to be true to use."
1239
+ msgstr ""
1240
+
1241
+ #: ../inc/taxonomies.php:378
1242
+ msgid "Custom Query Var String"
1243
+ msgstr ""
1244
+
1245
+ #: ../inc/taxonomies.php:379
1246
+ #, fuzzy
1247
+ msgid "Custom Query Var Slug"
1248
+ msgstr "カスタムリライトスラッグ"
1249
+
1250
+ #: ../inc/taxonomies.php:395
1251
+ msgid "Triggers the handling of rewrites for this taxonomy"
1252
+ msgstr ""
1253
+
1254
+ #: ../inc/taxonomies.php:403
1255
+ #, fuzzy
1256
+ msgid "(default: taxonomy name)"
1257
+ msgstr "新規項目名"
1258
+
1259
+ #: ../inc/taxonomies.php:405
1260
+ #, fuzzy
1261
+ msgid "Custom Taxonomy Rewrite Slug"
1262
+ msgstr "カスタムリライトスラッグ"
1263
+
1264
+ #: ../inc/taxonomies.php:419
1265
+ msgid "Rewrite With Front"
1266
+ msgstr ""
1267
+
1268
+ #: ../inc/taxonomies.php:420
1269
+ msgid "(default: true)"
1270
+ msgstr ""
1271
+
1272
+ #: ../inc/taxonomies.php:436
1273
+ #, fuzzy
1274
+ msgid "Rewrite Hierarchical"
1275
+ msgstr "階層"
1276
+
1277
+ #: ../inc/taxonomies.php:437
1278
+ msgid "(default: false)"
1279
+ msgstr ""
1280
+
1281
+ #: ../inc/taxonomies.php:438
1282
+ msgid "Should the permastruct allow hierarchical urls."
1283
+ msgstr ""
1284
+
1285
+ #: ../inc/taxonomies.php:453
1286
+ msgid "Show Admin Column"
1287
+ msgstr ""
1288
+
1289
+ #: ../inc/taxonomies.php:455
1290
+ msgid ""
1291
+ "Whether to allow automatic creation of taxonomy columns on associated post-"
1292
+ "types."
1293
+ msgstr ""
1294
+
1295
+ #: ../inc/taxonomies.php:466
1296
+ #, php-format
1297
+ msgid ""
1298
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1299
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1300
+ "letters that do not have accents."
1301
+ msgstr ""
1302
+
1303
+ #: ../inc/taxonomies.php:467
1304
+ #, php-format
1305
+ msgid ""
1306
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1307
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1308
+ "settings will use default values. Labels, if left blank, will be "
1309
+ "automatically created based on the taxonomy name. Hover over the question "
1310
+ "marks for more details."
1311
+ msgstr ""
1312
+
1313
+ #: ../inc/taxonomies.php:468
1314
+ #, fuzzy, php-format
1315
+ msgid ""
1316
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1317
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1318
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1319
+ "terms in the database."
1320
+ msgstr ""
1321
+ "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1322
+ "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1323
+
1324
+ #: ../inc/taxonomies.php:556
1325
+ msgid "Please provide a taxonomy to delete"
1326
+ msgstr ""
1327
+
1328
+ #: ../inc/taxonomies.php:607
1329
+ msgid "Please provide a taxonomy name"
1330
+ msgstr ""
1331
+
1332
+ #: ../inc/taxonomies.php:623
1333
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1334
+ msgstr ""
1335
+
1336
+ #: ../inc/taxonomies.php:629
1337
+ #, php-format
1338
+ msgid "Please choose a different taxonomy name. %s is already used."
1339
+ msgstr ""
1340
 
1341
+ #~ msgid "Plugin version"
1342
+ #~ msgstr "プラグインバージョン"
1343
+
1344
+ #~ msgid "WordPress version"
1345
+ #~ msgstr "WordPress のバージョン"
1346
+
1347
+ #~ msgid "Slightly Outdated Demo Video"
1348
+ #~ msgstr "ちょっと古いデモビデオ"
1349
+
1350
+ #~ msgid "Custom post type deleted successfully"
1351
+ #~ msgstr "カスタム投稿タイプの削除に成功しました。"
1352
+
1353
+ #~ msgid "Action"
1354
+ #~ msgstr "操作"
1355
+
1356
+ #~ msgid "Rewrite Slug"
1357
+ #~ msgstr "Rewrite スラッグ"
1358
+
1359
+ #~ msgid "Total Published"
1360
+ #~ msgstr "公開数"
1361
+
1362
+ #~ msgid "Total Drafts"
1363
+ #~ msgstr "下書き数"
1364
+
1365
+ #~ msgid ""
1366
+ #~ "Place the below code in your themes functions.php file to manually create "
1367
+ #~ "this custom post type"
1368
+ #~ msgstr ""
1369
+ #~ "以下のコードを functions.php ファイルに追記すれば、手動でこのカスタム投稿"
1370
+ #~ "タイプを作成できます。"
1371
+
1372
+ #~ msgid ""
1373
+ #~ "The custom post types below are registered in WordPress but were not "
1374
+ #~ "created by the Custom Post Type UI Plugin."
1375
+ #~ msgstr ""
1376
+ #~ "以下のカスタム投稿タイプは WordPress に登録されていますが Custom Post "
1377
+ #~ "Type UI で作成されてものではありません。"
1378
+
1379
+ #~ msgid "Custom taxonomy deleted successfully"
1380
+ #~ msgstr "カスタム分類を削除しました。"
1381
+
1382
+ #~ msgid ""
1383
+ #~ "Place the below code in your themes functions.php file to manually create "
1384
+ #~ "this custom taxonomy"
1385
+ #~ msgstr ""
1386
+ #~ "以下のコードを functions.php ファイルに追記すれば、手動でこのカスタム分類"
1387
+ #~ "を作成できます。"
1388
+
1389
+ #~ msgid ""
1390
+ #~ "Custom post type created successfully. You may need to refresh to view "
1391
+ #~ "the new post type."
1392
+ #~ msgstr ""
1393
+ #~ "カスタム投稿タイプを作成しました。新しい投稿タイプを表示するには画面を再読"
1394
+ #~ "み込みする必要があるかもしれません。"
1395
+
1396
+ #~ msgid ""
1397
+ #~ "Custom taxonomy created successfully. You may need to refresh to view "
1398
+ #~ "the new taxonomy."
1399
+ #~ msgstr ""
1400
+ #~ "カスタム分類を作成しました。新しい分類を表示するには画面を再読み込みする必"
1401
+ #~ "要があるかもしれません。"
1402
+
1403
+ #~ msgid "Post type name is a required field."
1404
+ #~ msgstr "投稿タイプ名は必須項目です。"
1405
+
1406
+ #~ msgid "Taxonomy name is a required field."
1407
+ #~ msgstr "分類名は必須です。"
1408
+
1409
+ #~ msgid "You must assign your custom taxonomy to at least one post type."
1410
+ #~ msgstr ""
1411
+ #~ "カスタム分類は最低ひとつのカスタム投稿タイプに割り当てる必要があります。"
1412
+
1413
+ #~ msgid "Reset"
1414
+ #~ msgstr "リセット"
1415
+
1416
+ #~ msgid "Create New Custom Post Type"
1417
+ #~ msgstr "カスタム投稿タイプの作成"
1418
+
1419
+ #~ msgid ""
1420
+ #~ "If you are unfamiliar with the options below only fill out the "
1421
+ #~ "<strong>Post Type Name</strong> and <strong>Label</strong> fields and "
1422
+ #~ "check which meta boxes to support. The other settings are set to the "
1423
+ #~ "most common defaults for custom post types."
1424
+ #~ msgstr ""
1425
+ #~ "以下のオプションについてよく分からなければ、<strong>投稿タイプ名</strong>"
1426
+ #~ "と<strong>ラベル</strong>の欄だけ入力し、サポートするメタボックスをチェッ"
1427
+ #~ "クしてください。他の設定はカスタム投稿タイプにもっとも一般的な初期設定値が"
1428
+ #~ "設定されます。"
1429
+
1430
+ #~ msgid "View Advanced Label Options"
1431
+ #~ msgstr "詳細ラベル設定を表示する"
1432
+
1433
+ #~ msgid "View Advanced Options"
1434
+ #~ msgstr "詳細設定を表示する"
1435
+
1436
+ #~ msgid ""
1437
+ #~ "Below are the advanced label options for custom post types. If you are "
1438
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
1439
+ #~ "based off of your custom post type name"
1440
+ #~ msgstr ""
1441
+ #~ "以下はカスタム投稿タイプの詳細ラベルオプションです。こうしたラベルについて"
1442
+ #~ "よく分からなければ、入力したカスタム投稿タイプ名をもとに自動的にラベルを作"
1443
+ #~ "成します。"
1444
+
1445
+ #~ msgid ""
1446
+ #~ "If you are unfamiliar with the options below only fill out the "
1447
+ #~ "<strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> "
1448
+ #~ "fields. The other settings are set to the most common defaults for "
1449
+ #~ "custom taxonomies."
1450
+ #~ msgstr ""
1451
+ #~ "以下のオプションについてよく分からなければ、<strong>分類名</strong>と"
1452
+ #~ "<strong>投稿タイプ名</strong>の欄だけ入力してください。他の設定はカスタム"
1453
+ #~ "分類にもっとも一般的な初期設定値が設定されます。"
1454
+
1455
+ #~ msgid ""
1456
+ #~ "Below are the advanced label options for custom taxonomies. If you are "
1457
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
1458
+ #~ "based off of your custom taxonomy name"
1459
+ #~ msgstr ""
1460
+ #~ "以下はカスタム分類の詳細ラベルオプションです。こうしたラベルについてよく分"
1461
+ #~ "からなければ、入力したカスタム分類名をもとに自動的にラベルを作成します。"
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,681 +1,696 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2013-09-08 19:13-0600\n"
5
- "PO-Revision-Date: 2014-10-11 15:06+0200\n"
6
- "Last-Translator: TrStar <trstar@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.9\n"
12
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
13
  "esc_html__;esc_html_e;esc_html_x\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
- "Language: tr_TR\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../custom-post-type-ui.php:52
20
  msgid "Custom Post Types"
21
  msgstr "Özel Yazı Türleri"
22
 
23
- #: ../custom-post-type-ui.php:52
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
- #: ../custom-post-type-ui.php:55 ../custom-post-type-ui.php:1214
28
- msgid "Add New"
29
- msgstr "Yeni Ekle"
30
-
31
- #: ../custom-post-type-ui.php:56
32
- msgid "Manage Post Types"
33
- msgstr "Yazı Türlerini Yönet"
34
-
35
- #: ../custom-post-type-ui.php:57
36
- msgid "Manage Taxonomies"
37
- msgstr "Sınıflandırmaları Yönet"
38
-
39
- #: ../custom-post-type-ui.php:505 ../custom-post-type-ui.php:1673
40
  msgid "Custom Post Type UI"
41
  msgstr "Özel Yazı Türleri KA"
42
 
43
- #: ../custom-post-type-ui.php:505 ../custom-post-type-ui.php:1673
44
- msgid "version"
45
- msgstr "versiyon"
46
-
47
- #: ../custom-post-type-ui.php:507
48
- msgid "Frequently Asked Questions"
49
- msgstr "Sıkça sorulan sorular"
50
-
51
- #: ../custom-post-type-ui.php:508
52
  msgid ""
53
- "Please note that this plugin will NOT handle display of registered post "
54
- "types or taxonomies in your current theme. It will simply register them for "
55
- "you."
56
  msgstr ""
57
- "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
58
- "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
59
 
60
- #: ../custom-post-type-ui.php:509
 
61
  msgid ""
62
- "Q: <strong>How can I display content from a custom post type on my website?</"
63
- "strong>"
 
 
64
  msgstr ""
65
- "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
66
- "strong>"
67
-
68
- #: ../custom-post-type-ui.php:511
69
- msgid "A: Justin Tadlock has written some great posts on the topic:"
70
- msgstr "C: Justin Tadlock konu hakkında bazı makaleler hazırlamıştır:"
71
 
72
- #: ../custom-post-type-ui.php:512
73
- msgid "Showing Custom Post Types on your Home Page"
74
- msgstr "Ana Sayfada Özel Yazı Türleri gösteriliyor"
75
-
76
- #: ../custom-post-type-ui.php:513
77
- msgid "Custom Post Types in WordPress"
78
- msgstr "WordPress Özel Yazı Türleri"
79
-
80
- #: ../custom-post-type-ui.php:515
81
- msgid ""
82
- "Q: <strong>How can I add custom meta boxes to my custom post types?</strong>"
83
- msgstr ""
84
- "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
85
- "ekleyebilirsiniz?</strong>"
86
 
87
- #: ../custom-post-type-ui.php:516
88
- msgid ""
89
- "A: The More Fields plugin does a great job at creating custom meta boxes and "
90
- "fully supports custom post types: "
91
- msgstr ""
92
- "A: Alanlar eklentisi özel meta kutuları oluşturarak iş yapar ve tamamen "
93
- "bütün oluşturulan türleri destekler:"
94
 
95
- #: ../custom-post-type-ui.php:517
96
- msgid ""
97
- "Q: <strong>I changed my custom post type name and now I can't get to my "
98
- "posts</strong>"
99
- msgstr ""
100
- "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
101
- "gösterilmiyor</strong>"
102
 
103
- #: ../custom-post-type-ui.php:518
104
- msgid ""
105
- "A: You can either change the custom post type name back to the original name "
106
- "or try the Post Type Switcher plugin: "
107
  msgstr ""
108
- "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
109
- "deneyebilirsiniz:"
110
 
111
- #: ../custom-post-type-ui.php:523
112
  msgid "Help Support This Plugin!"
113
  msgstr "Eklentiye Destek, Yardım!"
114
 
115
- #: ../custom-post-type-ui.php:526
116
- msgid "PayPal Donation"
117
- msgstr "PayPal Bağış"
118
-
119
- #: ../custom-post-type-ui.php:527
120
- msgid "Professional WordPress<br />Second Edition"
121
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
122
 
123
- #: ../custom-post-type-ui.php:528
124
- msgid "Professional WordPress<br />Plugin Development"
125
- msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
126
-
127
- #: ../custom-post-type-ui.php:532
128
- msgid "Please donate to the development<br />of Custom Post Type UI:"
129
- msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
130
-
131
- #: ../custom-post-type-ui.php:541
132
  msgid ""
133
- "The leading book on WordPress design and development!<br /><strong>Brand new "
134
- "second edition!"
135
  msgstr ""
136
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
137
  "sürüm !"
138
 
139
- #: ../custom-post-type-ui.php:542
 
 
 
 
140
  msgid "Highest rated WordPress development book on Amazon!"
141
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
142
 
143
- #: ../custom-post-type-ui.php:545
144
- msgid "WebDevStudios.com Recent News"
145
- msgstr "WebDevStudios.com Son Haberler"
146
-
147
- #: ../custom-post-type-ui.php:550
148
- msgid "WebDevStudios.com News"
149
- msgstr "WebDevStudios.com Haberler"
150
-
151
- #: ../custom-post-type-ui.php:576
152
- msgid "Custom post type deleted successfully"
153
- msgstr "Özel Yazı Türü başarıyla silindi"
154
 
155
- #: ../custom-post-type-ui.php:582
156
- msgid "Manage Custom Post Types"
157
- msgstr "Özel Yazı Türlerini Yönet"
 
158
 
159
- #: ../custom-post-type-ui.php:583
160
- msgid ""
161
- "Deleting custom post types will <strong>NOT</strong> delete any content into "
162
- "the database or added to those post types. You can easily recreate your "
163
- "post types and the content will still exist."
164
  msgstr ""
165
- "Özel yazı türlerini silmek veritabanında herhangi bir içeriği silmek veya bu "
166
- "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
167
- "veritabanında olacaktır."
168
 
169
- #: ../custom-post-type-ui.php:592 ../custom-post-type-ui.php:607
170
- #: ../custom-post-type-ui.php:882 ../custom-post-type-ui.php:895
171
- msgid "Action"
172
- msgstr "Eylem"
173
-
174
- #: ../custom-post-type-ui.php:593 ../custom-post-type-ui.php:608
175
- #: ../custom-post-type-ui.php:798 ../custom-post-type-ui.php:810
176
- #: ../custom-post-type-ui.php:883 ../custom-post-type-ui.php:896
177
- msgid "Name"
178
- msgstr "İsim"
179
-
180
- #: ../custom-post-type-ui.php:594 ../custom-post-type-ui.php:609
181
- #: ../custom-post-type-ui.php:799 ../custom-post-type-ui.php:811
182
- #: ../custom-post-type-ui.php:884 ../custom-post-type-ui.php:897
183
- #: ../custom-post-type-ui.php:1177 ../custom-post-type-ui.php:1469
184
- msgid "Label"
185
- msgstr "Etiket"
186
 
187
- #: ../custom-post-type-ui.php:595 ../custom-post-type-ui.php:610
188
- #: ../custom-post-type-ui.php:800 ../custom-post-type-ui.php:812
189
- #: ../custom-post-type-ui.php:1285
190
- msgid "Public"
191
- msgstr "Genel"
192
 
193
- #: ../custom-post-type-ui.php:596 ../custom-post-type-ui.php:611
194
- #: ../custom-post-type-ui.php:801 ../custom-post-type-ui.php:813
195
- #: ../custom-post-type-ui.php:888 ../custom-post-type-ui.php:901
196
- #: ../custom-post-type-ui.php:1295 ../custom-post-type-ui.php:1603
197
- msgid "Show UI"
198
- msgstr "KA Göster"
199
 
200
- #: ../custom-post-type-ui.php:597 ../custom-post-type-ui.php:612
201
- #: ../custom-post-type-ui.php:802 ../custom-post-type-ui.php:814
202
- #: ../custom-post-type-ui.php:887 ../custom-post-type-ui.php:900
203
- #: ../custom-post-type-ui.php:1330 ../custom-post-type-ui.php:1593
204
- msgid "Hierarchical"
205
- msgstr "Hiyerarşik"
206
 
207
- #: ../custom-post-type-ui.php:598 ../custom-post-type-ui.php:613
208
- #: ../custom-post-type-ui.php:803 ../custom-post-type-ui.php:815
209
- #: ../custom-post-type-ui.php:889 ../custom-post-type-ui.php:902
210
- #: ../custom-post-type-ui.php:1340 ../custom-post-type-ui.php:1623
211
- msgid "Rewrite"
212
- msgstr "Rewrite"
213
 
214
- #: ../custom-post-type-ui.php:599 ../custom-post-type-ui.php:614
215
- #: ../custom-post-type-ui.php:804 ../custom-post-type-ui.php:816
216
- #: ../custom-post-type-ui.php:890 ../custom-post-type-ui.php:903
217
- msgid "Rewrite Slug"
218
- msgstr "Rewrite Slug"
219
 
220
- #: ../custom-post-type-ui.php:600 ../custom-post-type-ui.php:615
221
- msgid "Total Published"
222
- msgstr "Yayınlanan Toplamı"
223
 
224
- #: ../custom-post-type-ui.php:601 ../custom-post-type-ui.php:616
225
- msgid "Total Drafts"
226
- msgstr "Taslaklar Toplamı"
 
227
 
228
- #: ../custom-post-type-ui.php:602 ../custom-post-type-ui.php:617
229
- #: ../custom-post-type-ui.php:1401
230
- msgid "Supports"
231
- msgstr "Destekler"
232
 
233
- #: ../custom-post-type-ui.php:636 ../custom-post-type-ui.php:919
234
- msgid "Delete"
235
- msgstr "Sil"
 
236
 
237
- #: ../custom-post-type-ui.php:636 ../custom-post-type-ui.php:919
238
- #: ../custom-post-type-ui.php:1226
239
- msgid "Edit"
240
- msgstr "Düzenle"
241
 
242
- #: ../custom-post-type-ui.php:636 ../custom-post-type-ui.php:919
243
  msgid "Get Code"
244
  msgstr "Kodu Alın"
245
 
246
- #: ../custom-post-type-ui.php:766
247
- msgid ""
248
- "Place the below code in your themes functions.php file to manually create "
249
- "this custom post type."
250
  msgstr ""
251
- "El ile bu özel yazı alanı oluşturmak için functions.php dosyasına aşağıdaki "
252
- "kodu yerleştirin."
253
 
254
- #: ../custom-post-type-ui.php:767
255
- msgid ""
256
- "This is a <strong>BETA</strong> feature. Please <a href=\"https://github.com/"
257
- "WebDevStudios/custom-post-type-ui\">report bugs</a>."
258
  msgstr ""
259
- "Bu<strong> BETA</strong> özelliğidir. Lütfen <a href=\"https://github.com/"
260
- "WebDevStudios/custom-post tipi-ui\"> hata raporu </a>"
261
-
262
- #: ../custom-post-type-ui.php:788
263
- msgid "Additional Custom Post Types"
264
- msgstr "Ek Özel Yazı Türleri"
265
 
266
- #: ../custom-post-type-ui.php:789
267
- msgid ""
268
- "The custom post types below are registered in WordPress but were not created "
269
- "by the Custom Post Type UI Plugin."
270
  msgstr ""
271
- "Özel yazı türleri kayıtlı ancak, Özel Post Tür KA Eklentisi tarafından "
272
- "oluşturulmamış."
273
 
274
- #: ../custom-post-type-ui.php:805 ../custom-post-type-ui.php:817
275
- #: ../custom-post-type-ui.php:1365 ../custom-post-type-ui.php:1613
276
- msgid "Query Var"
277
- msgstr "Sorgu Tanımı"
278
 
279
- #: ../custom-post-type-ui.php:842
280
- msgid "No additional post types found"
281
- msgstr "Hiçbir ek yazı türleri bulunamadı"
 
282
 
283
- #: ../custom-post-type-ui.php:866
284
- msgid "Custom taxonomy deleted successfully"
285
- msgstr "Özel sınıflandırma başarıyla silindi"
 
286
 
287
- #: ../custom-post-type-ui.php:872
288
- msgid "Manage Custom Taxonomies"
289
- msgstr "Özel Sınıflandırmayı Yönet"
 
290
 
291
- #: ../custom-post-type-ui.php:873
292
- msgid ""
293
- "Deleting custom taxonomies does <strong>NOT</strong> delete any content "
294
- "added to those taxonomies. You can easily recreate your taxonomies and the "
295
- "content will still exist."
296
  msgstr ""
297
- "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
298
- "içerikleri kalacaktır."
299
 
300
- #: ../custom-post-type-ui.php:885 ../custom-post-type-ui.php:898
301
- #: ../custom-post-type-ui.php:1182 ../custom-post-type-ui.php:1474
302
- msgid "Singular Label"
303
- msgstr "Tekil Etiket"
304
 
305
- #: ../custom-post-type-ui.php:886 ../custom-post-type-ui.php:899
306
- msgid "Attached Post Types"
307
- msgstr "Ek Yazı Türleri"
 
308
 
309
- #: ../custom-post-type-ui.php:1000
310
  msgid ""
311
- "Place the below code in your themes functions.php file to manually create "
312
- "this custom taxonomy"
 
 
313
  msgstr ""
314
- "El ile bu özel sınıflandırma oluşturmak için functions.php dosyasına "
315
- "aşağıdaki kodu yerleştirin"
316
 
317
- #: ../custom-post-type-ui.php:1001
318
- msgid ""
319
- "This is a <strong>BETA</strong> feature. Please <a href=\"http://"
320
- "webdevstudios.com/support/forum/custom-post-type-ui/\">report bugs</a>."
321
  msgstr ""
322
- "Bu<strong> BETA</strong> özelliğidir. Lütfen <a href=\"http://webdevstudios."
323
- "com/support/forum/custom-post-type-ui/\"> hata raporu </a>"
324
 
325
- #: ../custom-post-type-ui.php:1057
326
- msgid "Save Custom Post Type"
327
- msgstr "Özel Yazı Türü Kaydet"
328
 
329
- #: ../custom-post-type-ui.php:1059
330
- msgid "Create Custom Post Type"
331
- msgstr "Özel Yazı Türü Oluştur"
 
332
 
333
- #: ../custom-post-type-ui.php:1085
334
- msgid "Save Custom Taxonomy"
335
- msgstr "Özel Sınıflandırma Kaydet"
336
 
337
- #: ../custom-post-type-ui.php:1087
338
- msgid "Create Custom Taxonomy"
339
- msgstr "Özel Sınıflandırma Oluştur"
 
 
 
 
340
 
341
- #: ../custom-post-type-ui.php:1104
342
  msgid ""
343
- "Custom post type created successfully. You may need to refresh to view the "
344
- "new post type in the admin menu."
 
 
 
 
345
  msgstr ""
346
- "Özel yazı türü başarıyla oluşturuldu. Yönetici menüsünde okunmamış yazı "
347
- "türünü görüntülemek için sayfayı yenilemeniz gerekebilir."
348
 
349
- #: ../custom-post-type-ui.php:1105
350
- msgid "Manage custom post types"
351
- msgstr "Özel yazı türlerini yönetin"
 
 
 
 
 
352
 
353
- #: ../custom-post-type-ui.php:1107
354
  msgid ""
355
- "Custom taxonomy created successfully. You may need to refresh to view the "
356
- "new taxonomy in the admin menu."
357
  msgstr ""
358
- "Özel sınıflandırma başarıyla oluşturuldu. Yönetici menüsünde yeni "
359
- "sınıflandırmayı görüntülemek için sayfayı yenilemeniz gerekebilir."
360
 
361
- #: ../custom-post-type-ui.php:1108
362
- msgid "Manage custom taxonomies"
363
- msgstr "Özel sınıflandırmaları yönet"
 
 
 
364
 
365
- #: ../custom-post-type-ui.php:1116
366
- msgid "Post type name is a required field."
367
- msgstr "Yazı türü adı doldurulması zorunlu bir alandır."
 
368
 
369
- #: ../custom-post-type-ui.php:1119
370
- msgid "Taxonomy name is a required field."
371
- msgstr "Sınıflandırma adı doldurulması zorunlu bir alandır."
 
 
372
 
373
- #: ../custom-post-type-ui.php:1122
374
- msgid "You must assign your custom taxonomy to at least one post type."
375
- msgstr "En az bir yazı türüne özel sınıflandırma atamanız gerekir."
 
376
 
377
- #: ../custom-post-type-ui.php:1125
378
- msgid "Please doe not use quotes in your post type slug or rewrite slug."
379
  msgstr ""
380
- "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
381
 
382
- #: ../custom-post-type-ui.php:1128
383
- msgid "Please doe not use quotes in your taxonomy slug or rewrite slug."
 
 
 
384
  msgstr ""
385
- "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
386
- "kullanmayınız."
387
 
388
- #: ../custom-post-type-ui.php:1139
389
- msgid "Edit Custom Post Type or Taxonomy"
 
390
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
391
 
392
- #: ../custom-post-type-ui.php:1141 ../custom-post-type-ui.php:1148
393
- msgid "Reset"
394
- msgstr "Sıfırla"
 
 
 
 
 
395
 
396
- #: ../custom-post-type-ui.php:1146
397
- msgid "Create New Custom Post Type or Taxonomy"
398
- msgstr "Yeni Özel Yazı Türü veya Sınıflandırma Oluştur"
 
399
 
400
- #: ../custom-post-type-ui.php:1158
401
- msgid ""
402
- "If you are unfamiliar with the options below only fill out the <strong>Post "
403
- "Type Name</strong> and <strong>Label</strong> fields and check which meta "
404
- "boxes to support. The other settings are set to the most common defaults "
405
- "for custom post types. Hover over the question mark for more details."
406
  msgstr ""
407
- "Sadece Adı ve Etiket alanlarını doldurun kullanıyorsanız diğer kutuları da "
408
- "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
409
- "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
410
 
411
- #: ../custom-post-type-ui.php:1169
412
- msgid "Post Type Name"
413
- msgstr "Yazı Türü Adı"
 
 
 
 
 
414
 
415
- #: ../custom-post-type-ui.php:1169
416
  msgid ""
417
- "The post type name. Used to retrieve custom post type content. Should be "
418
- "short and sweet"
419
  msgstr ""
420
- "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
421
- "kullanılacaktır."
422
 
423
- #: ../custom-post-type-ui.php:1170
 
 
 
 
 
 
 
 
 
424
  msgid "(e.g. movie)"
425
  msgstr "(örnek: film)"
426
 
427
- #: ../custom-post-type-ui.php:1172
 
428
  msgid ""
429
- "Max 20 characters, can not contain capital letters or spaces. Reserved post "
430
- "types: post, page, attachment, revision, nav_menu_item."
431
  msgstr ""
432
- "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
433
- "post, sayfa, ek, revizyon, nav_menu_item."
 
 
 
 
 
 
 
 
 
434
 
435
- #: ../custom-post-type-ui.php:1177 ../custom-post-type-ui.php:1214
436
- #: ../custom-post-type-ui.php:1220 ../custom-post-type-ui.php:1226
437
- #: ../custom-post-type-ui.php:1232 ../custom-post-type-ui.php:1238
438
- #: ../custom-post-type-ui.php:1244 ../custom-post-type-ui.php:1250
439
- #: ../custom-post-type-ui.php:1256 ../custom-post-type-ui.php:1262
440
- #: ../custom-post-type-ui.php:1268 ../custom-post-type-ui.php:1274
441
- msgid "Post type label. Used in the admin menu for displaying post types."
 
 
442
  msgstr ""
443
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
444
  "kullanılacak."
445
 
446
- #: ../custom-post-type-ui.php:1178
447
- msgid "(e.g. Movies)"
448
- msgstr "(örneğin: Filmler)"
 
 
 
 
449
 
450
- #: ../custom-post-type-ui.php:1182
 
451
  msgid ""
452
- "Custom Post Type Singular label. Used in WordPress when a singular label is "
453
  "needed."
454
  msgstr ""
455
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
456
  "kullanacak."
457
 
458
- #: ../custom-post-type-ui.php:1183
459
- msgid "(e.g. Movie)"
460
- msgstr "(örneğin: Film)"
461
-
462
- #: ../custom-post-type-ui.php:1188
463
  msgid "Description"
464
  msgstr "Açıklama"
465
 
466
- #: ../custom-post-type-ui.php:1188
 
467
  msgid ""
468
- "Custom Post Type Description. Describe what your custom post type is used "
469
  "for."
470
  msgstr ""
471
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
472
 
473
- #: ../custom-post-type-ui.php:1195 ../custom-post-type-ui.php:1505
474
- msgid "Advanced Label Options"
475
- msgstr "Gelişmiş Etiket Ayarları"
 
476
 
477
- #: ../custom-post-type-ui.php:1196 ../custom-post-type-ui.php:1506
478
- msgid "Advanced Options"
479
- msgstr "Gelişmiş Ayarlar"
 
480
 
481
- #: ../custom-post-type-ui.php:1204
482
- msgid ""
483
- "Below are the advanced label options for custom post types. If you are "
484
- "unfamiliar with these labels, leave them blank and the plugin will "
485
- "automatically create labels based off of your custom post type name"
 
 
 
 
 
 
 
 
486
  msgstr ""
487
- "Aşağıda özel yazı türleri için gelişmiş etiket seçenekleri vardır. Eğer "
488
- "bunlara kullanmayı bilmiyorsanız boş bırakın. Eklenti sizin için otomatik "
489
- "olarak özel yazı türü adının varsayılan ayarlarıyla oluşturulacak."
490
 
491
- #: ../custom-post-type-ui.php:1208
 
 
 
 
 
492
  msgid "Menu Name"
493
  msgstr "Menü Adı"
494
 
495
- #: ../custom-post-type-ui.php:1208
496
  msgid "Custom menu name for your custom post type."
497
  msgstr "Özel yazı türü için özel menü adı."
498
 
499
- #: ../custom-post-type-ui.php:1210
500
  msgid "(e.g. My Movies)"
501
  msgstr "(örneğin: Benim Filmlerim)"
502
 
503
- #: ../custom-post-type-ui.php:1216
 
 
 
 
 
 
 
 
 
504
  msgid "(e.g. Add New)"
505
  msgstr "(örneğin: Yeni Ekle)"
506
 
507
- #: ../custom-post-type-ui.php:1220 ../custom-post-type-ui.php:1559
508
  msgid "Add New Item"
509
  msgstr "Yeni Eleman Ekle"
510
 
511
- #: ../custom-post-type-ui.php:1222
512
  msgid "(e.g. Add New Movie)"
513
  msgstr "(örneğin: Yeni Film ekle)"
514
 
515
- #: ../custom-post-type-ui.php:1228
 
 
 
 
516
  msgid "(e.g. Edit)"
517
  msgstr "(örneğin: Düzenle)"
518
 
519
- #: ../custom-post-type-ui.php:1232 ../custom-post-type-ui.php:1547
520
  msgid "Edit Item"
521
  msgstr "Eleman Düzenle"
522
 
523
- #: ../custom-post-type-ui.php:1234
524
  msgid "(e.g. Edit Movie)"
525
  msgstr "(örneğin: Film Düzenle)"
526
 
527
- #: ../custom-post-type-ui.php:1238
528
  msgid "New Item"
529
  msgstr "Yeni Eleman"
530
 
531
- #: ../custom-post-type-ui.php:1240
532
  msgid "(e.g. New Movie)"
533
  msgstr "(örneğin: Yeni Film)"
534
 
535
- #: ../custom-post-type-ui.php:1244
536
  msgid "View"
537
  msgstr "Göster"
538
 
539
- #: ../custom-post-type-ui.php:1246 ../custom-post-type-ui.php:1252
540
- msgid "(e.g. View Movie)"
 
541
  msgstr "(örneğin: Film Göster)"
542
 
543
- #: ../custom-post-type-ui.php:1250
544
  msgid "View Item"
545
  msgstr "Elemanı Göster"
546
 
547
- #: ../custom-post-type-ui.php:1256 ../custom-post-type-ui.php:1517
548
- msgid "Search Items"
 
 
 
 
 
549
  msgstr "Eleman Ara"
550
 
551
- #: ../custom-post-type-ui.php:1258
552
- msgid "(e.g. Search Movies)"
 
553
  msgstr "(örneğin: Filmleri Ara)"
554
 
555
- #: ../custom-post-type-ui.php:1262
556
  msgid "Not Found"
557
  msgstr "Bulunamadı"
558
 
559
- #: ../custom-post-type-ui.php:1264
560
- msgid "(e.g. No Movies Found)"
561
- msgstr "(örneğin: Filmler bulunamadı)"
 
562
 
563
- #: ../custom-post-type-ui.php:1268
564
  msgid "Not Found in Trash"
565
  msgstr "Çöpte Bulunamadı"
566
 
567
- #: ../custom-post-type-ui.php:1270
568
  msgid "(e.g. No Movies found in Trash)"
569
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
570
 
571
- #: ../custom-post-type-ui.php:1274
572
  msgid "Parent"
573
  msgstr "Temel"
574
 
575
- #: ../custom-post-type-ui.php:1276
576
  msgid "(e.g. Parent Movie)"
577
  msgstr "(örneğin: Temel Film)"
578
 
579
- #: ../custom-post-type-ui.php:1285
580
- msgid "Whether posts of this type should be shown in the admin UI"
581
- msgstr ""
582
- "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
583
-
584
- #: ../custom-post-type-ui.php:1288 ../custom-post-type-ui.php:1298
585
- #: ../custom-post-type-ui.php:1308 ../custom-post-type-ui.php:1318
586
- #: ../custom-post-type-ui.php:1333 ../custom-post-type-ui.php:1343
587
- #: ../custom-post-type-ui.php:1358 ../custom-post-type-ui.php:1368
588
- #: ../custom-post-type-ui.php:1387 ../custom-post-type-ui.php:1606
589
- #: ../custom-post-type-ui.php:1616 ../custom-post-type-ui.php:1626
590
- #: ../custom-post-type-ui.php:1643 ../custom-post-type-ui.php:1646
591
  msgid "False"
592
  msgstr "False"
593
 
594
- #: ../custom-post-type-ui.php:1289 ../custom-post-type-ui.php:1299
595
- #: ../custom-post-type-ui.php:1309 ../custom-post-type-ui.php:1319
596
- #: ../custom-post-type-ui.php:1334 ../custom-post-type-ui.php:1344
597
- #: ../custom-post-type-ui.php:1359 ../custom-post-type-ui.php:1369
598
- #: ../custom-post-type-ui.php:1388 ../custom-post-type-ui.php:1607
599
- #: ../custom-post-type-ui.php:1617 ../custom-post-type-ui.php:1627
600
- #: ../custom-post-type-ui.php:1644 ../custom-post-type-ui.php:1647
 
 
 
 
 
601
  msgid "True"
602
  msgstr "True"
603
 
604
- #: ../custom-post-type-ui.php:1290 ../custom-post-type-ui.php:1300
605
- #: ../custom-post-type-ui.php:1345 ../custom-post-type-ui.php:1360
606
- #: ../custom-post-type-ui.php:1370 ../custom-post-type-ui.php:1608
607
- #: ../custom-post-type-ui.php:1618 ../custom-post-type-ui.php:1628
 
 
 
 
 
 
 
 
 
 
 
608
  msgid "(default: True)"
609
  msgstr "(varsayılan: Doğru)"
610
 
611
- #: ../custom-post-type-ui.php:1295
 
 
 
 
 
 
 
 
 
 
 
 
612
  msgid "Whether to generate a default UI for managing this post type"
613
  msgstr ""
614
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
615
 
616
- #: ../custom-post-type-ui.php:1305
617
  msgid "Has Archive"
618
  msgstr "Arşivlenebilir mi?"
619
 
620
- #: ../custom-post-type-ui.php:1305
621
- msgid "Whether the post type will have a post type archive page"
622
- msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
623
-
624
- #: ../custom-post-type-ui.php:1310 ../custom-post-type-ui.php:1320
625
- #: ../custom-post-type-ui.php:1335 ../custom-post-type-ui.php:1598
626
- #: ../custom-post-type-ui.php:1649
627
  msgid "(default: False)"
628
  msgstr "(varsayılan:Yanlış)"
629
 
630
- #: ../custom-post-type-ui.php:1315
 
 
 
 
631
  msgid "Exclude From Search"
632
  msgstr "Arama Dışında Bırak"
633
 
634
- #: ../custom-post-type-ui.php:1315
635
  msgid "Whether the post type will be searchable"
636
  msgstr "Yazı türünün aranabilir olup olmadığı"
637
 
638
- #: ../custom-post-type-ui.php:1325
639
  msgid "Capability Type"
640
  msgstr "Yetenek Türü"
641
 
642
- #: ../custom-post-type-ui.php:1325
643
  msgid "The post type to use for checking read, edit, and delete capabilities"
644
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
645
 
646
- #: ../custom-post-type-ui.php:1330
 
 
 
 
647
  msgid "Whether the post type can have parent-child relationships"
648
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
649
 
650
- #: ../custom-post-type-ui.php:1340
 
 
 
 
651
  msgid "Triggers the handling of rewrites for this post type"
652
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
653
 
654
- #: ../custom-post-type-ui.php:1350 ../custom-post-type-ui.php:1633
655
  msgid "Custom Rewrite Slug"
656
  msgstr "Özel Rewrite Slug"
657
 
658
- #: ../custom-post-type-ui.php:1350
659
- msgid "Custom slug to use instead of the default."
660
- msgstr "Özel slug yerine varsayılan kullanmak için."
661
-
662
- #: ../custom-post-type-ui.php:1351
663
  msgid "(default: post type name)"
664
  msgstr "(varsayılan: yazı türü adı)"
665
 
666
- #: ../custom-post-type-ui.php:1355
 
 
 
 
667
  msgid "With Front"
668
  msgstr "Cephesinden"
669
 
670
- #: ../custom-post-type-ui.php:1355
 
671
  msgid "Should the permastruct be prepended with the front base."
672
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
673
 
674
- #: ../custom-post-type-ui.php:1375
 
 
 
 
675
  msgid "Menu Position"
676
  msgstr "Menü Pozisyonu"
677
 
678
- #: ../custom-post-type-ui.php:1375
679
  msgid ""
680
  "The position in the menu order the post type should appear. show_in_menu "
681
  "must be true."
@@ -683,7 +698,7 @@ msgstr ""
683
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
684
  "gerekir."
685
 
686
- #: ../custom-post-type-ui.php:1376
687
  msgid ""
688
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
689
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -693,17 +708,16 @@ msgstr ""
693
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
694
  "bölümü\". Aralık 5 ile 100"
695
 
696
- #: ../custom-post-type-ui.php:1382
 
 
 
 
 
697
  msgid "Show in Menu"
698
  msgstr "Menüde Göster"
699
 
700
- #: ../custom-post-type-ui.php:1382
701
- msgid ""
702
- "Whether to show the post type in the admin menu and where to show that menu. "
703
- "Note that show_ui must be true"
704
- msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
705
-
706
- #: ../custom-post-type-ui.php:1383
707
  msgid ""
708
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
709
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -712,86 +726,110 @@ msgstr ""
712
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
713
  "olacaktır."
714
 
715
- #: ../custom-post-type-ui.php:1395
716
- msgid "Menu Icon"
717
- msgstr "Menü Simgesi"
 
 
 
 
 
 
 
718
 
719
- #: ../custom-post-type-ui.php:1395
720
  msgid "URL to image to be used as menu icon."
721
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
722
 
723
- #: ../custom-post-type-ui.php:1403
724
- msgid "Title"
725
- msgstr "Başlık"
726
 
727
- #: ../custom-post-type-ui.php:1403
728
- msgid "Adds the title meta box when creating content for this custom post type"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
730
 
731
- #: ../custom-post-type-ui.php:1404
732
  msgid "Editor"
733
  msgstr "Editör"
734
 
735
- #: ../custom-post-type-ui.php:1404
736
  msgid ""
737
  "Adds the content editor meta box when creating content for this custom post "
738
  "type"
739
  msgstr ""
740
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
741
 
742
- #: ../custom-post-type-ui.php:1405
743
  msgid "Excerpt"
744
  msgstr "Alıntı"
745
 
746
- #: ../custom-post-type-ui.php:1405
747
  msgid ""
748
  "Adds the excerpt meta box when creating content for this custom post type"
749
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
750
 
751
- #: ../custom-post-type-ui.php:1406
752
  msgid "Trackbacks"
753
  msgstr "Parçagönderimi"
754
 
755
- #: ../custom-post-type-ui.php:1406
756
  msgid ""
757
  "Adds the trackbacks meta box when creating content for this custom post type"
758
  msgstr ""
759
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
760
 
761
- #: ../custom-post-type-ui.php:1407
762
  msgid "Custom Fields"
763
  msgstr "Özel Alanlar"
764
 
765
- #: ../custom-post-type-ui.php:1407
766
  msgid ""
767
  "Adds the custom fields meta box when creating content for this custom post "
768
  "type"
769
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
770
 
771
- #: ../custom-post-type-ui.php:1408
772
  msgid "Comments"
773
  msgstr "Yorumlar"
774
 
775
- #: ../custom-post-type-ui.php:1408
776
  msgid ""
777
  "Adds the comments meta box when creating content for this custom post type"
778
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
779
 
780
- #: ../custom-post-type-ui.php:1409
781
  msgid "Revisions"
782
  msgstr "Düzenlemeler"
783
 
784
- #: ../custom-post-type-ui.php:1409
785
  msgid ""
786
  "Adds the revisions meta box when creating content for this custom post type"
787
  msgstr ""
788
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
789
 
790
- #: ../custom-post-type-ui.php:1410
791
  msgid "Featured Image"
792
  msgstr "Öne Çıkan Görüntü"
793
 
794
- #: ../custom-post-type-ui.php:1410
795
  msgid ""
796
  "Adds the featured image meta box when creating content for this custom post "
797
  "type"
@@ -799,20 +837,20 @@ msgstr ""
799
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
800
  "ekler"
801
 
802
- #: ../custom-post-type-ui.php:1411
803
  msgid "Author"
804
  msgstr "Yazar"
805
 
806
- #: ../custom-post-type-ui.php:1411
807
  msgid ""
808
  "Adds the author meta box when creating content for this custom post type"
809
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
810
 
811
- #: ../custom-post-type-ui.php:1412
812
  msgid "Page Attributes"
813
  msgstr "Sayfa Öznitelikleri"
814
 
815
- #: ../custom-post-type-ui.php:1412
816
  msgid ""
817
  "Adds the page attribute meta box when creating content for this custom post "
818
  "type"
@@ -820,246 +858,743 @@ msgstr ""
820
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
821
  "ekler "
822
 
823
- #: ../custom-post-type-ui.php:1413
824
  msgid "Post Formats"
825
  msgstr "Yazı Formatları"
826
 
827
- #: ../custom-post-type-ui.php:1413
828
  msgid "Adds post format support"
829
  msgstr "Bu Yazı format desteği ekler"
830
 
831
- #: ../custom-post-type-ui.php:1418
 
 
 
 
 
 
 
 
 
 
 
 
832
  msgid "Built-in Taxonomies"
833
  msgstr "Dahili Sınıflandırmalar"
834
 
835
- #: ../custom-post-type-ui.php:1451
 
 
 
 
 
 
 
 
 
 
836
  msgid ""
837
- "If you are unfamiliar with the options below only fill out the "
838
- "<strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> fields. "
839
- "The other settings are set to the most common defaults for custom "
840
- "taxonomies. Hover over the question mark for more details."
841
  msgstr ""
842
- "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
843
- "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
844
 
845
- #: ../custom-post-type-ui.php:1460
846
- msgid "Taxonomy Name"
847
- msgstr "Sınıflandırma Adı"
 
 
 
 
 
 
 
 
848
 
849
- #: ../custom-post-type-ui.php:1460
 
850
  msgid ""
851
- "The taxonomy name. Used to retrieve custom taxonomy content. Should be "
852
- "short and sweet"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
853
  msgstr ""
854
- "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
855
- "tatlı olmalıdır"
856
 
857
- #: ../custom-post-type-ui.php:1461
858
  msgid ""
859
- "Note: Changing the name, after adding terms to the taxonomy, will not update "
860
- "the terms in the database."
 
 
861
  msgstr ""
862
- "Not: Sınıflandırma terimleri ekledikten sonra, adının değiştirilmesi, "
863
- "veritabanında koşullarını güncelleme yapılmayacak."
864
 
865
- #: ../custom-post-type-ui.php:1463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
866
  msgid "(e.g. actors)"
867
  msgstr "(örneğin: aktörler)"
868
 
869
- #: ../custom-post-type-ui.php:1464
 
870
  msgid ""
871
- "Max 32 characters, should only contain alphanumeric lowercase characters and "
872
- "underscores in place of spaces."
873
  msgstr ""
874
- "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
875
- "boşluk yerine alt çizgi olmalıdır."
876
 
877
- #: ../custom-post-type-ui.php:1469
878
- msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
 
 
 
 
 
879
  msgstr ""
880
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
881
  "menüsünde kullanılan."
882
 
883
- #: ../custom-post-type-ui.php:1470
884
- msgid "(e.g. Actors)"
885
- msgstr "(örneğin: Aktörler)"
886
 
887
- #: ../custom-post-type-ui.php:1474
888
  msgid ""
889
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
890
  msgstr ""
891
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
892
  "kullanır."
893
 
894
- #: ../custom-post-type-ui.php:1475
895
- msgid "(e.g. Actor)"
896
- msgstr "(örneğin: Aktör)"
897
-
898
- #: ../custom-post-type-ui.php:1479
899
  msgid "Attach to Post Type"
900
  msgstr "Yazı Türüne ekle"
901
 
902
- #: ../custom-post-type-ui.php:1479
903
- msgid ""
904
- "What post type object to attach the custom taxonomy to. Can be post, page, "
905
- "or link by default. Can also be any custom post type name."
906
- msgstr ""
907
- "Yazı türü nesnesi için özel sınıflandırma oluşturmak için. Sayfa veya link "
908
- "varsayılan olabilir. Ayrıca herhangi bir özel yazı türü adı olabilir."
909
 
910
- #: ../custom-post-type-ui.php:1482
911
- msgid ""
912
- "This is the old method. Delete the post type from the textbox and check "
913
- "which post type to attach this taxonomy to</strong>"
914
- msgstr ""
915
- "Bu, eski bir yöntemdir. Metin kutusu sonrası türünü silmek ve bu "
916
- "sınıflandırma eklemek sonrası hangi tip onay"
917
 
918
- #: ../custom-post-type-ui.php:1483
919
- msgid "(e.g. movies)"
920
- msgstr "(örneğin: filmler)"
 
921
 
922
- #: ../custom-post-type-ui.php:1514
 
 
 
 
 
 
 
 
923
  msgid ""
924
- "Below are the advanced label options for custom taxonomies. If you are "
925
- "unfamiliar with these labels the plugin will automatically create labels "
926
- "based off of your custom taxonomy name"
927
- msgstr ""
928
- "Aşağıda özel sınıflandırmalar için gelişmiş etiket seçenekleri vardır. Eğer "
929
- "bu etiket ile aşina değilseniz eklenti otomatik olarak özel sınıflandırma "
930
- "adının kapalıya dayalı etiketlerini oluşturacak."
931
-
932
- #: ../custom-post-type-ui.php:1517 ../custom-post-type-ui.php:1523
933
- #: ../custom-post-type-ui.php:1529 ../custom-post-type-ui.php:1535
934
- #: ../custom-post-type-ui.php:1541 ../custom-post-type-ui.php:1547
935
- #: ../custom-post-type-ui.php:1553 ../custom-post-type-ui.php:1559
936
- #: ../custom-post-type-ui.php:1565 ../custom-post-type-ui.php:1571
937
- #: ../custom-post-type-ui.php:1577 ../custom-post-type-ui.php:1583
938
- msgid ""
939
- "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
940
  msgstr ""
941
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
942
  "menüsünde kullanılan."
943
 
944
- #: ../custom-post-type-ui.php:1519
945
- msgid "(e.g. Search Actors)"
946
- msgstr "(örneğin: Aktörleri Ara)"
947
 
948
- #: ../custom-post-type-ui.php:1523
949
- msgid "Popular Items"
950
- msgstr "Popüler Elemanlar"
951
 
952
- #: ../custom-post-type-ui.php:1525
953
- msgid "(e.g. Popular Actors)"
954
- msgstr "(örneğin: Popüler Aktörler)"
 
955
 
956
- #: ../custom-post-type-ui.php:1529
957
- msgid "All Items"
958
- msgstr "Bütün Elemanlar"
 
959
 
960
- #: ../custom-post-type-ui.php:1531
961
- msgid "(e.g. All Actors)"
962
- msgstr "(örneğin: Bütün Aktörler)"
 
963
 
964
- #: ../custom-post-type-ui.php:1535
965
- msgid "Parent Item"
966
- msgstr "Temel Eleman"
 
 
 
 
967
 
968
- #: ../custom-post-type-ui.php:1537
 
 
 
 
969
  msgid "(e.g. Parent Actor)"
970
  msgstr "(örneğin: Temel Aktör)"
971
 
972
- #: ../custom-post-type-ui.php:1541
973
- msgid "Parent Item Colon"
974
- msgstr "Temel Eleman Kolon"
975
 
976
- #: ../custom-post-type-ui.php:1543
977
  msgid "(e.g. Parent Actor:)"
978
  msgstr "(örneğin: Temel Aktör:)"
979
 
980
- #: ../custom-post-type-ui.php:1549
981
- msgid "(e.g. Edit Actor)"
982
- msgstr "(örneğin: Aktör Düzenle)"
983
 
984
- #: ../custom-post-type-ui.php:1553
985
- msgid "Update Item"
986
- msgstr "Eleman Güncelle"
987
 
988
- #: ../custom-post-type-ui.php:1555
989
- msgid "(e.g. Update Actor)"
990
- msgstr "(örneğin: Aktörü Güncelle)"
991
 
992
- #: ../custom-post-type-ui.php:1561
993
- msgid "(e.g. Add New Actor)"
994
- msgstr "(örneğin: Yeni Aktör Ekle)"
995
 
996
- #: ../custom-post-type-ui.php:1565
997
- msgid "New Item Name"
998
- msgstr "Yeni Eleman Adı"
999
 
1000
- #: ../custom-post-type-ui.php:1567
1001
- msgid "(e.g. New Actor Name)"
1002
- msgstr "(örneğin: Yeni Aktör Adı)"
1003
 
1004
- #: ../custom-post-type-ui.php:1571
1005
  msgid "Separate Items with Commas"
1006
  msgstr "Elemanları virgül ile ayır"
1007
 
1008
- #: ../custom-post-type-ui.php:1573
1009
- msgid "(e.g. Separate actors with commas)"
1010
- msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1011
 
1012
- #: ../custom-post-type-ui.php:1577
1013
  msgid "Add or Remove Items"
1014
  msgstr "Elemanları Ekle veya Çıkar "
1015
 
1016
- #: ../custom-post-type-ui.php:1579
1017
- msgid "(e.g. Add or remove actors)"
1018
- msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1019
 
1020
- #: ../custom-post-type-ui.php:1583
1021
  msgid "Choose From Most Used"
1022
  msgstr "Çok Kullanılandan Seç"
1023
 
1024
- #: ../custom-post-type-ui.php:1585
1025
- msgid "(e.g. Choose from the most used actors)"
1026
- msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
 
 
 
 
 
 
1027
 
1028
- #: ../custom-post-type-ui.php:1593
1029
  msgid "Whether the taxonomy can have parent-child relationships"
1030
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1031
 
1032
- #: ../custom-post-type-ui.php:1603
1033
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1034
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1035
 
1036
- #: ../custom-post-type-ui.php:1623
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  msgid "Triggers the handling of rewrites for this taxonomy"
1038
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1039
 
1040
- #: ../custom-post-type-ui.php:1633
 
 
 
 
1041
  msgid "Custom Taxonomy Rewrite Slug"
1042
  msgstr "Özel Sınıflandırma Rewrite Slug"
1043
 
1044
- #: ../custom-post-type-ui.php:1634
1045
- msgid "(default: taxonomy name)"
1046
- msgstr "(varsayılan: sınıflandırma adı)"
 
 
 
 
 
 
1047
 
1048
- #: ../custom-post-type-ui.php:1639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1049
  msgid "Show Admin Column"
1050
  msgstr "Yönetici Sütunu Göster"
1051
 
1052
- #: ../custom-post-type-ui.php:1639
1053
  msgid ""
1054
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1055
  "types."
1056
  msgstr ""
1057
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1058
 
1059
- #: ../custom-post-type-ui.php:1673
1060
- msgid "Please Report Bugs"
1061
- msgstr "Lütfen Hataları Bildirin"
 
 
 
 
 
 
1062
 
1063
- #: ../custom-post-type-ui.php:1673
1064
- msgid "Follow on Twitter:"
1065
- msgstr "Twitterden takip et:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-02-11 21:09-0600\n"
5
+ "PO-Revision-Date: 2015-02-11 21:09-0600\n"
6
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
+ "Language: tr_TR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.4\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
 
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../custom-post-type-ui.php:57
20
  msgid "Custom Post Types"
21
  msgstr "Özel Yazı Türleri"
22
 
23
+ #: ../custom-post-type-ui.php:57
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
+ #: ../custom-post-type-ui.php:323
 
 
 
 
 
 
 
 
32
  msgid ""
33
+ "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
+ "with our plugin provides efficiency and speed in creating post types and "
35
+ "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
 
 
37
 
38
+ #: ../custom-post-type-ui.php:325
39
+ #, php-format
40
  msgid ""
41
+ "To get started with creating some post types, please visit %s and for "
42
+ "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
43
+ "there fits your issue, visit our %s and we will try to get to your question "
44
+ "as soon as possible."
45
  msgstr ""
 
 
 
 
 
 
46
 
47
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
48
+ #, fuzzy
49
+ msgid "Add/Edit Post Types"
50
+ msgstr "Ek Yazı Türleri"
 
 
 
 
 
 
 
 
 
 
51
 
52
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
53
+ #, fuzzy
54
+ msgid "Add/Edit Taxonomies"
55
+ msgstr "Dahili Sınıflandırmalar"
 
 
 
56
 
57
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:23
58
+ #, fuzzy
59
+ msgid "Help/Support"
60
+ msgstr "Eklentiye Destek, Yardım!"
 
 
 
61
 
62
+ #: ../custom-post-type-ui.php:329
63
+ msgid "CPT UI Support Forum"
 
 
64
  msgstr ""
 
 
65
 
66
+ #: ../custom-post-type-ui.php:345
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
+ #: ../custom-post-type-ui.php:349
71
+ #, fuzzy
72
+ msgid "Professional WordPress<br />Third Edition"
 
 
 
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
+ #: ../custom-post-type-ui.php:354
76
+ #, fuzzy
 
 
 
 
 
 
 
77
  msgid ""
78
+ "The leading book on WordPress design and development! Brand new third "
79
+ "edition!"
80
  msgstr ""
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
+ #: ../custom-post-type-ui.php:357
85
+ msgid "Professional WordPress<br />Plugin Development"
86
+ msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
+
88
+ #: ../custom-post-type-ui.php:362
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
+ #: ../custom-post-type-ui.php:365
93
+ msgid "PayPal Donation"
94
+ msgstr "PayPal Bağış"
 
 
 
 
 
 
 
 
95
 
96
+ #: ../custom-post-type-ui.php:366
97
+ #, fuzzy
98
+ msgid "Please donate to the development of Custom Post Type UI:"
99
+ msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
+ #: ../custom-post-type-ui.php:370
102
+ msgid "PayPal - The safer, easier way to pay online!"
 
 
 
103
  msgstr ""
 
 
 
104
 
105
+ #: ../custom-post-type-ui.php:407
106
+ #, php-format
107
+ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
109
 
110
+ #: ../custom-post-type-ui.php:416
111
+ msgid "Please Report Bugs"
112
+ msgstr "Lütfen Hataları Bildirin"
 
 
113
 
114
+ #: ../custom-post-type-ui.php:418
115
+ msgid "Follow on Twitter:"
116
+ msgstr "Twitterden takip et:"
 
 
 
117
 
118
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
119
+ msgid "Import/Export"
120
+ msgstr ""
 
 
 
121
 
122
+ #: ../custom-post-type-ui.php:480
123
+ msgid "Manage Taxonomies"
124
+ msgstr "Sınıflandırmaları Yönet"
 
 
 
125
 
126
+ #: ../custom-post-type-ui.php:484
127
+ msgid "Manage Post Types"
128
+ msgstr "Yazı Türlerini Yönet"
 
 
129
 
130
+ #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
131
+ msgid "Add New"
132
+ msgstr "Yeni Ekle"
133
 
134
+ #: ../custom-post-type-ui.php:513
135
+ #, fuzzy
136
+ msgid "Edit Post Types"
137
+ msgstr "Özel Yazı Türleri"
138
 
139
+ #: ../custom-post-type-ui.php:517
140
+ #, fuzzy
141
+ msgid "Edit Taxonomies"
142
+ msgstr "Dahili Sınıflandırmalar"
143
 
144
+ #: ../custom-post-type-ui.php:521
145
+ #, fuzzy
146
+ msgid "Post Types"
147
+ msgstr "Özel Yazı Türleri"
148
 
149
+ #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
150
+ #, fuzzy
151
+ msgid "Taxonomies"
152
+ msgstr "Sınıflandırmaları Yönet"
153
 
154
+ #: ../custom-post-type-ui.php:523
155
  msgid "Get Code"
156
  msgstr "Kodu Alın"
157
 
158
+ #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
159
+ #: ../inc/taxonomies.php:319
160
+ msgid "Settings"
 
161
  msgstr ""
 
 
162
 
163
+ #: ../custom-post-type-ui.php:607
164
+ msgid "Help"
 
 
165
  msgstr ""
 
 
 
 
 
 
166
 
167
+ #: ../custom-post-type-ui.php:635
168
+ #, php-format
169
+ msgid "%s has been successfully added"
 
170
  msgstr ""
 
 
171
 
172
+ #: ../custom-post-type-ui.php:637
173
+ #, php-format
174
+ msgid "%s has failed to be added"
175
+ msgstr ""
176
 
177
+ #: ../custom-post-type-ui.php:641
178
+ #, php-format
179
+ msgid "%s has been successfully updated"
180
+ msgstr ""
181
 
182
+ #: ../custom-post-type-ui.php:643
183
+ #, php-format
184
+ msgid "%s has failed to be updated"
185
+ msgstr ""
186
 
187
+ #: ../custom-post-type-ui.php:647
188
+ #, php-format
189
+ msgid "%s has been successfully deleted"
190
+ msgstr ""
191
 
192
+ #: ../custom-post-type-ui.php:649
193
+ #, php-format
194
+ msgid "%s has failed to be deleted"
 
 
195
  msgstr ""
 
 
196
 
197
+ #: ../custom-post-type-ui.php:653
198
+ #, php-format
199
+ msgid "%s has been successfully imported"
200
+ msgstr ""
201
 
202
+ #: ../custom-post-type-ui.php:655
203
+ #, php-format
204
+ msgid "%s has failed to be imported"
205
+ msgstr ""
206
 
207
+ #: ../inc/import_export.php:52
208
  msgid ""
209
+ "If you are wanting to migrate registered post types or taxonomies from this "
210
+ "site to another, that will also use Custom Post Type UI, use the import and "
211
+ "export functionality. If you are moving away from Custom Post Type UI, use "
212
+ "the information in the \"Get Code\" tab."
213
  msgstr ""
 
 
214
 
215
+ #: ../inc/import_export.php:55
216
+ msgid "NOTE"
 
 
217
  msgstr ""
 
 
218
 
219
+ #: ../inc/import_export.php:56
220
+ msgid "This will not export the associated posts, just the settings."
221
+ msgstr ""
222
 
223
+ #: ../inc/import_export.php:63
224
+ #, fuzzy
225
+ msgid "Import Post Types"
226
+ msgstr "Özel Yazı Türleri"
227
 
228
+ #: ../inc/import_export.php:65 ../inc/import_export.php:91
229
+ msgid "Paste content here."
230
+ msgstr ""
231
 
232
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
233
+ msgid "Note:"
234
+ msgstr ""
235
+
236
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
237
+ msgid "Importing will overwrite previous registered settings."
238
+ msgstr ""
239
 
240
+ #: ../inc/import_export.php:67
241
  msgid ""
242
+ "To import post types from a different WordPress site, paste the exported "
243
+ "content from that site and click the \"Import\" button."
244
+ msgstr ""
245
+
246
+ #: ../inc/import_export.php:68 ../inc/import_export.php:94
247
+ msgid "Import"
248
  msgstr ""
 
 
249
 
250
+ #: ../inc/import_export.php:72
251
+ #, fuzzy
252
+ msgid "Export Post Types"
253
+ msgstr "Özel Yazı Türleri"
254
+
255
+ #: ../inc/import_export.php:79
256
+ msgid "No post types registered yet."
257
+ msgstr ""
258
 
259
+ #: ../inc/import_export.php:82 ../inc/import_export.php:107
260
  msgid ""
261
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
262
+ "(Mac)."
263
  msgstr ""
 
 
264
 
265
+ #: ../inc/import_export.php:83
266
+ msgid ""
267
+ "Use the content above to import current post types into a different "
268
+ "WordPress site. You can also use this to simply back up your post type "
269
+ "settings."
270
+ msgstr ""
271
 
272
+ #: ../inc/import_export.php:89
273
+ #, fuzzy
274
+ msgid "Import Taxonomies"
275
+ msgstr "Sınıflandırmaları Yönet"
276
 
277
+ #: ../inc/import_export.php:93
278
+ msgid ""
279
+ "To import taxonomies from a different WordPress site, paste the exported "
280
+ "content from that site and click the \"Import\" button."
281
+ msgstr ""
282
 
283
+ #: ../inc/import_export.php:98
284
+ #, fuzzy
285
+ msgid "Export Taxonomies"
286
+ msgstr "Sınıflandırmaları Yönet"
287
 
288
+ #: ../inc/import_export.php:104
289
+ msgid "No taxonomies registered yet."
290
  msgstr ""
 
291
 
292
+ #: ../inc/import_export.php:108
293
+ msgid ""
294
+ "Use the content above to import current taxonomies into a different "
295
+ "WordPress site. You can also use this to simply back up your taxonomy "
296
+ "settings."
297
  msgstr ""
 
 
298
 
299
+ #: ../inc/import_export.php:116
300
+ #, fuzzy
301
+ msgid "Get Post Type and Taxonomy Code"
302
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
303
 
304
+ #: ../inc/import_export.php:118
305
+ #, fuzzy
306
+ msgid "All CPT UI Post Types"
307
+ msgstr "Özel Yazı Türleri"
308
+
309
+ #: ../inc/import_export.php:119 ../inc/import_export.php:123
310
+ msgid "Copy/paste the code below into your functions.php file."
311
+ msgstr ""
312
 
313
+ #: ../inc/import_export.php:122
314
+ #, fuzzy
315
+ msgid "All CPT UI Taxonomies"
316
+ msgstr "Dahili Sınıflandırmalar"
317
 
318
+ #: ../inc/import_export.php:153
319
+ msgid "No taxonomies to display at this time"
320
+ msgstr ""
321
+
322
+ #: ../inc/import_export.php:223
323
+ msgid "No post types to display at this time"
324
  msgstr ""
 
 
 
325
 
326
+ #: ../inc/import_export.php:342
327
+ #, fuzzy
328
+ msgid "Post types"
329
+ msgstr "Özel Yazı Türleri"
330
+
331
+ #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
332
+ msgid "Are you sure you want to delete this?"
333
+ msgstr ""
334
 
335
+ #: ../inc/post-types.php:78
336
  msgid ""
337
+ "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
338
+ "Changing that value registers a new post type entry for your install."
339
  msgstr ""
 
 
340
 
341
+ #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
342
+ msgid "Select"
343
+ msgstr ""
344
+
345
+ #: ../inc/post-types.php:103
346
+ #, fuzzy
347
+ msgid "Post Type Slug"
348
+ msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
349
+
350
+ #: ../inc/post-types.php:104
351
  msgid "(e.g. movie)"
352
  msgstr "(örnek: film)"
353
 
354
+ #: ../inc/post-types.php:105
355
+ #, fuzzy
356
  msgid ""
357
+ "The post type name. Used to retrieve custom post type content. Should be "
358
+ "short and unique"
359
  msgstr ""
360
+ "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
361
+ "kullanılacaktır."
362
+
363
+ #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
364
+ #, fuzzy
365
+ msgid "Plural Label"
366
+ msgstr "Tekil Etiket"
367
+
368
+ #: ../inc/post-types.php:117
369
+ msgid "(e.g. Movies)"
370
+ msgstr "(örneğin: Filmler)"
371
 
372
+ #: ../inc/post-types.php:118 ../inc/post-types.php:186
373
+ #: ../inc/post-types.php:198 ../inc/post-types.php:210
374
+ #: ../inc/post-types.php:222 ../inc/post-types.php:234
375
+ #: ../inc/post-types.php:246 ../inc/post-types.php:258
376
+ #: ../inc/post-types.php:270 ../inc/post-types.php:282
377
+ #: ../inc/post-types.php:294 ../inc/post-types.php:306
378
+ #: ../inc/post-types.php:318
379
+ #, fuzzy
380
+ msgid "Post type label. Used in the admin menu for displaying post types."
381
  msgstr ""
382
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
383
  "kullanılacak."
384
 
385
+ #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
386
+ msgid "Singular Label"
387
+ msgstr "Tekil Etiket"
388
+
389
+ #: ../inc/post-types.php:129
390
+ msgid "(e.g. Movie)"
391
+ msgstr "(örneğin: Film)"
392
 
393
+ #: ../inc/post-types.php:130
394
+ #, fuzzy
395
  msgid ""
396
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
397
  "needed."
398
  msgstr ""
399
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
400
  "kullanacak."
401
 
402
+ #: ../inc/post-types.php:145
 
 
 
 
403
  msgid "Description"
404
  msgstr "Açıklama"
405
 
406
+ #: ../inc/post-types.php:146
407
+ #, fuzzy
408
  msgid ""
409
+ "Custom Post Type Description. Describe what your custom post type is used "
410
  "for."
411
  msgstr ""
412
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
413
 
414
+ #: ../inc/post-types.php:153
415
+ #, fuzzy
416
+ msgid "Edit Post Type"
417
+ msgstr "Özel Yazı Türleri"
418
 
419
+ #: ../inc/post-types.php:154
420
+ #, fuzzy
421
+ msgid "Delete Post Type"
422
+ msgstr "Ek Yazı Türleri"
423
 
424
+ #: ../inc/post-types.php:156
425
+ #, fuzzy
426
+ msgid "Add Post Type"
427
+ msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
428
+
429
+ #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
430
+ msgid "Click headings to reveal available options."
431
+ msgstr ""
432
+
433
+ #: ../inc/post-types.php:165 ../inc/post-types.php:327
434
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
435
+ #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
436
+ msgid "Click to expand"
437
  msgstr ""
 
 
 
438
 
439
+ #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
440
+ #, fuzzy
441
+ msgid "Labels"
442
+ msgstr "Etiket"
443
+
444
+ #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
445
  msgid "Menu Name"
446
  msgstr "Menü Adı"
447
 
448
+ #: ../inc/post-types.php:174
449
  msgid "Custom menu name for your custom post type."
450
  msgstr "Özel yazı türü için özel menü adı."
451
 
452
+ #: ../inc/post-types.php:178
453
  msgid "(e.g. My Movies)"
454
  msgstr "(örneğin: Benim Filmlerim)"
455
 
456
+ #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
457
+ msgid "All Items"
458
+ msgstr "Bütün Elemanlar"
459
+
460
+ #: ../inc/post-types.php:190
461
+ #, fuzzy
462
+ msgid "(e.g. All Movies)"
463
+ msgstr "(örneğin: Filmler)"
464
+
465
+ #: ../inc/post-types.php:202
466
  msgid "(e.g. Add New)"
467
  msgstr "(örneğin: Yeni Ekle)"
468
 
469
+ #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
470
  msgid "Add New Item"
471
  msgstr "Yeni Eleman Ekle"
472
 
473
+ #: ../inc/post-types.php:214
474
  msgid "(e.g. Add New Movie)"
475
  msgstr "(örneğin: Yeni Film ekle)"
476
 
477
+ #: ../inc/post-types.php:221
478
+ msgid "Edit"
479
+ msgstr "Düzenle"
480
+
481
+ #: ../inc/post-types.php:226
482
  msgid "(e.g. Edit)"
483
  msgstr "(örneğin: Düzenle)"
484
 
485
+ #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
486
  msgid "Edit Item"
487
  msgstr "Eleman Düzenle"
488
 
489
+ #: ../inc/post-types.php:238
490
  msgid "(e.g. Edit Movie)"
491
  msgstr "(örneğin: Film Düzenle)"
492
 
493
+ #: ../inc/post-types.php:245
494
  msgid "New Item"
495
  msgstr "Yeni Eleman"
496
 
497
+ #: ../inc/post-types.php:250
498
  msgid "(e.g. New Movie)"
499
  msgstr "(örneğin: Yeni Film)"
500
 
501
+ #: ../inc/post-types.php:257
502
  msgid "View"
503
  msgstr "Göster"
504
 
505
+ #: ../inc/post-types.php:262
506
+ #, fuzzy
507
+ msgid "(e.g. View)"
508
  msgstr "(örneğin: Film Göster)"
509
 
510
+ #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
511
  msgid "View Item"
512
  msgstr "Elemanı Göster"
513
 
514
+ #: ../inc/post-types.php:274
515
+ msgid "(e.g. View Movie)"
516
+ msgstr "(örneğin: Film Göster)"
517
+
518
+ #: ../inc/post-types.php:281
519
+ #, fuzzy
520
+ msgid "Search Item"
521
  msgstr "Eleman Ara"
522
 
523
+ #: ../inc/post-types.php:286
524
+ #, fuzzy
525
+ msgid "(e.g. Search Movie)"
526
  msgstr "(örneğin: Filmleri Ara)"
527
 
528
+ #: ../inc/post-types.php:293
529
  msgid "Not Found"
530
  msgstr "Bulunamadı"
531
 
532
+ #: ../inc/post-types.php:298
533
+ #, fuzzy
534
+ msgid "(e.g. No Movies found)"
535
+ msgstr "(örneğin: Çöpte Filmler bulunamadı)"
536
 
537
+ #: ../inc/post-types.php:305
538
  msgid "Not Found in Trash"
539
  msgstr "Çöpte Bulunamadı"
540
 
541
+ #: ../inc/post-types.php:310
542
  msgid "(e.g. No Movies found in Trash)"
543
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
544
 
545
+ #: ../inc/post-types.php:317
546
  msgid "Parent"
547
  msgstr "Temel"
548
 
549
+ #: ../inc/post-types.php:322
550
  msgid "(e.g. Parent Movie)"
551
  msgstr "(örneğin: Temel Film)"
552
 
553
+ #: ../inc/post-types.php:336 ../inc/post-types.php:356
554
+ #: ../inc/post-types.php:376 ../inc/post-types.php:396
555
+ #: ../inc/post-types.php:427 ../inc/post-types.php:447
556
+ #: ../inc/post-types.php:479 ../inc/post-types.php:499
557
+ #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
558
+ #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
559
+ #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
560
+ #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
561
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
562
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
563
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
564
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
565
  msgid "False"
566
  msgstr "False"
567
 
568
+ #: ../inc/post-types.php:337 ../inc/post-types.php:357
569
+ #: ../inc/post-types.php:377 ../inc/post-types.php:397
570
+ #: ../inc/post-types.php:428 ../inc/post-types.php:448
571
+ #: ../inc/post-types.php:480 ../inc/post-types.php:500
572
+ #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
573
+ #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
574
+ #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
575
+ #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
576
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
577
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
578
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
579
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
580
  msgid "True"
581
  msgstr "True"
582
 
583
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
584
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
585
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
586
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
587
+ msgid "Public"
588
+ msgstr "Genel"
589
+
590
+ #: ../inc/post-types.php:346 ../inc/post-types.php:366
591
+ #: ../inc/post-types.php:457 ../inc/post-types.php:489
592
+ #: ../inc/post-types.php:509 ../inc/post-types.php:548
593
+ #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
594
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
595
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
596
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
597
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
598
  msgid "(default: True)"
599
  msgstr "(varsayılan: Doğru)"
600
 
601
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
602
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
603
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
604
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
605
+ msgid "Whether posts of this type should be shown in the admin UI"
606
+ msgstr ""
607
+ "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
608
+
609
+ #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
610
+ msgid "Show UI"
611
+ msgstr "KA Göster"
612
+
613
+ #: ../inc/post-types.php:367
614
  msgid "Whether to generate a default UI for managing this post type"
615
  msgstr ""
616
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
617
 
618
+ #: ../inc/post-types.php:385
619
  msgid "Has Archive"
620
  msgstr "Arşivlenebilir mi?"
621
 
622
+ #: ../inc/post-types.php:386 ../inc/post-types.php:406
623
+ #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
624
+ #: ../inc/taxonomies.php:454
 
 
 
 
625
  msgid "(default: False)"
626
  msgstr "(varsayılan:Yanlış)"
627
 
628
+ #: ../inc/post-types.php:387
629
+ msgid "Whether the post type will have a post type archive page"
630
+ msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
631
+
632
+ #: ../inc/post-types.php:405
633
  msgid "Exclude From Search"
634
  msgstr "Arama Dışında Bırak"
635
 
636
+ #: ../inc/post-types.php:407
637
  msgid "Whether the post type will be searchable"
638
  msgstr "Yazı türünün aranabilir olup olmadığı"
639
 
640
+ #: ../inc/post-types.php:418
641
  msgid "Capability Type"
642
  msgstr "Yetenek Türü"
643
 
644
+ #: ../inc/post-types.php:419
645
  msgid "The post type to use for checking read, edit, and delete capabilities"
646
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
647
 
648
+ #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
649
+ msgid "Hierarchical"
650
+ msgstr "Hiyerarşik"
651
+
652
+ #: ../inc/post-types.php:438
653
  msgid "Whether the post type can have parent-child relationships"
654
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
655
 
656
+ #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
657
+ msgid "Rewrite"
658
+ msgstr "Rewrite"
659
+
660
+ #: ../inc/post-types.php:458
661
  msgid "Triggers the handling of rewrites for this post type"
662
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
663
 
664
+ #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
665
  msgid "Custom Rewrite Slug"
666
  msgstr "Özel Rewrite Slug"
667
 
668
+ #: ../inc/post-types.php:470
 
 
 
 
669
  msgid "(default: post type name)"
670
  msgstr "(varsayılan: yazı türü adı)"
671
 
672
+ #: ../inc/post-types.php:471
673
+ msgid "Custom slug to use instead of the default."
674
+ msgstr "Özel slug yerine varsayılan kullanmak için."
675
+
676
+ #: ../inc/post-types.php:488
677
  msgid "With Front"
678
  msgstr "Cephesinden"
679
 
680
+ #: ../inc/post-types.php:490 ../inc/post-types.php:510
681
+ #: ../inc/taxonomies.php:421
682
  msgid "Should the permastruct be prepended with the front base."
683
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
684
 
685
+ #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
686
+ msgid "Query Var"
687
+ msgstr "Sorgu Tanımı"
688
+
689
+ #: ../inc/post-types.php:514
690
  msgid "Menu Position"
691
  msgstr "Menü Pozisyonu"
692
 
693
+ #: ../inc/post-types.php:516
694
  msgid ""
695
  "The position in the menu order the post type should appear. show_in_menu "
696
  "must be true."
698
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
699
  "gerekir."
700
 
701
+ #: ../inc/post-types.php:517
702
  msgid ""
703
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
704
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
708
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
709
  "bölümü\". Aralık 5 ile 100"
710
 
711
+ #: ../inc/post-types.php:524
712
+ #, fuzzy
713
+ msgid "URL or Dashicon value for image to be used as menu icon."
714
+ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
715
+
716
+ #: ../inc/post-types.php:529
717
  msgid "Show in Menu"
718
  msgstr "Menüde Göster"
719
 
720
+ #: ../inc/post-types.php:530
 
 
 
 
 
 
721
  msgid ""
722
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
723
  "php\" is indicated for second input, post type will be sub menu of that."
726
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
727
  "olacaktır."
728
 
729
+ #: ../inc/post-types.php:547
730
+ #, fuzzy
731
+ msgid "Show In Menu"
732
+ msgstr "Menüde Göster"
733
+
734
+ #: ../inc/post-types.php:549
735
+ msgid ""
736
+ "Whether to show the post type in the admin menu and where to show that menu. "
737
+ "Note that show_ui must be true"
738
+ msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
739
 
740
+ #: ../inc/post-types.php:561
741
  msgid "URL to image to be used as menu icon."
742
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
743
 
744
+ #: ../inc/post-types.php:572
745
+ msgid "Menu Icon"
746
+ msgstr "Menü Simgesi"
747
 
748
+ #: ../inc/post-types.php:573
749
+ msgid "(Full URL for icon or Dashicon class)"
750
+ msgstr ""
751
+
752
+ #: ../inc/post-types.php:574
753
+ #, fuzzy
754
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
755
+ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
756
+
757
+ #: ../inc/post-types.php:577
758
+ msgid "Supports"
759
+ msgstr "Destekler"
760
+
761
+ #: ../inc/post-types.php:587
762
+ msgid "Title"
763
+ msgstr "Başlık"
764
+
765
+ #: ../inc/post-types.php:588
766
+ msgid "Adds the title meta box when creating content for this custom post type"
767
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
768
 
769
+ #: ../inc/post-types.php:602
770
  msgid "Editor"
771
  msgstr "Editör"
772
 
773
+ #: ../inc/post-types.php:603
774
  msgid ""
775
  "Adds the content editor meta box when creating content for this custom post "
776
  "type"
777
  msgstr ""
778
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
779
 
780
+ #: ../inc/post-types.php:617
781
  msgid "Excerpt"
782
  msgstr "Alıntı"
783
 
784
+ #: ../inc/post-types.php:618
785
  msgid ""
786
  "Adds the excerpt meta box when creating content for this custom post type"
787
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
788
 
789
+ #: ../inc/post-types.php:632
790
  msgid "Trackbacks"
791
  msgstr "Parçagönderimi"
792
 
793
+ #: ../inc/post-types.php:633
794
  msgid ""
795
  "Adds the trackbacks meta box when creating content for this custom post type"
796
  msgstr ""
797
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
798
 
799
+ #: ../inc/post-types.php:647
800
  msgid "Custom Fields"
801
  msgstr "Özel Alanlar"
802
 
803
+ #: ../inc/post-types.php:648
804
  msgid ""
805
  "Adds the custom fields meta box when creating content for this custom post "
806
  "type"
807
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
808
 
809
+ #: ../inc/post-types.php:662
810
  msgid "Comments"
811
  msgstr "Yorumlar"
812
 
813
+ #: ../inc/post-types.php:663
814
  msgid ""
815
  "Adds the comments meta box when creating content for this custom post type"
816
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
817
 
818
+ #: ../inc/post-types.php:677
819
  msgid "Revisions"
820
  msgstr "Düzenlemeler"
821
 
822
+ #: ../inc/post-types.php:678
823
  msgid ""
824
  "Adds the revisions meta box when creating content for this custom post type"
825
  msgstr ""
826
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
827
 
828
+ #: ../inc/post-types.php:692
829
  msgid "Featured Image"
830
  msgstr "Öne Çıkan Görüntü"
831
 
832
+ #: ../inc/post-types.php:693
833
  msgid ""
834
  "Adds the featured image meta box when creating content for this custom post "
835
  "type"
837
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
838
  "ekler"
839
 
840
+ #: ../inc/post-types.php:707
841
  msgid "Author"
842
  msgstr "Yazar"
843
 
844
+ #: ../inc/post-types.php:708
845
  msgid ""
846
  "Adds the author meta box when creating content for this custom post type"
847
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
848
 
849
+ #: ../inc/post-types.php:722
850
  msgid "Page Attributes"
851
  msgstr "Sayfa Öznitelikleri"
852
 
853
+ #: ../inc/post-types.php:723
854
  msgid ""
855
  "Adds the page attribute meta box when creating content for this custom post "
856
  "type"
858
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
859
  "ekler "
860
 
861
+ #: ../inc/post-types.php:737
862
  msgid "Post Formats"
863
  msgstr "Yazı Formatları"
864
 
865
+ #: ../inc/post-types.php:738
866
  msgid "Adds post format support"
867
  msgstr "Bu Yazı format desteği ekler"
868
 
869
+ #: ../inc/post-types.php:743
870
+ msgid "Use the option below to explicitly set \"supports\" to false."
871
+ msgstr ""
872
+
873
+ #: ../inc/post-types.php:751
874
+ msgid "None"
875
+ msgstr ""
876
+
877
+ #: ../inc/post-types.php:752
878
+ msgid "Remove all support features"
879
+ msgstr ""
880
+
881
+ #: ../inc/post-types.php:759
882
  msgid "Built-in Taxonomies"
883
  msgstr "Dahili Sınıflandırmalar"
884
 
885
+ #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
886
+ #, fuzzy, php-format
887
+ msgid "Adds %s support"
888
+ msgstr "Bu Yazı format desteği ekler"
889
+
890
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
891
+ msgid "Starter Notes"
892
+ msgstr ""
893
+
894
+ #: ../inc/post-types.php:809
895
+ #, fuzzy, php-format
896
  msgid ""
897
+ "Post Type names should have %smax 20 characters%s, and only contain "
898
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
899
+ "letters that do not have accents. Reserved names: post, page, attachment, "
900
+ "revision, nav_menu_item."
901
  msgstr ""
902
+ "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
903
+ "post, sayfa, ek, revizyon, nav_menu_item."
904
 
905
+ #: ../inc/post-types.php:810
906
+ #, fuzzy, php-format
907
+ msgid ""
908
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
909
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
910
+ "values. Labels, if left blank, will be automatically created based on the "
911
+ "post type name. Hover over the question mark for more details."
912
+ msgstr ""
913
+ "Sadece Adı ve Etiket alanlarını doldurun kullanıyorsanız diğer kutuları da "
914
+ "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
915
+ "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
916
 
917
+ #: ../inc/post-types.php:811
918
+ #, fuzzy, php-format
919
  msgid ""
920
+ "Deleting custom post types will %sNOT%s delete any content into the database "
921
+ "or added to those post types. You can easily recreate your post types and "
922
+ "the content will still exist."
923
+ msgstr ""
924
+ "Özel yazı türlerini silmek veritabanında herhangi bir içeriği silmek veya bu "
925
+ "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
926
+ "veritabanında olacaktır."
927
+
928
+ #: ../inc/post-types.php:890
929
+ msgid "Please provide a post type to delete"
930
+ msgstr ""
931
+
932
+ #: ../inc/post-types.php:950
933
+ #, fuzzy
934
+ msgid "Please provide a post type name"
935
+ msgstr "(varsayılan: yazı türü adı)"
936
+
937
+ #: ../inc/post-types.php:968
938
+ #, fuzzy
939
+ msgid "Please do not use quotes in post type names or rewrite slugs"
940
+ msgstr ""
941
+ "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
942
+
943
+ #: ../inc/post-types.php:975
944
+ #, php-format
945
+ msgid "Please choose a different post type name. %s is already registered."
946
+ msgstr ""
947
+
948
+ #: ../inc/support.php:44
949
+ #, fuzzy
950
+ msgid "Custom Post Type UI Support"
951
+ msgstr "Özel Yazı Türleri KA"
952
+
953
+ #: ../inc/support.php:46
954
+ #, fuzzy, php-format
955
+ msgid ""
956
+ "Please note that this plugin will NOT handle display of registered post "
957
+ "types or taxonomies in your current theme. It will simply register them for "
958
+ "you. If all else fails, visit us on the %s"
959
+ msgstr ""
960
+ "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
961
+ "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
962
+
963
+ #: ../inc/support.php:47
964
+ #, fuzzy
965
+ msgid "Support Forums"
966
+ msgstr "Destekler"
967
+
968
+ #: ../inc/support.php:53
969
+ msgid "General"
970
+ msgstr ""
971
+
972
+ #: ../inc/support.php:56
973
+ #, fuzzy
974
+ msgid ""
975
+ "I changed my custom post type name and now I can not get to my posts. How do "
976
+ "I get them back?"
977
+ msgstr ""
978
+ "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
979
+ "gösterilmiyor</strong>"
980
+
981
+ #: ../inc/support.php:57
982
+ #, fuzzy
983
+ msgid ""
984
+ "You can either change the custom post type name back to the original name or "
985
+ "try the Post Type Switcher plugin"
986
+ msgstr ""
987
+ "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
988
+ "deneyebilirsiniz:"
989
+
990
+ #: ../inc/support.php:62
991
+ msgid ""
992
+ "I changed my custom post type or taxonomy slug and now I have duplicates "
993
+ "shown. How do I remove the duplicate?"
994
  msgstr ""
 
 
995
 
996
+ #: ../inc/support.php:63
997
  msgid ""
998
+ "Renaming the slug for a post type or taxonomy creates a new entry in our "
999
+ "saved option which gets registered as its own post type or taxonomy. Since "
1000
+ "the settings will be mirrored from the previous slug, you will just need to "
1001
+ "delete the previous version's entry."
1002
  msgstr ""
 
 
1003
 
1004
+ #: ../inc/support.php:66
1005
+ msgid ""
1006
+ "I have added post thumbnail and/or post format support to my post type, but "
1007
+ "those do not appear when adding a post type post."
1008
+ msgstr ""
1009
+
1010
+ #: ../inc/support.php:67
1011
+ msgid ""
1012
+ "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1013
+ msgstr ""
1014
+
1015
+ #: ../inc/support.php:72
1016
+ msgid "Front-end Display"
1017
+ msgstr ""
1018
+
1019
+ #: ../inc/support.php:75
1020
+ msgid "What template files should I edit to alter my post type display?"
1021
+ msgstr ""
1022
+
1023
+ #: ../inc/support.php:76
1024
+ #, php-format
1025
+ msgid ""
1026
+ "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1027
+ "details about available templates."
1028
+ msgstr ""
1029
+
1030
+ #: ../inc/support.php:83
1031
+ #, fuzzy
1032
+ msgid "How do I display my custom post type on my site?"
1033
+ msgstr ""
1034
+ "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1035
+ "strong>"
1036
+
1037
+ #: ../inc/support.php:84
1038
+ #, php-format
1039
+ msgid ""
1040
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
1041
+ "locations. If you have set the post type to have archives, the archive url "
1042
+ "should be something like \"http://www.mysite.com/post-type-slug\""
1043
+ msgstr ""
1044
+
1045
+ #: ../inc/support.php:90
1046
+ msgid ""
1047
+ "I have added categories and tags to my custom post type, but they do not "
1048
+ "appear in the archives."
1049
+ msgstr ""
1050
+
1051
+ #: ../inc/support.php:91
1052
+ #, php-format
1053
+ msgid ""
1054
+ "You will need to add your newly created post type to the types that the "
1055
+ "category and tag archives query for. You can see a tutorial on how to do "
1056
+ "that at %s"
1057
+ msgstr ""
1058
+
1059
+ #: ../inc/support.php:100
1060
+ #, fuzzy
1061
+ msgid "Advanced"
1062
+ msgstr "Gelişmiş Ayarlar"
1063
+
1064
+ #: ../inc/support.php:103
1065
+ #, fuzzy
1066
+ msgid "How do I add custom metaboxes to my post type?"
1067
+ msgstr ""
1068
+ "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1069
+ "ekleyebilirsiniz?</strong>"
1070
+
1071
+ #: ../inc/support.php:105
1072
+ #, php-format
1073
+ msgid ""
1074
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1075
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1076
+ msgstr ""
1077
+
1078
+ #: ../inc/support.php:111
1079
+ msgid ""
1080
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1081
+ msgstr ""
1082
+
1083
+ #: ../inc/support.php:113
1084
+ #, php-format
1085
+ msgid "Check out the %s function for documentation and usage examples."
1086
+ msgstr ""
1087
+
1088
+ #: ../inc/support.php:119
1089
+ msgid "Post relationships?"
1090
+ msgstr ""
1091
+
1092
+ #: ../inc/support.php:120
1093
+ #, php-format
1094
+ msgid ""
1095
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1096
+ "plugin that should be a good start."
1097
+ msgstr ""
1098
+
1099
+ #: ../inc/support.php:129
1100
+ msgid ""
1101
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1102
+ msgstr ""
1103
+
1104
+ #: ../inc/support.php:130
1105
+ msgid ""
1106
+ "Change text inside the post/page editor title field. Should be able to adapt "
1107
+ "as necessary."
1108
+ msgstr ""
1109
+
1110
+ #: ../inc/taxonomies.php:80
1111
+ msgid ""
1112
+ "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1113
+ "Changing that value registers a new taxonomy entry for your install."
1114
+ msgstr ""
1115
+
1116
+ #: ../inc/taxonomies.php:102
1117
+ #, fuzzy
1118
+ msgid "Taxonomy Slug"
1119
+ msgstr "Sınıflandırma Adı"
1120
+
1121
+ #: ../inc/taxonomies.php:103
1122
  msgid "(e.g. actors)"
1123
  msgstr "(örneğin: aktörler)"
1124
 
1125
+ #: ../inc/taxonomies.php:104
1126
+ #, fuzzy
1127
  msgid ""
1128
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1129
+ "and unique"
1130
  msgstr ""
1131
+ "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1132
+ "tatlı olmalıdır"
1133
 
1134
+ #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1135
+ msgid "(e.g. Actors)"
1136
+ msgstr "(örneğin: Aktörler)"
1137
+
1138
+ #: ../inc/taxonomies.php:114
1139
+ #, fuzzy
1140
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1141
  msgstr ""
1142
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1143
  "menüsünde kullanılan."
1144
 
1145
+ #: ../inc/taxonomies.php:121
1146
+ msgid "(e.g. Actor)"
1147
+ msgstr "(örneğin: Aktör)"
1148
 
1149
+ #: ../inc/taxonomies.php:123
1150
  msgid ""
1151
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1152
  msgstr ""
1153
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1154
  "kullanır."
1155
 
1156
+ #: ../inc/taxonomies.php:126
 
 
 
 
1157
  msgid "Attach to Post Type"
1158
  msgstr "Yazı Türüne ekle"
1159
 
1160
+ #: ../inc/taxonomies.php:165
1161
+ #, fuzzy
1162
+ msgid "Edit Taxonomy"
1163
+ msgstr "Dahili Sınıflandırmalar"
 
 
 
1164
 
1165
+ #: ../inc/taxonomies.php:166
1166
+ #, fuzzy
1167
+ msgid "Delete Taxonomy"
1168
+ msgstr "Özel Sınıflandırma Oluştur"
 
 
 
1169
 
1170
+ #: ../inc/taxonomies.php:168
1171
+ #, fuzzy
1172
+ msgid "Add Taxonomy"
1173
+ msgstr "Sınıflandırma Adı"
1174
 
1175
+ #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1176
+ #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1177
+ #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1178
+ #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1179
+ #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1180
+ #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1181
+ #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1182
+ #: ../inc/taxonomies.php:314
1183
+ #, fuzzy
1184
  msgid ""
1185
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1186
  msgstr ""
1187
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1188
  "menüsünde kullanılan."
1189
 
1190
+ #: ../inc/taxonomies.php:195
1191
+ msgid "(e.g. All Actors)"
1192
+ msgstr "(örneğin: Bütün Aktörler)"
1193
 
1194
+ #: ../inc/taxonomies.php:204
1195
+ msgid "(e.g. Edit Actor)"
1196
+ msgstr "(örneğin: Aktör Düzenle)"
1197
 
1198
+ #: ../inc/taxonomies.php:213
1199
+ #, fuzzy
1200
+ msgid "(e.g. View Actor)"
1201
+ msgstr "(örneğin: Aktör)"
1202
 
1203
+ #: ../inc/taxonomies.php:222
1204
+ #, fuzzy
1205
+ msgid "(e.g. Update Actor Name)"
1206
+ msgstr "(örneğin: Aktörü Güncelle)"
1207
 
1208
+ #: ../inc/taxonomies.php:223
1209
+ #, fuzzy
1210
+ msgid "Update Item Name"
1211
+ msgstr "Eleman Güncelle"
1212
 
1213
+ #: ../inc/taxonomies.php:231
1214
+ msgid "(e.g. Add New Actor)"
1215
+ msgstr "(örneğin: Yeni Aktör Ekle)"
1216
+
1217
+ #: ../inc/taxonomies.php:240
1218
+ msgid "(e.g. New Actor Name)"
1219
+ msgstr "(örneğin: Yeni Aktör Adı)"
1220
 
1221
+ #: ../inc/taxonomies.php:241
1222
+ msgid "New Item Name"
1223
+ msgstr "Yeni Eleman Adı"
1224
+
1225
+ #: ../inc/taxonomies.php:249
1226
  msgid "(e.g. Parent Actor)"
1227
  msgstr "(örneğin: Temel Aktör)"
1228
 
1229
+ #: ../inc/taxonomies.php:250
1230
+ msgid "Parent Item"
1231
+ msgstr "Temel Eleman"
1232
 
1233
+ #: ../inc/taxonomies.php:258
1234
  msgid "(e.g. Parent Actor:)"
1235
  msgstr "(örneğin: Temel Aktör:)"
1236
 
1237
+ #: ../inc/taxonomies.php:259
1238
+ msgid "Parent Item Colon"
1239
+ msgstr "Temel Eleman Kolon"
1240
 
1241
+ #: ../inc/taxonomies.php:267
1242
+ msgid "(e.g. Search Actors)"
1243
+ msgstr "(örneğin: Aktörleri Ara)"
1244
 
1245
+ #: ../inc/taxonomies.php:268
1246
+ msgid "Search Items"
1247
+ msgstr "Eleman Ara"
1248
 
1249
+ #: ../inc/taxonomies.php:276
1250
+ msgid "(e.g. Popular Actors)"
1251
+ msgstr "(örneğin: Popüler Aktörler)"
1252
 
1253
+ #: ../inc/taxonomies.php:277
1254
+ msgid "Popular Items"
1255
+ msgstr "Popüler Elemanlar"
1256
 
1257
+ #: ../inc/taxonomies.php:285
1258
+ msgid "(e.g. Separate actors with commas)"
1259
+ msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1260
 
1261
+ #: ../inc/taxonomies.php:286
1262
  msgid "Separate Items with Commas"
1263
  msgstr "Elemanları virgül ile ayır"
1264
 
1265
+ #: ../inc/taxonomies.php:294
1266
+ msgid "(e.g. Add or remove actors)"
1267
+ msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1268
 
1269
+ #: ../inc/taxonomies.php:295
1270
  msgid "Add or Remove Items"
1271
  msgstr "Elemanları Ekle veya Çıkar "
1272
 
1273
+ #: ../inc/taxonomies.php:303
1274
+ msgid "(e.g. Choose from the most used actors)"
1275
+ msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1276
 
1277
+ #: ../inc/taxonomies.php:304
1278
  msgid "Choose From Most Used"
1279
  msgstr "Çok Kullanılandan Seç"
1280
 
1281
+ #: ../inc/taxonomies.php:312
1282
+ #, fuzzy
1283
+ msgid "(e.g. No actors found)"
1284
+ msgstr "(örneğin: Filmler bulunamadı)"
1285
+
1286
+ #: ../inc/taxonomies.php:313
1287
+ #, fuzzy
1288
+ msgid "Not found"
1289
+ msgstr "Bulunamadı"
1290
 
1291
+ #: ../inc/taxonomies.php:336
1292
  msgid "Whether the taxonomy can have parent-child relationships"
1293
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1294
 
1295
+ #: ../inc/taxonomies.php:353
1296
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1297
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1298
 
1299
+ #: ../inc/taxonomies.php:377
1300
+ msgid "(default: none). Query Var needs to be true to use."
1301
+ msgstr ""
1302
+
1303
+ #: ../inc/taxonomies.php:378
1304
+ msgid "Custom Query Var String"
1305
+ msgstr ""
1306
+
1307
+ #: ../inc/taxonomies.php:379
1308
+ #, fuzzy
1309
+ msgid "Custom Query Var Slug"
1310
+ msgstr "Özel Rewrite Slug"
1311
+
1312
+ #: ../inc/taxonomies.php:395
1313
  msgid "Triggers the handling of rewrites for this taxonomy"
1314
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1315
 
1316
+ #: ../inc/taxonomies.php:403
1317
+ msgid "(default: taxonomy name)"
1318
+ msgstr "(varsayılan: sınıflandırma adı)"
1319
+
1320
+ #: ../inc/taxonomies.php:405
1321
  msgid "Custom Taxonomy Rewrite Slug"
1322
  msgstr "Özel Sınıflandırma Rewrite Slug"
1323
 
1324
+ #: ../inc/taxonomies.php:419
1325
+ #, fuzzy
1326
+ msgid "Rewrite With Front"
1327
+ msgstr "Cephesinden"
1328
+
1329
+ #: ../inc/taxonomies.php:420
1330
+ #, fuzzy
1331
+ msgid "(default: true)"
1332
+ msgstr "(varsayılan: Doğru)"
1333
 
1334
+ #: ../inc/taxonomies.php:436
1335
+ #, fuzzy
1336
+ msgid "Rewrite Hierarchical"
1337
+ msgstr "Hiyerarşik"
1338
+
1339
+ #: ../inc/taxonomies.php:437
1340
+ #, fuzzy
1341
+ msgid "(default: false)"
1342
+ msgstr "(varsayılan:Yanlış)"
1343
+
1344
+ #: ../inc/taxonomies.php:438
1345
+ #, fuzzy
1346
+ msgid "Should the permastruct allow hierarchical urls."
1347
+ msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1348
+
1349
+ #: ../inc/taxonomies.php:453
1350
  msgid "Show Admin Column"
1351
  msgstr "Yönetici Sütunu Göster"
1352
 
1353
+ #: ../inc/taxonomies.php:455
1354
  msgid ""
1355
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1356
  "types."
1357
  msgstr ""
1358
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1359
 
1360
+ #: ../inc/taxonomies.php:466
1361
+ #, fuzzy, php-format
1362
+ msgid ""
1363
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1364
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1365
+ "letters that do not have accents."
1366
+ msgstr ""
1367
+ "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1368
+ "boşluk yerine alt çizgi olmalıdır."
1369
 
1370
+ #: ../inc/taxonomies.php:467
1371
+ #, fuzzy, php-format
1372
+ msgid ""
1373
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1374
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1375
+ "settings will use default values. Labels, if left blank, will be "
1376
+ "automatically created based on the taxonomy name. Hover over the question "
1377
+ "marks for more details."
1378
+ msgstr ""
1379
+ "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1380
+ "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1381
+
1382
+ #: ../inc/taxonomies.php:468
1383
+ #, fuzzy, php-format
1384
+ msgid ""
1385
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1386
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1387
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1388
+ "terms in the database."
1389
+ msgstr ""
1390
+ "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1391
+ "içerikleri kalacaktır."
1392
+
1393
+ #: ../inc/taxonomies.php:556
1394
+ msgid "Please provide a taxonomy to delete"
1395
+ msgstr ""
1396
+
1397
+ #: ../inc/taxonomies.php:607
1398
+ #, fuzzy
1399
+ msgid "Please provide a taxonomy name"
1400
+ msgstr "(varsayılan: sınıflandırma adı)"
1401
+
1402
+ #: ../inc/taxonomies.php:623
1403
+ #, fuzzy
1404
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1405
+ msgstr ""
1406
+ "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1407
+ "kullanmayınız."
1408
+
1409
+ #: ../inc/taxonomies.php:629
1410
+ #, php-format
1411
+ msgid "Please choose a different taxonomy name. %s is already used."
1412
+ msgstr ""
1413
+
1414
+ #~ msgid "version"
1415
+ #~ msgstr "versiyon"
1416
+
1417
+ #~ msgid "Frequently Asked Questions"
1418
+ #~ msgstr "Sıkça sorulan sorular"
1419
+
1420
+ #~ msgid "A: Justin Tadlock has written some great posts on the topic:"
1421
+ #~ msgstr "C: Justin Tadlock konu hakkında bazı makaleler hazırlamıştır:"
1422
+
1423
+ #~ msgid "Showing Custom Post Types on your Home Page"
1424
+ #~ msgstr "Ana Sayfada Özel Yazı Türleri gösteriliyor"
1425
+
1426
+ #~ msgid "Custom Post Types in WordPress"
1427
+ #~ msgstr "WordPress Özel Yazı Türleri"
1428
+
1429
+ #~ msgid ""
1430
+ #~ "A: The More Fields plugin does a great job at creating custom meta boxes "
1431
+ #~ "and fully supports custom post types: "
1432
+ #~ msgstr ""
1433
+ #~ "A: Alanlar eklentisi özel meta kutuları oluşturarak iş yapar ve tamamen "
1434
+ #~ "bütün oluşturulan türleri destekler:"
1435
+
1436
+ #~ msgid "WebDevStudios.com Recent News"
1437
+ #~ msgstr "WebDevStudios.com Son Haberler"
1438
+
1439
+ #~ msgid "WebDevStudios.com News"
1440
+ #~ msgstr "WebDevStudios.com Haberler"
1441
+
1442
+ #~ msgid "Custom post type deleted successfully"
1443
+ #~ msgstr "Özel Yazı Türü başarıyla silindi"
1444
+
1445
+ #~ msgid "Manage Custom Post Types"
1446
+ #~ msgstr "Özel Yazı Türlerini Yönet"
1447
+
1448
+ #~ msgid "Action"
1449
+ #~ msgstr "Eylem"
1450
+
1451
+ #~ msgid "Name"
1452
+ #~ msgstr "İsim"
1453
+
1454
+ #~ msgid "Rewrite Slug"
1455
+ #~ msgstr "Rewrite Slug"
1456
+
1457
+ #~ msgid "Total Published"
1458
+ #~ msgstr "Yayınlanan Toplamı"
1459
+
1460
+ #~ msgid "Total Drafts"
1461
+ #~ msgstr "Taslaklar Toplamı"
1462
+
1463
+ #~ msgid "Delete"
1464
+ #~ msgstr "Sil"
1465
+
1466
+ #~ msgid ""
1467
+ #~ "Place the below code in your themes functions.php file to manually create "
1468
+ #~ "this custom post type."
1469
+ #~ msgstr ""
1470
+ #~ "El ile bu özel yazı alanı oluşturmak için functions.php dosyasına "
1471
+ #~ "aşağıdaki kodu yerleştirin."
1472
+
1473
+ #~ msgid ""
1474
+ #~ "This is a <strong>BETA</strong> feature. Please <a href=\"https://github."
1475
+ #~ "com/WebDevStudios/custom-post-type-ui\">report bugs</a>."
1476
+ #~ msgstr ""
1477
+ #~ "Bu<strong> BETA</strong> özelliğidir. Lütfen <a href=\"https://github.com/"
1478
+ #~ "WebDevStudios/custom-post tipi-ui\"> hata raporu </a>"
1479
+
1480
+ #~ msgid "Additional Custom Post Types"
1481
+ #~ msgstr "Ek Özel Yazı Türleri"
1482
+
1483
+ #~ msgid ""
1484
+ #~ "The custom post types below are registered in WordPress but were not "
1485
+ #~ "created by the Custom Post Type UI Plugin."
1486
+ #~ msgstr ""
1487
+ #~ "Özel yazı türleri kayıtlı ancak, Özel Post Tür KA Eklentisi tarafından "
1488
+ #~ "oluşturulmamış."
1489
+
1490
+ #~ msgid "No additional post types found"
1491
+ #~ msgstr "Hiçbir ek yazı türleri bulunamadı"
1492
+
1493
+ #~ msgid "Custom taxonomy deleted successfully"
1494
+ #~ msgstr "Özel sınıflandırma başarıyla silindi"
1495
+
1496
+ #~ msgid "Manage Custom Taxonomies"
1497
+ #~ msgstr "Özel Sınıflandırmayı Yönet"
1498
+
1499
+ #~ msgid ""
1500
+ #~ "Place the below code in your themes functions.php file to manually create "
1501
+ #~ "this custom taxonomy"
1502
+ #~ msgstr ""
1503
+ #~ "El ile bu özel sınıflandırma oluşturmak için functions.php dosyasına "
1504
+ #~ "aşağıdaki kodu yerleştirin"
1505
+
1506
+ #~ msgid ""
1507
+ #~ "This is a <strong>BETA</strong> feature. Please <a href=\"http://"
1508
+ #~ "webdevstudios.com/support/forum/custom-post-type-ui/\">report bugs</a>."
1509
+ #~ msgstr ""
1510
+ #~ "Bu<strong> BETA</strong> özelliğidir. Lütfen <a href=\"http://"
1511
+ #~ "webdevstudios.com/support/forum/custom-post-type-ui/\"> hata raporu </a>"
1512
+
1513
+ #~ msgid "Save Custom Post Type"
1514
+ #~ msgstr "Özel Yazı Türü Kaydet"
1515
+
1516
+ #~ msgid "Create Custom Post Type"
1517
+ #~ msgstr "Özel Yazı Türü Oluştur"
1518
+
1519
+ #~ msgid "Save Custom Taxonomy"
1520
+ #~ msgstr "Özel Sınıflandırma Kaydet"
1521
+
1522
+ #~ msgid ""
1523
+ #~ "Custom post type created successfully. You may need to refresh to view "
1524
+ #~ "the new post type in the admin menu."
1525
+ #~ msgstr ""
1526
+ #~ "Özel yazı türü başarıyla oluşturuldu. Yönetici menüsünde okunmamış yazı "
1527
+ #~ "türünü görüntülemek için sayfayı yenilemeniz gerekebilir."
1528
+
1529
+ #~ msgid "Manage custom post types"
1530
+ #~ msgstr "Özel yazı türlerini yönetin"
1531
+
1532
+ #~ msgid ""
1533
+ #~ "Custom taxonomy created successfully. You may need to refresh to view "
1534
+ #~ "the new taxonomy in the admin menu."
1535
+ #~ msgstr ""
1536
+ #~ "Özel sınıflandırma başarıyla oluşturuldu. Yönetici menüsünde yeni "
1537
+ #~ "sınıflandırmayı görüntülemek için sayfayı yenilemeniz gerekebilir."
1538
+
1539
+ #~ msgid "Manage custom taxonomies"
1540
+ #~ msgstr "Özel sınıflandırmaları yönet"
1541
+
1542
+ #~ msgid "Post type name is a required field."
1543
+ #~ msgstr "Yazı türü adı doldurulması zorunlu bir alandır."
1544
+
1545
+ #~ msgid "Taxonomy name is a required field."
1546
+ #~ msgstr "Sınıflandırma adı doldurulması zorunlu bir alandır."
1547
+
1548
+ #~ msgid "You must assign your custom taxonomy to at least one post type."
1549
+ #~ msgstr "En az bir yazı türüne özel sınıflandırma atamanız gerekir."
1550
+
1551
+ #~ msgid "Reset"
1552
+ #~ msgstr "Sıfırla"
1553
+
1554
+ #~ msgid "Create New Custom Post Type or Taxonomy"
1555
+ #~ msgstr "Yeni Özel Yazı Türü veya Sınıflandırma Oluştur"
1556
+
1557
+ #~ msgid "Advanced Label Options"
1558
+ #~ msgstr "Gelişmiş Etiket Ayarları"
1559
+
1560
+ #~ msgid ""
1561
+ #~ "Below are the advanced label options for custom post types. If you are "
1562
+ #~ "unfamiliar with these labels, leave them blank and the plugin will "
1563
+ #~ "automatically create labels based off of your custom post type name"
1564
+ #~ msgstr ""
1565
+ #~ "Aşağıda özel yazı türleri için gelişmiş etiket seçenekleri vardır. Eğer "
1566
+ #~ "bunlara kullanmayı bilmiyorsanız boş bırakın. Eklenti sizin için otomatik "
1567
+ #~ "olarak özel yazı türü adının varsayılan ayarlarıyla oluşturulacak."
1568
+
1569
+ #~ msgid ""
1570
+ #~ "Note: Changing the name, after adding terms to the taxonomy, will not "
1571
+ #~ "update the terms in the database."
1572
+ #~ msgstr ""
1573
+ #~ "Not: Sınıflandırma terimleri ekledikten sonra, adının değiştirilmesi, "
1574
+ #~ "veritabanında koşullarını güncelleme yapılmayacak."
1575
+
1576
+ #~ msgid ""
1577
+ #~ "What post type object to attach the custom taxonomy to. Can be post, "
1578
+ #~ "page, or link by default. Can also be any custom post type name."
1579
+ #~ msgstr ""
1580
+ #~ "Yazı türü nesnesi için özel sınıflandırma oluşturmak için. Sayfa veya "
1581
+ #~ "link varsayılan olabilir. Ayrıca herhangi bir özel yazı türü adı olabilir."
1582
+
1583
+ #~ msgid ""
1584
+ #~ "This is the old method. Delete the post type from the textbox and check "
1585
+ #~ "which post type to attach this taxonomy to</strong>"
1586
+ #~ msgstr ""
1587
+ #~ "Bu, eski bir yöntemdir. Metin kutusu sonrası türünü silmek ve bu "
1588
+ #~ "sınıflandırma eklemek sonrası hangi tip onay"
1589
+
1590
+ #~ msgid "(e.g. movies)"
1591
+ #~ msgstr "(örneğin: filmler)"
1592
+
1593
+ #~ msgid ""
1594
+ #~ "Below are the advanced label options for custom taxonomies. If you are "
1595
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
1596
+ #~ "based off of your custom taxonomy name"
1597
+ #~ msgstr ""
1598
+ #~ "Aşağıda özel sınıflandırmalar için gelişmiş etiket seçenekleri vardır. "
1599
+ #~ "Eğer bu etiket ile aşina değilseniz eklenti otomatik olarak özel "
1600
+ #~ "sınıflandırma adının kapalıya dayalı etiketlerini oluşturacak."
languages/cpt-plugin-zh_CN.mo CHANGED
Binary file
languages/cpt-plugin-zh_CN.po CHANGED
@@ -2,490 +2,1454 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-06-30 12:19-0500\n"
6
- "PO-Revision-Date: 2010-07-01 13:49+0800\n"
7
- "Last-Translator: Dreamcolor <dreamcolor@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: \n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
- "X-Poedit-Language: Chinese\n"
15
- "X-Poedit-Country: China\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
 
17
 
18
- #: C:\WDS\Project
19
- #: Files\Plugins\Custom Post Type
20
- #: UI\trunk/custom-post-type-ui.php:420
21
- msgid "Custom Post Types UI"
22
  msgstr "Custom Post Types UI"
23
 
24
- #: C:\WDS\Project
25
- #: Files\Plugins\Custom Post Type
26
- #: UI\trunk/custom-post-type-ui.php:421
27
- msgid "Plugin version"
28
- msgstr "插件版本"
29
-
30
- #: C:\WDS\Project
31
- #: Files\Plugins\Custom Post Type
32
- #: UI\trunk/custom-post-type-ui.php:422
33
- msgid "WordPress version"
34
- msgstr "WordPress 版本"
35
-
36
- #: C:\WDS\Project
37
- #: Files\Plugins\Custom Post Type
38
- #: UI\trunk/custom-post-type-ui.php:423
39
- msgid "Slightly Outdated Demo Video"
40
- msgstr "早期制作的演示视频"
41
-
42
- #: C:\WDS\Project
43
- #: Files\Plugins\Custom Post Type
44
- #: UI\trunk/custom-post-type-ui.php:445
45
- msgid "Custom post type deleted successfully"
46
- msgstr "自定义文章类型被成功删除"
47
-
48
- #: C:\WDS\Project
49
- #: Files\Plugins\Custom Post Type
50
- #: UI\trunk/custom-post-type-ui.php:450
51
- msgid "Manage Custom Post Types"
52
- msgstr "管理自定义文章类型"
53
-
54
- #: C:\WDS\Project
55
- #: Files\Plugins\Custom Post Type
56
- #: UI\trunk/custom-post-type-ui.php:451
57
- msgid "Deleting custom post types does <strong>NOT</strong> delete any content added to those post types. You can easily recreate your post types and the content will still exist."
58
- msgstr "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
59
-
60
- #: C:\WDS\Project
61
- #: Files\Plugins\Custom Post Type
62
- #: UI\trunk/custom-post-type-ui.php:458
63
- #: UI\trunk/custom-post-type-ui.php:670
64
- msgid "Action"
65
- msgstr "操作"
66
-
67
- #: C:\WDS\Project
68
- #: Files\Plugins\Custom Post Type
69
- #: UI\trunk/custom-post-type-ui.php:459
70
- #: UI\trunk/custom-post-type-ui.php:592
71
- #: UI\trunk/custom-post-type-ui.php:671
72
- msgid "Name"
73
- msgstr "名称"
74
 
75
- #: C:\WDS\Project
76
- #: Files\Plugins\Custom Post Type
77
- #: UI\trunk/custom-post-type-ui.php:460
78
- #: UI\trunk/custom-post-type-ui.php:593
79
- #: UI\trunk/custom-post-type-ui.php:672
80
- #: UI\trunk/custom-post-type-ui.php:896
81
- #: UI\trunk/custom-post-type-ui.php:1113
82
- msgid "Label"
83
- msgstr "标签"
84
 
85
- #: C:\WDS\Project
86
- #: Files\Plugins\Custom Post Type
87
- #: UI\trunk/custom-post-type-ui.php:461
88
- #: UI\trunk/custom-post-type-ui.php:595
89
- #: UI\trunk/custom-post-type-ui.php:981
90
- msgid "Public"
91
- msgstr "公开"
92
 
93
- #: C:\WDS\Project
94
- #: Files\Plugins\Custom Post Type
95
- #: UI\trunk/custom-post-type-ui.php:462
96
- #: UI\trunk/custom-post-type-ui.php:596
97
- #: UI\trunk/custom-post-type-ui.php:676
98
- #: UI\trunk/custom-post-type-ui.php:991
99
- #: UI\trunk/custom-post-type-ui.php:1231
100
- msgid "Show UI"
101
- msgstr "显示用户界面"
102
 
103
- #: C:\WDS\Project
104
- #: Files\Plugins\Custom Post Type
105
- #: UI\trunk/custom-post-type-ui.php:463
106
- #: UI\trunk/custom-post-type-ui.php:598
107
- #: UI\trunk/custom-post-type-ui.php:675
108
- #: UI\trunk/custom-post-type-ui.php:1006
109
- #: UI\trunk/custom-post-type-ui.php:1221
110
- msgid "Hierarchical"
111
- msgstr "层级"
112
 
113
- #: C:\WDS\Project
114
- #: Files\Plugins\Custom Post Type
115
- #: UI\trunk/custom-post-type-ui.php:464
116
- #: UI\trunk/custom-post-type-ui.php:599
117
- #: UI\trunk/custom-post-type-ui.php:677
118
- #: UI\trunk/custom-post-type-ui.php:1016
119
- #: UI\trunk/custom-post-type-ui.php:1251
120
- msgid "Rewrite"
121
- msgstr "重写"
122
 
123
- #: C:\WDS\Project
124
- #: Files\Plugins\Custom Post Type
125
- #: UI\trunk/custom-post-type-ui.php:465
126
- #: UI\trunk/custom-post-type-ui.php:600
127
- #: UI\trunk/custom-post-type-ui.php:678
128
- msgid "Rewrite Slug"
129
- msgstr "重写缩略名"
130
-
131
- #: C:\WDS\Project
132
- #: Files\Plugins\Custom Post Type
133
- #: UI\trunk/custom-post-type-ui.php:466
134
- msgid "Total Published"
135
- msgstr "已发布总数"
136
-
137
- #: C:\WDS\Project
138
- #: Files\Plugins\Custom Post Type
139
- #: UI\trunk/custom-post-type-ui.php:467
140
- msgid "Total Drafts"
141
- msgstr "草稿总数"
142
-
143
- #: C:\WDS\Project
144
- #: Files\Plugins\Custom Post Type
145
- #: UI\trunk/custom-post-type-ui.php:468
146
- #: UI\trunk/custom-post-type-ui.php:1046
147
- msgid "Supports"
148
  msgstr "支持"
149
 
150
- #: C:\WDS\Project
151
- #: Files\Plugins\Custom Post Type
152
- #: UI\trunk/custom-post-type-ui.php:572
153
- msgid "Place the below code in your themes functions.php file to manually create this custom post type"
154
- msgstr "请将下面的代码放入您主题的 functions.php 文件中,用来手动创建自定义文章类型"
155
 
156
- #: C:\WDS\Project
157
- #: Files\Plugins\Custom Post Type
158
- #: UI\trunk/custom-post-type-ui.php:588
159
- msgid "Additional Custom Post Types"
160
- msgstr "其它自定义文章类型"
161
 
162
- #: C:\WDS\Project
163
- #: Files\Plugins\Custom Post Type
164
- #: UI\trunk/custom-post-type-ui.php:589
165
- msgid "The custom post types below are registered in WordPress but were not created by the Custom Post Type UI Plugin."
166
- msgstr "以下自定义文章类别已在 WordPress 中注册,但是它们并不是由 Custom Post Type UI 插件创建的。"
167
-
168
- #: C:\WDS\Project
169
- #: Files\Plugins\Custom Post Type
170
- #: UI\trunk/custom-post-type-ui.php:594
171
- #: UI\trunk/custom-post-type-ui.php:673
172
- #: UI\trunk/custom-post-type-ui.php:901
173
- #: UI\trunk/custom-post-type-ui.php:1118
174
- msgid "Singular Label"
175
- msgstr "单数标签"
176
 
177
- #: C:\WDS\Project
178
- #: Files\Plugins\Custom Post Type
179
- #: UI\trunk/custom-post-type-ui.php:597
180
- #: UI\trunk/custom-post-type-ui.php:1001
181
- msgid "Capability Type"
182
- msgstr "权限类型"
183
 
184
- #: C:\WDS\Project
185
- #: Files\Plugins\Custom Post Type
186
- #: UI\trunk/custom-post-type-ui.php:601
187
- #: UI\trunk/custom-post-type-ui.php:1031
188
- #: UI\trunk/custom-post-type-ui.php:1241
189
- msgid "Query Var"
190
- msgstr "查询变量"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
- #: C:\WDS\Project
193
- #: Files\Plugins\Custom Post Type
194
- #: UI\trunk/custom-post-type-ui.php:656
195
- msgid "Custom taxonomy deleted successfully"
196
- msgstr "自定义类别被成功删除"
197
 
198
- #: C:\WDS\Project
199
- #: Files\Plugins\Custom Post Type
200
- #: UI\trunk/custom-post-type-ui.php:661
201
- msgid "Manage Custom Taxonomies"
202
  msgstr "管理自定义类别"
203
 
204
- #: C:\WDS\Project
205
- #: Files\Plugins\Custom Post Type
206
- #: UI\trunk/custom-post-type-ui.php:662
207
- msgid "Deleting custom taxonomies does <strong>NOT</strong> delete any content added to those taxonomies. You can easily recreate your taxonomies and the content will still exist."
208
- msgstr "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单的重新创建您的类别,并且这些内容依旧存在。"
209
 
210
- #: C:\WDS\Project
211
- #: Files\Plugins\Custom Post Type
212
- #: UI\trunk/custom-post-type-ui.php:674
213
- msgid "Attached Post Types"
214
- msgstr "已附属文章类型"
215
 
216
- #: C:\WDS\Project
217
- #: Files\Plugins\Custom Post Type
218
- #: UI\trunk/custom-post-type-ui.php:749
219
- msgid "Place the below code in your themes functions.php file to manually create this custom taxonomy"
220
- msgstr "请将下面的代码放入您主题的 functions.php 文件中,用来手动创建自定义类别"
221
-
222
- #: C:\WDS\Project
223
- #: Files\Plugins\Custom Post Type
224
- #: UI\trunk/custom-post-type-ui.php:850
225
- msgid "Custom post type created successfully. You may need to refresh to view the new post type."
226
- msgstr "自定义文章类型创建成功。您需要刷新才能查看到新文章类型。"
227
-
228
- #: C:\WDS\Project
229
- #: Files\Plugins\Custom Post Type
230
- #: UI\trunk/custom-post-type-ui.php:855
231
- msgid "Custom taxonomy created successfully. You may need to refresh to view the new taxonomy."
232
- msgstr "自定义类别创建成功。您需要刷新才能查看到新类别。"
233
-
234
- #: C:\WDS\Project
235
- #: Files\Plugins\Custom Post Type
236
- #: UI\trunk/custom-post-type-ui.php:861
237
- msgid "Post type name is a required field."
238
- msgstr "日志类型名称区域必须填写。"
239
-
240
- #: C:\WDS\Project
241
- #: Files\Plugins\Custom Post Type
242
- #: UI\trunk/custom-post-type-ui.php:865
243
- msgid "Taxonomy name is a required field."
244
- msgstr "类别名称区域必须填写。"
245
-
246
- #: C:\WDS\Project
247
- #: Files\Plugins\Custom Post Type
248
- #: UI\trunk/custom-post-type-ui.php:869
249
- msgid "You must assign your custom taxonomy to at least one post type."
250
- msgstr "您必须为您的自定义类别分配至少一个文章类型。"
251
-
252
- #: C:\WDS\Project
253
- #: Files\Plugins\Custom Post Type
254
- #: UI\trunk/custom-post-type-ui.php:878
255
- msgid "Edit Custom Post Type"
256
  msgstr "编辑自定义文章类型"
257
 
258
- #: C:\WDS\Project
259
- #: Files\Plugins\Custom Post Type
260
- #: UI\trunk/custom-post-type-ui.php:878
261
- #: UI\trunk/custom-post-type-ui.php:880
262
- #: UI\trunk/custom-post-type-ui.php:1095
263
- #: UI\trunk/custom-post-type-ui.php:1097
264
- msgid "Reset"
265
- msgstr "复位"
266
-
267
- #: C:\WDS\Project
268
- #: Files\Plugins\Custom Post Type
269
- #: UI\trunk/custom-post-type-ui.php:880
270
- msgid "Create New Custom Post Type"
271
- msgstr "创建新自定义文章类型"
272
-
273
- #: C:\WDS\Project
274
- #: Files\Plugins\Custom Post Type
275
- #: UI\trunk/custom-post-type-ui.php:882
276
- msgid "If you are unfamiliar with the options below only fill out the <strong>Post Type Name</strong> and <strong>Label</strong> fields and check which meta boxes to support. The other settings are set to the most common defaults for custom post types."
277
- msgstr "如果您对下面的选项感到陌生,那么您只需要填写<strong>文章类型名称</strong>和<strong>标签</strong>区域并查看一下支持哪些信息即可。其它的设置将被设置为自定义文章类型最常用的默认值。"
278
-
279
- #: C:\WDS\Project
280
- #: Files\Plugins\Custom Post Type
281
- #: UI\trunk/custom-post-type-ui.php:891
282
- msgid "Post Type Name"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  msgstr "文章类型名称"
284
 
285
- #: C:\WDS\Project
286
- #: Files\Plugins\Custom Post Type
287
- #: UI\trunk/custom-post-type-ui.php:906
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  msgid "Description"
289
  msgstr "描述"
290
 
291
- #: C:\WDS\Project
292
- #: Files\Plugins\Custom Post Type
293
- #: UI\trunk/custom-post-type-ui.php:911
294
- #: UI\trunk/custom-post-type-ui.php:1147
295
- msgid "View Advanced Label Options"
296
- msgstr "查看标签高级选项"
297
-
298
- #: C:\WDS\Project
299
- #: Files\Plugins\Custom Post Type
300
- #: UI\trunk/custom-post-type-ui.php:912
301
- #: UI\trunk/custom-post-type-ui.php:1148
302
- msgid "View Advanced Options"
303
- msgstr "查看高级选项"
304
-
305
- #: C:\WDS\Project
306
- #: Files\Plugins\Custom Post Type
307
- #: UI\trunk/custom-post-type-ui.php:918
308
- msgid "Below are the advanced label options for custom post types. If you are unfamiliar with these labels the plugin will automatically create labels based off of your custom post type name"
309
- msgstr "下面是自定义文章类型的标签高级选项。如果您对这些标签感到陌生,插件将自动根据您的自定义文章类型名称为您创建标签"
310
-
311
- #: C:\WDS\Project
312
- #: Files\Plugins\Custom Post Type
313
- #: UI\trunk/custom-post-type-ui.php:921
314
- msgid "Add New"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgstr "添加"
316
 
317
- #: C:\WDS\Project
318
- #: Files\Plugins\Custom Post Type
319
- #: UI\trunk/custom-post-type-ui.php:926
320
- #: UI\trunk/custom-post-type-ui.php:1192
321
  msgid "Add New Item"
322
  msgstr "添加新条目"
323
 
324
- #: C:\WDS\Project
325
- #: Files\Plugins\Custom Post Type
326
- #: UI\trunk/custom-post-type-ui.php:931
 
 
327
  msgid "Edit"
328
  msgstr "编辑"
329
 
330
- #: C:\WDS\Project
331
- #: Files\Plugins\Custom Post Type
332
- #: UI\trunk/custom-post-type-ui.php:936
333
- #: UI\trunk/custom-post-type-ui.php:1182
 
334
  msgid "Edit Item"
335
  msgstr "编辑条目"
336
 
337
- #: C:\WDS\Project
338
- #: Files\Plugins\Custom Post Type
339
- #: UI\trunk/custom-post-type-ui.php:941
 
 
340
  msgid "New Item"
341
  msgstr "新条目"
342
 
343
- #: C:\WDS\Project
344
- #: Files\Plugins\Custom Post Type
345
- #: UI\trunk/custom-post-type-ui.php:946
 
 
 
346
  msgid "View"
347
  msgstr "查看"
348
 
349
- #: C:\WDS\Project
350
- #: Files\Plugins\Custom Post Type
351
- #: UI\trunk/custom-post-type-ui.php:951
 
 
352
  msgid "View Item"
353
  msgstr "查看条目"
354
 
355
- #: C:\WDS\Project
356
- #: Files\Plugins\Custom Post Type
357
- #: UI\trunk/custom-post-type-ui.php:956
358
- #: UI\trunk/custom-post-type-ui.php:1157
359
- msgid "Search Items"
 
 
360
  msgstr "搜索条目"
361
 
362
- #: C:\WDS\Project
363
- #: Files\Plugins\Custom Post Type
364
- #: UI\trunk/custom-post-type-ui.php:961
 
 
365
  msgid "Not Found"
366
  msgstr "未找到"
367
 
368
- #: C:\WDS\Project
369
- #: Files\Plugins\Custom Post Type
370
- #: UI\trunk/custom-post-type-ui.php:966
 
 
371
  msgid "Not Found in Trash"
372
  msgstr "在回收站中没有找到"
373
 
374
- #: C:\WDS\Project
375
- #: Files\Plugins\Custom Post Type
376
- #: UI\trunk/custom-post-type-ui.php:971
 
 
 
377
  msgid "Parent"
378
  msgstr "上级"
379
 
380
- #: C:\WDS\Project
381
- #: Files\Plugins\Custom Post Type
382
- #: UI\trunk/custom-post-type-ui.php:1026
383
- #: UI\trunk/custom-post-type-ui.php:1261
384
- msgid "Custom Rewrite Slug"
385
- msgstr "自定义重写缩略名"
386
 
387
- #: C:\WDS\Project
388
- #: Files\Plugins\Custom Post Type
389
- #: UI\trunk/custom-post-type-ui.php:1041
390
- msgid "Menu Position"
391
- msgstr "菜单位置"
 
 
 
 
 
 
 
 
 
392
 
393
- #: C:\WDS\Project
394
- #: Files\Plugins\Custom Post Type
395
- #: UI\trunk/custom-post-type-ui.php:1062
396
- msgid "Built-in Taxonomies"
397
- msgstr "内置类别"
 
 
 
 
 
 
 
 
 
398
 
399
- #: C:\WDS\Project
400
- #: Files\Plugins\Custom Post Type
401
- #: UI\trunk/custom-post-type-ui.php:1095
402
- msgid "Edit Custom Taxonomy"
403
- msgstr "编辑自定义类别"
 
404
 
405
- #: C:\WDS\Project
406
- #: Files\Plugins\Custom Post Type
407
- #: UI\trunk/custom-post-type-ui.php:1097
408
- msgid "Create Custom Taxonomy"
409
- msgstr "创建自定义类别"
 
 
 
 
 
410
 
411
- #: C:\WDS\Project
412
- #: Files\Plugins\Custom Post Type
413
- #: UI\trunk/custom-post-type-ui.php:1099
414
- msgid "If you are unfamiliar with the options below only fill out the <strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> fields. The other settings are set to the most common defaults for custom taxonomies."
415
- msgstr "如果您对下面的选项感到陌生,那么您只需要填写<strong>类别名称</strong>和<strong>文章类型名称</strong>区域即可。其它的设置将被设置为自定义类别最常用的默认值。"
 
416
 
417
- #: C:\WDS\Project
418
- #: Files\Plugins\Custom Post Type
419
- #: UI\trunk/custom-post-type-ui.php:1108
420
- msgid "Taxonomy Name"
421
- msgstr "类别名称"
422
 
423
- #: C:\WDS\Project
424
- #: Files\Plugins\Custom Post Type
425
- #: UI\trunk/custom-post-type-ui.php:1123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  msgid "Attach to Post Type"
427
  msgstr "附属到文章类型"
428
 
429
- #: C:\WDS\Project
430
- #: Files\Plugins\Custom Post Type
431
- #: UI\trunk/custom-post-type-ui.php:1154
432
- msgid "Below are the advanced label options for custom taxonomies. If you are unfamiliar with these labels the plugin will automatically create labels based off of your custom taxonomy name"
433
- msgstr "下面是自定义类别的标签高级选项。如果您对这些标签感到陌生,插件将自动根据您的自定义类别名称为您创建标签"
434
 
435
- #: C:\WDS\Project
436
- #: Files\Plugins\Custom Post Type
437
- #: UI\trunk/custom-post-type-ui.php:1162
438
- msgid "Popular Items"
439
- msgstr "热门条目"
440
 
441
- #: C:\WDS\Project
442
- #: Files\Plugins\Custom Post Type
443
- #: UI\trunk/custom-post-type-ui.php:1167
444
- msgid "All Items"
445
- msgstr "所有条目"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
 
447
- #: C:\WDS\Project
448
- #: Files\Plugins\Custom Post Type
449
- #: UI\trunk/custom-post-type-ui.php:1172
 
 
 
 
 
 
450
  msgid "Parent Item"
451
  msgstr "上级条目"
452
 
453
- #: C:\WDS\Project
454
- #: Files\Plugins\Custom Post Type
455
- #: UI\trunk/custom-post-type-ui.php:1177
 
 
456
  msgid "Parent Item Colon"
457
  msgstr "上级条目:"
458
 
459
- #: C:\WDS\Project
460
- #: Files\Plugins\Custom Post Type
461
- #: UI\trunk/custom-post-type-ui.php:1187
462
- msgid "Update Item"
463
- msgstr "更新条目"
464
 
465
- #: C:\WDS\Project
466
- #: Files\Plugins\Custom Post Type
467
- #: UI\trunk/custom-post-type-ui.php:1197
468
- msgid "New Item Name"
469
- msgstr "新条目名称"
 
 
 
 
 
 
 
 
 
 
 
470
 
471
- #: C:\WDS\Project
472
- #: Files\Plugins\Custom Post Type
473
- #: UI\trunk/custom-post-type-ui.php:1202
474
  msgid "Separate Items with Commas"
475
  msgstr "使用英文逗号隔开多个标签条目"
476
 
477
- #: C:\WDS\Project
478
- #: Files\Plugins\Custom Post Type
479
- #: UI\trunk/custom-post-type-ui.php:1207
 
 
 
480
  msgid "Add or Remove Items"
481
  msgstr "添加或删除条目"
482
 
483
- #: C:\WDS\Project
484
- #: Files\Plugins\Custom Post Type
485
- #: UI\trunk/custom-post-type-ui.php:1212
 
 
 
486
  msgid "Choose From Most Used"
487
  msgstr "使用次数最多"
488
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
489
  #, fuzzy
490
  #~ msgid "Custom post type created successfully"
491
  #~ msgstr "新自定义文章类型已被添加。"
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-02-11 21:09-0600\n"
6
+ "PO-Revision-Date: 2015-02-11 21:09-0600\n"
7
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
+ "Language: zh\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: \n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.7.4\n"
17
 
18
+ #: ../custom-post-type-ui.php:57
19
+ #, fuzzy
20
+ msgid "Custom Post Types"
 
21
  msgstr "Custom Post Types UI"
22
 
23
+ #: ../custom-post-type-ui.php:57
24
+ msgid "CPT UI"
25
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
+ #, fuzzy
29
+ msgid "Custom Post Type UI"
30
+ msgstr "附属到文章类型"
 
 
 
 
 
31
 
32
+ #: ../custom-post-type-ui.php:323
33
+ msgid ""
34
+ "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
+ "with our plugin provides efficiency and speed in creating post types and "
36
+ "taxonomies, to better organize your content, without having to touch code."
37
+ msgstr ""
 
38
 
39
+ #: ../custom-post-type-ui.php:325
40
+ #, php-format
41
+ msgid ""
42
+ "To get started with creating some post types, please visit %s and for "
43
+ "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
44
+ "there fits your issue, visit our %s and we will try to get to your question "
45
+ "as soon as possible."
46
+ msgstr ""
 
47
 
48
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
49
+ #, fuzzy
50
+ msgid "Add/Edit Post Types"
51
+ msgstr "编辑自定义文章类型"
 
 
 
 
 
52
 
53
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
54
+ #, fuzzy
55
+ msgid "Add/Edit Taxonomies"
56
+ msgstr "内置类别"
 
 
 
 
 
57
 
58
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:23
59
+ #, fuzzy
60
+ msgid "Help/Support"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  msgstr "支持"
62
 
63
+ #: ../custom-post-type-ui.php:329
64
+ msgid "CPT UI Support Forum"
65
+ msgstr ""
 
 
66
 
67
+ #: ../custom-post-type-ui.php:345
68
+ msgid "Help Support This Plugin!"
69
+ msgstr ""
 
 
70
 
71
+ #: ../custom-post-type-ui.php:349
72
+ msgid "Professional WordPress<br />Third Edition"
73
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
74
 
75
+ #: ../custom-post-type-ui.php:354
76
+ msgid ""
77
+ "The leading book on WordPress design and development! Brand new third "
78
+ "edition!"
79
+ msgstr ""
 
80
 
81
+ #: ../custom-post-type-ui.php:357
82
+ msgid "Professional WordPress<br />Plugin Development"
83
+ msgstr ""
84
+
85
+ #: ../custom-post-type-ui.php:362
86
+ msgid "Highest rated WordPress development book on Amazon!"
87
+ msgstr ""
88
+
89
+ #: ../custom-post-type-ui.php:365
90
+ msgid "PayPal Donation"
91
+ msgstr ""
92
+
93
+ #: ../custom-post-type-ui.php:366
94
+ msgid "Please donate to the development of Custom Post Type UI:"
95
+ msgstr ""
96
+
97
+ #: ../custom-post-type-ui.php:370
98
+ msgid "PayPal - The safer, easier way to pay online!"
99
+ msgstr ""
100
+
101
+ #: ../custom-post-type-ui.php:407
102
+ #, php-format
103
+ msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
+ msgstr ""
105
+
106
+ #: ../custom-post-type-ui.php:416
107
+ msgid "Please Report Bugs"
108
+ msgstr ""
109
+
110
+ #: ../custom-post-type-ui.php:418
111
+ msgid "Follow on Twitter:"
112
+ msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
115
+ msgid "Import/Export"
116
+ msgstr ""
 
 
117
 
118
+ #: ../custom-post-type-ui.php:480
119
+ #, fuzzy
120
+ msgid "Manage Taxonomies"
 
121
  msgstr "管理自定义类别"
122
 
123
+ #: ../custom-post-type-ui.php:484
124
+ #, fuzzy
125
+ msgid "Manage Post Types"
126
+ msgstr "管理自定义文章类型"
 
127
 
128
+ #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
129
+ msgid "Add New"
130
+ msgstr "添加"
 
 
131
 
132
+ #: ../custom-post-type-ui.php:513
133
+ #, fuzzy
134
+ msgid "Edit Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  msgstr "编辑自定义文章类型"
136
 
137
+ #: ../custom-post-type-ui.php:517
138
+ #, fuzzy
139
+ msgid "Edit Taxonomies"
140
+ msgstr "内置类别"
141
+
142
+ #: ../custom-post-type-ui.php:521
143
+ #, fuzzy
144
+ msgid "Post Types"
145
+ msgstr "文章类型名称"
146
+
147
+ #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
148
+ #, fuzzy
149
+ msgid "Taxonomies"
150
+ msgstr "内置类别"
151
+
152
+ #: ../custom-post-type-ui.php:523
153
+ msgid "Get Code"
154
+ msgstr ""
155
+
156
+ #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
157
+ #: ../inc/taxonomies.php:319
158
+ msgid "Settings"
159
+ msgstr ""
160
+
161
+ #: ../custom-post-type-ui.php:607
162
+ msgid "Help"
163
+ msgstr ""
164
+
165
+ #: ../custom-post-type-ui.php:635
166
+ #, php-format
167
+ msgid "%s has been successfully added"
168
+ msgstr ""
169
+
170
+ #: ../custom-post-type-ui.php:637
171
+ #, php-format
172
+ msgid "%s has failed to be added"
173
+ msgstr ""
174
+
175
+ #: ../custom-post-type-ui.php:641
176
+ #, php-format
177
+ msgid "%s has been successfully updated"
178
+ msgstr ""
179
+
180
+ #: ../custom-post-type-ui.php:643
181
+ #, php-format
182
+ msgid "%s has failed to be updated"
183
+ msgstr ""
184
+
185
+ #: ../custom-post-type-ui.php:647
186
+ #, php-format
187
+ msgid "%s has been successfully deleted"
188
+ msgstr ""
189
+
190
+ #: ../custom-post-type-ui.php:649
191
+ #, php-format
192
+ msgid "%s has failed to be deleted"
193
+ msgstr ""
194
+
195
+ #: ../custom-post-type-ui.php:653
196
+ #, php-format
197
+ msgid "%s has been successfully imported"
198
+ msgstr ""
199
+
200
+ #: ../custom-post-type-ui.php:655
201
+ #, php-format
202
+ msgid "%s has failed to be imported"
203
+ msgstr ""
204
+
205
+ #: ../inc/import_export.php:52
206
+ msgid ""
207
+ "If you are wanting to migrate registered post types or taxonomies from this "
208
+ "site to another, that will also use Custom Post Type UI, use the import and "
209
+ "export functionality. If you are moving away from Custom Post Type UI, use "
210
+ "the information in the \"Get Code\" tab."
211
+ msgstr ""
212
+
213
+ #: ../inc/import_export.php:55
214
+ msgid "NOTE"
215
+ msgstr ""
216
+
217
+ #: ../inc/import_export.php:56
218
+ msgid "This will not export the associated posts, just the settings."
219
+ msgstr ""
220
+
221
+ #: ../inc/import_export.php:63
222
+ #, fuzzy
223
+ msgid "Import Post Types"
224
+ msgstr "已附属文章类型"
225
+
226
+ #: ../inc/import_export.php:65 ../inc/import_export.php:91
227
+ msgid "Paste content here."
228
+ msgstr ""
229
+
230
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
231
+ msgid "Note:"
232
+ msgstr ""
233
+
234
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
235
+ msgid "Importing will overwrite previous registered settings."
236
+ msgstr ""
237
+
238
+ #: ../inc/import_export.php:67
239
+ msgid ""
240
+ "To import post types from a different WordPress site, paste the exported "
241
+ "content from that site and click the \"Import\" button."
242
+ msgstr ""
243
+
244
+ #: ../inc/import_export.php:68 ../inc/import_export.php:94
245
+ msgid "Import"
246
+ msgstr ""
247
+
248
+ #: ../inc/import_export.php:72
249
+ #, fuzzy
250
+ msgid "Export Post Types"
251
+ msgstr "已附属文章类型"
252
+
253
+ #: ../inc/import_export.php:79
254
+ msgid "No post types registered yet."
255
+ msgstr ""
256
+
257
+ #: ../inc/import_export.php:82 ../inc/import_export.php:107
258
+ msgid ""
259
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
260
+ "(Mac)."
261
+ msgstr ""
262
+
263
+ #: ../inc/import_export.php:83
264
+ msgid ""
265
+ "Use the content above to import current post types into a different "
266
+ "WordPress site. You can also use this to simply back up your post type "
267
+ "settings."
268
+ msgstr ""
269
+
270
+ #: ../inc/import_export.php:89
271
+ #, fuzzy
272
+ msgid "Import Taxonomies"
273
+ msgstr "内置类别"
274
+
275
+ #: ../inc/import_export.php:93
276
+ msgid ""
277
+ "To import taxonomies from a different WordPress site, paste the exported "
278
+ "content from that site and click the \"Import\" button."
279
+ msgstr ""
280
+
281
+ #: ../inc/import_export.php:98
282
+ #, fuzzy
283
+ msgid "Export Taxonomies"
284
+ msgstr "内置类别"
285
+
286
+ #: ../inc/import_export.php:104
287
+ msgid "No taxonomies registered yet."
288
+ msgstr ""
289
+
290
+ #: ../inc/import_export.php:108
291
+ msgid ""
292
+ "Use the content above to import current taxonomies into a different "
293
+ "WordPress site. You can also use this to simply back up your taxonomy "
294
+ "settings."
295
+ msgstr ""
296
+
297
+ #: ../inc/import_export.php:116
298
+ msgid "Get Post Type and Taxonomy Code"
299
+ msgstr ""
300
+
301
+ #: ../inc/import_export.php:118
302
+ #, fuzzy
303
+ msgid "All CPT UI Post Types"
304
+ msgstr "其它自定义文章类型"
305
+
306
+ #: ../inc/import_export.php:119 ../inc/import_export.php:123
307
+ msgid "Copy/paste the code below into your functions.php file."
308
+ msgstr ""
309
+
310
+ #: ../inc/import_export.php:122
311
+ #, fuzzy
312
+ msgid "All CPT UI Taxonomies"
313
+ msgstr "内置类别"
314
+
315
+ #: ../inc/import_export.php:153
316
+ msgid "No taxonomies to display at this time"
317
+ msgstr ""
318
+
319
+ #: ../inc/import_export.php:223
320
+ msgid "No post types to display at this time"
321
+ msgstr ""
322
+
323
+ #: ../inc/import_export.php:342
324
+ #, fuzzy
325
+ msgid "Post types"
326
+ msgstr "文章类型名称"
327
+
328
+ #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
329
+ msgid "Are you sure you want to delete this?"
330
+ msgstr ""
331
+
332
+ #: ../inc/post-types.php:78
333
+ msgid ""
334
+ "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
335
+ "Changing that value registers a new post type entry for your install."
336
+ msgstr ""
337
+
338
+ #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
339
+ msgid "Select"
340
+ msgstr ""
341
+
342
+ #: ../inc/post-types.php:103
343
+ #, fuzzy
344
+ msgid "Post Type Slug"
345
  msgstr "文章类型名称"
346
 
347
+ #: ../inc/post-types.php:104
348
+ msgid "(e.g. movie)"
349
+ msgstr ""
350
+
351
+ #: ../inc/post-types.php:105
352
+ msgid ""
353
+ "The post type name. Used to retrieve custom post type content. Should be "
354
+ "short and unique"
355
+ msgstr ""
356
+
357
+ #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
358
+ #, fuzzy
359
+ msgid "Plural Label"
360
+ msgstr "单数标签"
361
+
362
+ #: ../inc/post-types.php:117
363
+ msgid "(e.g. Movies)"
364
+ msgstr ""
365
+
366
+ #: ../inc/post-types.php:118 ../inc/post-types.php:186
367
+ #: ../inc/post-types.php:198 ../inc/post-types.php:210
368
+ #: ../inc/post-types.php:222 ../inc/post-types.php:234
369
+ #: ../inc/post-types.php:246 ../inc/post-types.php:258
370
+ #: ../inc/post-types.php:270 ../inc/post-types.php:282
371
+ #: ../inc/post-types.php:294 ../inc/post-types.php:306
372
+ #: ../inc/post-types.php:318
373
+ msgid "Post type label. Used in the admin menu for displaying post types."
374
+ msgstr ""
375
+
376
+ #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
377
+ msgid "Singular Label"
378
+ msgstr "单数标签"
379
+
380
+ #: ../inc/post-types.php:129
381
+ msgid "(e.g. Movie)"
382
+ msgstr ""
383
+
384
+ #: ../inc/post-types.php:130
385
+ msgid ""
386
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
387
+ "needed."
388
+ msgstr ""
389
+
390
+ #: ../inc/post-types.php:145
391
  msgid "Description"
392
  msgstr "描述"
393
 
394
+ #: ../inc/post-types.php:146
395
+ msgid ""
396
+ "Custom Post Type Description. Describe what your custom post type is used "
397
+ "for."
398
+ msgstr ""
399
+
400
+ #: ../inc/post-types.php:153
401
+ #, fuzzy
402
+ msgid "Edit Post Type"
403
+ msgstr "附属到文章类型"
404
+
405
+ #: ../inc/post-types.php:154
406
+ #, fuzzy
407
+ msgid "Delete Post Type"
408
+ msgstr "已附属文章类型"
409
+
410
+ #: ../inc/post-types.php:156
411
+ #, fuzzy
412
+ msgid "Add Post Type"
413
+ msgstr "已附属文章类型"
414
+
415
+ #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
416
+ msgid "Click headings to reveal available options."
417
+ msgstr ""
418
+
419
+ #: ../inc/post-types.php:165 ../inc/post-types.php:327
420
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
421
+ #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
422
+ msgid "Click to expand"
423
+ msgstr ""
424
+
425
+ #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
426
+ #, fuzzy
427
+ msgid "Labels"
428
+ msgstr "标签"
429
+
430
+ #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
431
+ #, fuzzy
432
+ msgid "Menu Name"
433
+ msgstr "名称"
434
+
435
+ #: ../inc/post-types.php:174
436
+ msgid "Custom menu name for your custom post type."
437
+ msgstr ""
438
+
439
+ #: ../inc/post-types.php:178
440
+ msgid "(e.g. My Movies)"
441
+ msgstr ""
442
+
443
+ #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
444
+ msgid "All Items"
445
+ msgstr "所有条目"
446
+
447
+ #: ../inc/post-types.php:190
448
+ msgid "(e.g. All Movies)"
449
+ msgstr ""
450
+
451
+ #: ../inc/post-types.php:202
452
+ #, fuzzy
453
+ msgid "(e.g. Add New)"
454
  msgstr "添加"
455
 
456
+ #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
 
 
 
457
  msgid "Add New Item"
458
  msgstr "添加新条目"
459
 
460
+ #: ../inc/post-types.php:214
461
+ msgid "(e.g. Add New Movie)"
462
+ msgstr ""
463
+
464
+ #: ../inc/post-types.php:221
465
  msgid "Edit"
466
  msgstr "编辑"
467
 
468
+ #: ../inc/post-types.php:226
469
+ msgid "(e.g. Edit)"
470
+ msgstr ""
471
+
472
+ #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
473
  msgid "Edit Item"
474
  msgstr "编辑条目"
475
 
476
+ #: ../inc/post-types.php:238
477
+ msgid "(e.g. Edit Movie)"
478
+ msgstr ""
479
+
480
+ #: ../inc/post-types.php:245
481
  msgid "New Item"
482
  msgstr "新条目"
483
 
484
+ #: ../inc/post-types.php:250
485
+ #, fuzzy
486
+ msgid "(e.g. New Movie)"
487
+ msgstr "添加新条目"
488
+
489
+ #: ../inc/post-types.php:257
490
  msgid "View"
491
  msgstr "查看"
492
 
493
+ #: ../inc/post-types.php:262
494
+ msgid "(e.g. View)"
495
+ msgstr ""
496
+
497
+ #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
498
  msgid "View Item"
499
  msgstr "查看条目"
500
 
501
+ #: ../inc/post-types.php:274
502
+ msgid "(e.g. View Movie)"
503
+ msgstr ""
504
+
505
+ #: ../inc/post-types.php:281
506
+ #, fuzzy
507
+ msgid "Search Item"
508
  msgstr "搜索条目"
509
 
510
+ #: ../inc/post-types.php:286
511
+ msgid "(e.g. Search Movie)"
512
+ msgstr ""
513
+
514
+ #: ../inc/post-types.php:293
515
  msgid "Not Found"
516
  msgstr "未找到"
517
 
518
+ #: ../inc/post-types.php:298
519
+ msgid "(e.g. No Movies found)"
520
+ msgstr ""
521
+
522
+ #: ../inc/post-types.php:305
523
  msgid "Not Found in Trash"
524
  msgstr "在回收站中没有找到"
525
 
526
+ #: ../inc/post-types.php:310
527
+ #, fuzzy
528
+ msgid "(e.g. No Movies found in Trash)"
529
+ msgstr "在回收站中没有找到"
530
+
531
+ #: ../inc/post-types.php:317
532
  msgid "Parent"
533
  msgstr "上级"
534
 
535
+ #: ../inc/post-types.php:322
536
+ msgid "(e.g. Parent Movie)"
537
+ msgstr ""
 
 
 
538
 
539
+ #: ../inc/post-types.php:336 ../inc/post-types.php:356
540
+ #: ../inc/post-types.php:376 ../inc/post-types.php:396
541
+ #: ../inc/post-types.php:427 ../inc/post-types.php:447
542
+ #: ../inc/post-types.php:479 ../inc/post-types.php:499
543
+ #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
544
+ #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
545
+ #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
546
+ #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
547
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
548
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
549
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
550
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
551
+ msgid "False"
552
+ msgstr ""
553
 
554
+ #: ../inc/post-types.php:337 ../inc/post-types.php:357
555
+ #: ../inc/post-types.php:377 ../inc/post-types.php:397
556
+ #: ../inc/post-types.php:428 ../inc/post-types.php:448
557
+ #: ../inc/post-types.php:480 ../inc/post-types.php:500
558
+ #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
559
+ #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
560
+ #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
561
+ #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
562
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
563
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
564
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
565
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
566
+ msgid "True"
567
+ msgstr ""
568
 
569
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
570
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
571
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
572
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
573
+ msgid "Public"
574
+ msgstr "公开"
575
 
576
+ #: ../inc/post-types.php:346 ../inc/post-types.php:366
577
+ #: ../inc/post-types.php:457 ../inc/post-types.php:489
578
+ #: ../inc/post-types.php:509 ../inc/post-types.php:548
579
+ #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
580
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
581
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
582
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
583
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
584
+ msgid "(default: True)"
585
+ msgstr ""
586
 
587
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
588
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
589
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
590
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
591
+ msgid "Whether posts of this type should be shown in the admin UI"
592
+ msgstr ""
593
 
594
+ #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
595
+ msgid "Show UI"
596
+ msgstr "显示用户界面"
 
 
597
 
598
+ #: ../inc/post-types.php:367
599
+ msgid "Whether to generate a default UI for managing this post type"
600
+ msgstr ""
601
+
602
+ #: ../inc/post-types.php:385
603
+ msgid "Has Archive"
604
+ msgstr ""
605
+
606
+ #: ../inc/post-types.php:386 ../inc/post-types.php:406
607
+ #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
608
+ #: ../inc/taxonomies.php:454
609
+ msgid "(default: False)"
610
+ msgstr ""
611
+
612
+ #: ../inc/post-types.php:387
613
+ msgid "Whether the post type will have a post type archive page"
614
+ msgstr ""
615
+
616
+ #: ../inc/post-types.php:405
617
+ msgid "Exclude From Search"
618
+ msgstr ""
619
+
620
+ #: ../inc/post-types.php:407
621
+ msgid "Whether the post type will be searchable"
622
+ msgstr ""
623
+
624
+ #: ../inc/post-types.php:418
625
+ msgid "Capability Type"
626
+ msgstr "权限类型"
627
+
628
+ #: ../inc/post-types.php:419
629
+ msgid "The post type to use for checking read, edit, and delete capabilities"
630
+ msgstr ""
631
+
632
+ #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
633
+ msgid "Hierarchical"
634
+ msgstr "层级"
635
+
636
+ #: ../inc/post-types.php:438
637
+ msgid "Whether the post type can have parent-child relationships"
638
+ msgstr ""
639
+
640
+ #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
641
+ msgid "Rewrite"
642
+ msgstr "重写"
643
+
644
+ #: ../inc/post-types.php:458
645
+ msgid "Triggers the handling of rewrites for this post type"
646
+ msgstr ""
647
+
648
+ #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
649
+ msgid "Custom Rewrite Slug"
650
+ msgstr "自定义重写缩略名"
651
+
652
+ #: ../inc/post-types.php:470
653
+ msgid "(default: post type name)"
654
+ msgstr ""
655
+
656
+ #: ../inc/post-types.php:471
657
+ msgid "Custom slug to use instead of the default."
658
+ msgstr ""
659
+
660
+ #: ../inc/post-types.php:488
661
+ msgid "With Front"
662
+ msgstr ""
663
+
664
+ #: ../inc/post-types.php:490 ../inc/post-types.php:510
665
+ #: ../inc/taxonomies.php:421
666
+ msgid "Should the permastruct be prepended with the front base."
667
+ msgstr ""
668
+
669
+ #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
670
+ msgid "Query Var"
671
+ msgstr "查询变量"
672
+
673
+ #: ../inc/post-types.php:514
674
+ msgid "Menu Position"
675
+ msgstr "菜单位置"
676
+
677
+ #: ../inc/post-types.php:516
678
+ msgid ""
679
+ "The position in the menu order the post type should appear. show_in_menu "
680
+ "must be true."
681
+ msgstr ""
682
+
683
+ #: ../inc/post-types.php:517
684
+ msgid ""
685
+ "See <a href=\"http://codex.wordpress.org/Function_Reference/"
686
+ "register_post_type#Parameters\">Available options</a> in the \"menu_position"
687
+ "\" section. Range of 5-100"
688
+ msgstr ""
689
+
690
+ #: ../inc/post-types.php:524
691
+ msgid "URL or Dashicon value for image to be used as menu icon."
692
+ msgstr ""
693
+
694
+ #: ../inc/post-types.php:529
695
+ msgid "Show in Menu"
696
+ msgstr ""
697
+
698
+ #: ../inc/post-types.php:530
699
+ msgid ""
700
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
701
+ "php\" is indicated for second input, post type will be sub menu of that."
702
+ msgstr ""
703
+
704
+ #: ../inc/post-types.php:547
705
+ #, fuzzy
706
+ msgid "Show In Menu"
707
+ msgstr "显示用户界面"
708
+
709
+ #: ../inc/post-types.php:549
710
+ msgid ""
711
+ "Whether to show the post type in the admin menu and where to show that menu. "
712
+ "Note that show_ui must be true"
713
+ msgstr ""
714
+
715
+ #: ../inc/post-types.php:561
716
+ msgid "URL to image to be used as menu icon."
717
+ msgstr ""
718
+
719
+ #: ../inc/post-types.php:572
720
+ #, fuzzy
721
+ msgid "Menu Icon"
722
+ msgstr "菜单位置"
723
+
724
+ #: ../inc/post-types.php:573
725
+ msgid "(Full URL for icon or Dashicon class)"
726
+ msgstr ""
727
+
728
+ #: ../inc/post-types.php:574
729
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
730
+ msgstr ""
731
+
732
+ #: ../inc/post-types.php:577
733
+ msgid "Supports"
734
+ msgstr "支持"
735
+
736
+ #: ../inc/post-types.php:587
737
+ msgid "Title"
738
+ msgstr ""
739
+
740
+ #: ../inc/post-types.php:588
741
+ msgid "Adds the title meta box when creating content for this custom post type"
742
+ msgstr ""
743
+
744
+ #: ../inc/post-types.php:602
745
+ #, fuzzy
746
+ msgid "Editor"
747
+ msgstr "编辑"
748
+
749
+ #: ../inc/post-types.php:603
750
+ msgid ""
751
+ "Adds the content editor meta box when creating content for this custom post "
752
+ "type"
753
+ msgstr ""
754
+
755
+ #: ../inc/post-types.php:617
756
+ msgid "Excerpt"
757
+ msgstr ""
758
+
759
+ #: ../inc/post-types.php:618
760
+ msgid ""
761
+ "Adds the excerpt meta box when creating content for this custom post type"
762
+ msgstr ""
763
+
764
+ #: ../inc/post-types.php:632
765
+ msgid "Trackbacks"
766
+ msgstr ""
767
+
768
+ #: ../inc/post-types.php:633
769
+ msgid ""
770
+ "Adds the trackbacks meta box when creating content for this custom post type"
771
+ msgstr ""
772
+
773
+ #: ../inc/post-types.php:647
774
+ #, fuzzy
775
+ msgid "Custom Fields"
776
+ msgstr "自定义重写缩略名"
777
+
778
+ #: ../inc/post-types.php:648
779
+ msgid ""
780
+ "Adds the custom fields meta box when creating content for this custom post "
781
+ "type"
782
+ msgstr ""
783
+
784
+ #: ../inc/post-types.php:662
785
+ msgid "Comments"
786
+ msgstr ""
787
+
788
+ #: ../inc/post-types.php:663
789
+ msgid ""
790
+ "Adds the comments meta box when creating content for this custom post type"
791
+ msgstr ""
792
+
793
+ #: ../inc/post-types.php:677
794
+ msgid "Revisions"
795
+ msgstr ""
796
+
797
+ #: ../inc/post-types.php:678
798
+ msgid ""
799
+ "Adds the revisions meta box when creating content for this custom post type"
800
+ msgstr ""
801
+
802
+ #: ../inc/post-types.php:692
803
+ msgid "Featured Image"
804
+ msgstr ""
805
+
806
+ #: ../inc/post-types.php:693
807
+ msgid ""
808
+ "Adds the featured image meta box when creating content for this custom post "
809
+ "type"
810
+ msgstr ""
811
+
812
+ #: ../inc/post-types.php:707
813
+ msgid "Author"
814
+ msgstr ""
815
+
816
+ #: ../inc/post-types.php:708
817
+ msgid ""
818
+ "Adds the author meta box when creating content for this custom post type"
819
+ msgstr ""
820
+
821
+ #: ../inc/post-types.php:722
822
+ msgid "Page Attributes"
823
+ msgstr ""
824
+
825
+ #: ../inc/post-types.php:723
826
+ msgid ""
827
+ "Adds the page attribute meta box when creating content for this custom post "
828
+ "type"
829
+ msgstr ""
830
+
831
+ #: ../inc/post-types.php:737
832
+ msgid "Post Formats"
833
+ msgstr ""
834
+
835
+ #: ../inc/post-types.php:738
836
+ msgid "Adds post format support"
837
+ msgstr ""
838
+
839
+ #: ../inc/post-types.php:743
840
+ msgid "Use the option below to explicitly set \"supports\" to false."
841
+ msgstr ""
842
+
843
+ #: ../inc/post-types.php:751
844
+ msgid "None"
845
+ msgstr ""
846
+
847
+ #: ../inc/post-types.php:752
848
+ msgid "Remove all support features"
849
+ msgstr ""
850
+
851
+ #: ../inc/post-types.php:759
852
+ msgid "Built-in Taxonomies"
853
+ msgstr "内置类别"
854
+
855
+ #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
856
+ #, php-format
857
+ msgid "Adds %s support"
858
+ msgstr ""
859
+
860
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
861
+ msgid "Starter Notes"
862
+ msgstr ""
863
+
864
+ #: ../inc/post-types.php:809
865
+ #, php-format
866
+ msgid ""
867
+ "Post Type names should have %smax 20 characters%s, and only contain "
868
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
869
+ "letters that do not have accents. Reserved names: post, page, attachment, "
870
+ "revision, nav_menu_item."
871
+ msgstr ""
872
+
873
+ #: ../inc/post-types.php:810
874
+ #, php-format
875
+ msgid ""
876
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
877
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
878
+ "values. Labels, if left blank, will be automatically created based on the "
879
+ "post type name. Hover over the question mark for more details."
880
+ msgstr ""
881
+
882
+ #: ../inc/post-types.php:811
883
+ #, fuzzy, php-format
884
+ msgid ""
885
+ "Deleting custom post types will %sNOT%s delete any content into the database "
886
+ "or added to those post types. You can easily recreate your post types and "
887
+ "the content will still exist."
888
+ msgstr ""
889
+ "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
890
+ "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
891
+
892
+ #: ../inc/post-types.php:890
893
+ msgid "Please provide a post type to delete"
894
+ msgstr ""
895
+
896
+ #: ../inc/post-types.php:950
897
+ msgid "Please provide a post type name"
898
+ msgstr ""
899
+
900
+ #: ../inc/post-types.php:968
901
+ msgid "Please do not use quotes in post type names or rewrite slugs"
902
+ msgstr ""
903
+
904
+ #: ../inc/post-types.php:975
905
+ #, php-format
906
+ msgid "Please choose a different post type name. %s is already registered."
907
+ msgstr ""
908
+
909
+ #: ../inc/support.php:44
910
+ #, fuzzy
911
+ msgid "Custom Post Type UI Support"
912
+ msgstr "Custom Post Types UI"
913
+
914
+ #: ../inc/support.php:46
915
+ #, php-format
916
+ msgid ""
917
+ "Please note that this plugin will NOT handle display of registered post "
918
+ "types or taxonomies in your current theme. It will simply register them for "
919
+ "you. If all else fails, visit us on the %s"
920
+ msgstr ""
921
+
922
+ #: ../inc/support.php:47
923
+ #, fuzzy
924
+ msgid "Support Forums"
925
+ msgstr "支持"
926
+
927
+ #: ../inc/support.php:53
928
+ msgid "General"
929
+ msgstr ""
930
+
931
+ #: ../inc/support.php:56
932
+ msgid ""
933
+ "I changed my custom post type name and now I can not get to my posts. How do "
934
+ "I get them back?"
935
+ msgstr ""
936
+
937
+ #: ../inc/support.php:57
938
+ msgid ""
939
+ "You can either change the custom post type name back to the original name or "
940
+ "try the Post Type Switcher plugin"
941
+ msgstr ""
942
+
943
+ #: ../inc/support.php:62
944
+ msgid ""
945
+ "I changed my custom post type or taxonomy slug and now I have duplicates "
946
+ "shown. How do I remove the duplicate?"
947
+ msgstr ""
948
+
949
+ #: ../inc/support.php:63
950
+ msgid ""
951
+ "Renaming the slug for a post type or taxonomy creates a new entry in our "
952
+ "saved option which gets registered as its own post type or taxonomy. Since "
953
+ "the settings will be mirrored from the previous slug, you will just need to "
954
+ "delete the previous version's entry."
955
+ msgstr ""
956
+
957
+ #: ../inc/support.php:66
958
+ msgid ""
959
+ "I have added post thumbnail and/or post format support to my post type, but "
960
+ "those do not appear when adding a post type post."
961
+ msgstr ""
962
+
963
+ #: ../inc/support.php:67
964
+ msgid ""
965
+ "Make sure your theme has post \"post-thumbnails\" theme support enabled."
966
+ msgstr ""
967
+
968
+ #: ../inc/support.php:72
969
+ msgid "Front-end Display"
970
+ msgstr ""
971
+
972
+ #: ../inc/support.php:75
973
+ msgid "What template files should I edit to alter my post type display?"
974
+ msgstr ""
975
+
976
+ #: ../inc/support.php:76
977
+ #, php-format
978
+ msgid ""
979
+ "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
980
+ "details about available templates."
981
+ msgstr ""
982
+
983
+ #: ../inc/support.php:83
984
+ msgid "How do I display my custom post type on my site?"
985
+ msgstr ""
986
+
987
+ #: ../inc/support.php:84
988
+ #, php-format
989
+ msgid ""
990
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
991
+ "locations. If you have set the post type to have archives, the archive url "
992
+ "should be something like \"http://www.mysite.com/post-type-slug\""
993
+ msgstr ""
994
+
995
+ #: ../inc/support.php:90
996
+ msgid ""
997
+ "I have added categories and tags to my custom post type, but they do not "
998
+ "appear in the archives."
999
+ msgstr ""
1000
+
1001
+ #: ../inc/support.php:91
1002
+ #, php-format
1003
+ msgid ""
1004
+ "You will need to add your newly created post type to the types that the "
1005
+ "category and tag archives query for. You can see a tutorial on how to do "
1006
+ "that at %s"
1007
+ msgstr ""
1008
+
1009
+ #: ../inc/support.php:100
1010
+ msgid "Advanced"
1011
+ msgstr ""
1012
+
1013
+ #: ../inc/support.php:103
1014
+ msgid "How do I add custom metaboxes to my post type?"
1015
+ msgstr ""
1016
+
1017
+ #: ../inc/support.php:105
1018
+ #, php-format
1019
+ msgid ""
1020
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1021
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1022
+ msgstr ""
1023
+
1024
+ #: ../inc/support.php:111
1025
+ msgid ""
1026
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1027
+ msgstr ""
1028
+
1029
+ #: ../inc/support.php:113
1030
+ #, php-format
1031
+ msgid "Check out the %s function for documentation and usage examples."
1032
+ msgstr ""
1033
+
1034
+ #: ../inc/support.php:119
1035
+ #, fuzzy
1036
+ msgid "Post relationships?"
1037
+ msgstr "附属到文章类型"
1038
+
1039
+ #: ../inc/support.php:120
1040
+ #, php-format
1041
+ msgid ""
1042
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1043
+ "plugin that should be a good start."
1044
+ msgstr ""
1045
+
1046
+ #: ../inc/support.php:129
1047
+ msgid ""
1048
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1049
+ msgstr ""
1050
+
1051
+ #: ../inc/support.php:130
1052
+ msgid ""
1053
+ "Change text inside the post/page editor title field. Should be able to adapt "
1054
+ "as necessary."
1055
+ msgstr ""
1056
+
1057
+ #: ../inc/taxonomies.php:80
1058
+ msgid ""
1059
+ "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1060
+ "Changing that value registers a new taxonomy entry for your install."
1061
+ msgstr ""
1062
+
1063
+ #: ../inc/taxonomies.php:102
1064
+ #, fuzzy
1065
+ msgid "Taxonomy Slug"
1066
+ msgstr "类别名称"
1067
+
1068
+ #: ../inc/taxonomies.php:103
1069
+ msgid "(e.g. actors)"
1070
+ msgstr ""
1071
+
1072
+ #: ../inc/taxonomies.php:104
1073
+ msgid ""
1074
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1075
+ "and unique"
1076
+ msgstr ""
1077
+
1078
+ #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1079
+ msgid "(e.g. Actors)"
1080
+ msgstr ""
1081
+
1082
+ #: ../inc/taxonomies.php:114
1083
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1084
+ msgstr ""
1085
+
1086
+ #: ../inc/taxonomies.php:121
1087
+ msgid "(e.g. Actor)"
1088
+ msgstr ""
1089
+
1090
+ #: ../inc/taxonomies.php:123
1091
+ msgid ""
1092
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1093
+ msgstr ""
1094
+
1095
+ #: ../inc/taxonomies.php:126
1096
  msgid "Attach to Post Type"
1097
  msgstr "附属到文章类型"
1098
 
1099
+ #: ../inc/taxonomies.php:165
1100
+ #, fuzzy
1101
+ msgid "Edit Taxonomy"
1102
+ msgstr "编辑自定义类别"
 
1103
 
1104
+ #: ../inc/taxonomies.php:166
1105
+ #, fuzzy
1106
+ msgid "Delete Taxonomy"
1107
+ msgstr "创建自定义类别"
 
1108
 
1109
+ #: ../inc/taxonomies.php:168
1110
+ #, fuzzy
1111
+ msgid "Add Taxonomy"
1112
+ msgstr "类别名称"
1113
+
1114
+ #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1115
+ #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1116
+ #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1117
+ #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1118
+ #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1119
+ #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1120
+ #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1121
+ #: ../inc/taxonomies.php:314
1122
+ msgid ""
1123
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1124
+ msgstr ""
1125
+
1126
+ #: ../inc/taxonomies.php:195
1127
+ msgid "(e.g. All Actors)"
1128
+ msgstr ""
1129
+
1130
+ #: ../inc/taxonomies.php:204
1131
+ msgid "(e.g. Edit Actor)"
1132
+ msgstr ""
1133
+
1134
+ #: ../inc/taxonomies.php:213
1135
+ msgid "(e.g. View Actor)"
1136
+ msgstr ""
1137
+
1138
+ #: ../inc/taxonomies.php:222
1139
+ msgid "(e.g. Update Actor Name)"
1140
+ msgstr ""
1141
+
1142
+ #: ../inc/taxonomies.php:223
1143
+ #, fuzzy
1144
+ msgid "Update Item Name"
1145
+ msgstr "更新条目"
1146
+
1147
+ #: ../inc/taxonomies.php:231
1148
+ msgid "(e.g. Add New Actor)"
1149
+ msgstr ""
1150
+
1151
+ #: ../inc/taxonomies.php:240
1152
+ msgid "(e.g. New Actor Name)"
1153
+ msgstr ""
1154
 
1155
+ #: ../inc/taxonomies.php:241
1156
+ msgid "New Item Name"
1157
+ msgstr "新条目名称"
1158
+
1159
+ #: ../inc/taxonomies.php:249
1160
+ msgid "(e.g. Parent Actor)"
1161
+ msgstr ""
1162
+
1163
+ #: ../inc/taxonomies.php:250
1164
  msgid "Parent Item"
1165
  msgstr "上级条目"
1166
 
1167
+ #: ../inc/taxonomies.php:258
1168
+ msgid "(e.g. Parent Actor:)"
1169
+ msgstr ""
1170
+
1171
+ #: ../inc/taxonomies.php:259
1172
  msgid "Parent Item Colon"
1173
  msgstr "上级条目:"
1174
 
1175
+ #: ../inc/taxonomies.php:267
1176
+ msgid "(e.g. Search Actors)"
1177
+ msgstr ""
 
 
1178
 
1179
+ #: ../inc/taxonomies.php:268
1180
+ msgid "Search Items"
1181
+ msgstr "搜索条目"
1182
+
1183
+ #: ../inc/taxonomies.php:276
1184
+ msgid "(e.g. Popular Actors)"
1185
+ msgstr ""
1186
+
1187
+ #: ../inc/taxonomies.php:277
1188
+ msgid "Popular Items"
1189
+ msgstr "热门条目"
1190
+
1191
+ #: ../inc/taxonomies.php:285
1192
+ #, fuzzy
1193
+ msgid "(e.g. Separate actors with commas)"
1194
+ msgstr "使用英文逗号隔开多个标签条目"
1195
 
1196
+ #: ../inc/taxonomies.php:286
 
 
1197
  msgid "Separate Items with Commas"
1198
  msgstr "使用英文逗号隔开多个标签条目"
1199
 
1200
+ #: ../inc/taxonomies.php:294
1201
+ #, fuzzy
1202
+ msgid "(e.g. Add or remove actors)"
1203
+ msgstr "添加或删除条目"
1204
+
1205
+ #: ../inc/taxonomies.php:295
1206
  msgid "Add or Remove Items"
1207
  msgstr "添加或删除条目"
1208
 
1209
+ #: ../inc/taxonomies.php:303
1210
+ #, fuzzy
1211
+ msgid "(e.g. Choose from the most used actors)"
1212
+ msgstr "使用次数最多"
1213
+
1214
+ #: ../inc/taxonomies.php:304
1215
  msgid "Choose From Most Used"
1216
  msgstr "使用次数最多"
1217
 
1218
+ #: ../inc/taxonomies.php:312
1219
+ msgid "(e.g. No actors found)"
1220
+ msgstr ""
1221
+
1222
+ #: ../inc/taxonomies.php:313
1223
+ #, fuzzy
1224
+ msgid "Not found"
1225
+ msgstr "未找到"
1226
+
1227
+ #: ../inc/taxonomies.php:336
1228
+ msgid "Whether the taxonomy can have parent-child relationships"
1229
+ msgstr ""
1230
+
1231
+ #: ../inc/taxonomies.php:353
1232
+ msgid "Whether to generate a default UI for managing this custom taxonomy"
1233
+ msgstr ""
1234
+
1235
+ #: ../inc/taxonomies.php:377
1236
+ msgid "(default: none). Query Var needs to be true to use."
1237
+ msgstr ""
1238
+
1239
+ #: ../inc/taxonomies.php:378
1240
+ msgid "Custom Query Var String"
1241
+ msgstr ""
1242
+
1243
+ #: ../inc/taxonomies.php:379
1244
+ #, fuzzy
1245
+ msgid "Custom Query Var Slug"
1246
+ msgstr "自定义重写缩略名"
1247
+
1248
+ #: ../inc/taxonomies.php:395
1249
+ msgid "Triggers the handling of rewrites for this taxonomy"
1250
+ msgstr ""
1251
+
1252
+ #: ../inc/taxonomies.php:403
1253
+ #, fuzzy
1254
+ msgid "(default: taxonomy name)"
1255
+ msgstr "新条目名称"
1256
+
1257
+ #: ../inc/taxonomies.php:405
1258
+ #, fuzzy
1259
+ msgid "Custom Taxonomy Rewrite Slug"
1260
+ msgstr "自定义重写缩略名"
1261
+
1262
+ #: ../inc/taxonomies.php:419
1263
+ msgid "Rewrite With Front"
1264
+ msgstr ""
1265
+
1266
+ #: ../inc/taxonomies.php:420
1267
+ msgid "(default: true)"
1268
+ msgstr ""
1269
+
1270
+ #: ../inc/taxonomies.php:436
1271
+ #, fuzzy
1272
+ msgid "Rewrite Hierarchical"
1273
+ msgstr "层级"
1274
+
1275
+ #: ../inc/taxonomies.php:437
1276
+ msgid "(default: false)"
1277
+ msgstr ""
1278
+
1279
+ #: ../inc/taxonomies.php:438
1280
+ msgid "Should the permastruct allow hierarchical urls."
1281
+ msgstr ""
1282
+
1283
+ #: ../inc/taxonomies.php:453
1284
+ msgid "Show Admin Column"
1285
+ msgstr ""
1286
+
1287
+ #: ../inc/taxonomies.php:455
1288
+ msgid ""
1289
+ "Whether to allow automatic creation of taxonomy columns on associated post-"
1290
+ "types."
1291
+ msgstr ""
1292
+
1293
+ #: ../inc/taxonomies.php:466
1294
+ #, php-format
1295
+ msgid ""
1296
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1297
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1298
+ "letters that do not have accents."
1299
+ msgstr ""
1300
+
1301
+ #: ../inc/taxonomies.php:467
1302
+ #, php-format
1303
+ msgid ""
1304
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1305
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1306
+ "settings will use default values. Labels, if left blank, will be "
1307
+ "automatically created based on the taxonomy name. Hover over the question "
1308
+ "marks for more details."
1309
+ msgstr ""
1310
+
1311
+ #: ../inc/taxonomies.php:468
1312
+ #, fuzzy, php-format
1313
+ msgid ""
1314
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1315
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1316
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1317
+ "terms in the database."
1318
+ msgstr ""
1319
+ "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1320
+ "的重新创建您的类别,并且这些内容依旧存在。"
1321
+
1322
+ #: ../inc/taxonomies.php:556
1323
+ msgid "Please provide a taxonomy to delete"
1324
+ msgstr ""
1325
+
1326
+ #: ../inc/taxonomies.php:607
1327
+ msgid "Please provide a taxonomy name"
1328
+ msgstr ""
1329
+
1330
+ #: ../inc/taxonomies.php:623
1331
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1332
+ msgstr ""
1333
+
1334
+ #: ../inc/taxonomies.php:629
1335
+ #, php-format
1336
+ msgid "Please choose a different taxonomy name. %s is already used."
1337
+ msgstr ""
1338
+
1339
+ #~ msgid "Plugin version"
1340
+ #~ msgstr "插件版本"
1341
+
1342
+ #~ msgid "WordPress version"
1343
+ #~ msgstr "WordPress 版本"
1344
+
1345
+ #~ msgid "Slightly Outdated Demo Video"
1346
+ #~ msgstr "早期制作的演示视频"
1347
+
1348
+ #~ msgid "Custom post type deleted successfully"
1349
+ #~ msgstr "自定义文章类型被成功删除"
1350
+
1351
+ #~ msgid "Action"
1352
+ #~ msgstr "操作"
1353
+
1354
+ #~ msgid "Rewrite Slug"
1355
+ #~ msgstr "重写缩略名"
1356
+
1357
+ #~ msgid "Total Published"
1358
+ #~ msgstr "已发布总数"
1359
+
1360
+ #~ msgid "Total Drafts"
1361
+ #~ msgstr "草稿总数"
1362
+
1363
+ #~ msgid ""
1364
+ #~ "Place the below code in your themes functions.php file to manually create "
1365
+ #~ "this custom post type"
1366
+ #~ msgstr ""
1367
+ #~ "请将下面的代码放入您主题的 functions.php 文件中,用来手动创建自定义文章类"
1368
+ #~ "型"
1369
+
1370
+ #~ msgid ""
1371
+ #~ "The custom post types below are registered in WordPress but were not "
1372
+ #~ "created by the Custom Post Type UI Plugin."
1373
+ #~ msgstr ""
1374
+ #~ "以下自定义文章类别已在 WordPress 中注册,但是它们并不是由 Custom Post "
1375
+ #~ "Type UI 插件创建的。"
1376
+
1377
+ #~ msgid "Custom taxonomy deleted successfully"
1378
+ #~ msgstr "自定义类别被成功删除"
1379
+
1380
+ #~ msgid ""
1381
+ #~ "Place the below code in your themes functions.php file to manually create "
1382
+ #~ "this custom taxonomy"
1383
+ #~ msgstr ""
1384
+ #~ "请将下面的代码放入您主题的 functions.php 文件中,用来手动创建自定义类别"
1385
+
1386
+ #~ msgid ""
1387
+ #~ "Custom post type created successfully. You may need to refresh to view "
1388
+ #~ "the new post type."
1389
+ #~ msgstr "自定义文章类型创建成功。您需要刷新才能查看到新文章类型。"
1390
+
1391
+ #~ msgid ""
1392
+ #~ "Custom taxonomy created successfully. You may need to refresh to view "
1393
+ #~ "the new taxonomy."
1394
+ #~ msgstr "自定义类别创建成功。您需要刷新才能查看到新类别。"
1395
+
1396
+ #~ msgid "Post type name is a required field."
1397
+ #~ msgstr "日志类型名称区域必须填写。"
1398
+
1399
+ #~ msgid "Taxonomy name is a required field."
1400
+ #~ msgstr "类别名称区域必须填写。"
1401
+
1402
+ #~ msgid "You must assign your custom taxonomy to at least one post type."
1403
+ #~ msgstr "您必须为您的自定义类别分配至少一个文章类型。"
1404
+
1405
+ #~ msgid "Reset"
1406
+ #~ msgstr "复位"
1407
+
1408
+ #~ msgid "Create New Custom Post Type"
1409
+ #~ msgstr "创建新自定义文章类型"
1410
+
1411
+ #~ msgid ""
1412
+ #~ "If you are unfamiliar with the options below only fill out the "
1413
+ #~ "<strong>Post Type Name</strong> and <strong>Label</strong> fields and "
1414
+ #~ "check which meta boxes to support. The other settings are set to the "
1415
+ #~ "most common defaults for custom post types."
1416
+ #~ msgstr ""
1417
+ #~ "如果您对下面的选项感到陌生,那么您只需要填写<strong>文章类型名称</strong>"
1418
+ #~ "和<strong>标签</strong>区域并查看一下支持哪些信息即可。其它的设置将被设置"
1419
+ #~ "为自定义文章类型最常用的默认值。"
1420
+
1421
+ #~ msgid "View Advanced Label Options"
1422
+ #~ msgstr "查看标签高级选项"
1423
+
1424
+ #~ msgid "View Advanced Options"
1425
+ #~ msgstr "查看高级选项"
1426
+
1427
+ #~ msgid ""
1428
+ #~ "Below are the advanced label options for custom post types. If you are "
1429
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
1430
+ #~ "based off of your custom post type name"
1431
+ #~ msgstr ""
1432
+ #~ "下面是自定义文章类型的标签高级选项。如果您对这些标签感到陌生,插件将自动根"
1433
+ #~ "据您的自定义文章类型名称为您创建标签"
1434
+
1435
+ #~ msgid ""
1436
+ #~ "If you are unfamiliar with the options below only fill out the "
1437
+ #~ "<strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> "
1438
+ #~ "fields. The other settings are set to the most common defaults for "
1439
+ #~ "custom taxonomies."
1440
+ #~ msgstr ""
1441
+ #~ "如果您对下面的选项感到陌生,那么您只需要填写<strong>类别名称</strong>和"
1442
+ #~ "<strong>文章类型名称</strong>区域即可。其它的设置将被设置为自定义类别最常"
1443
+ #~ "用的默认值。"
1444
+
1445
+ #~ msgid ""
1446
+ #~ "Below are the advanced label options for custom taxonomies. If you are "
1447
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
1448
+ #~ "based off of your custom taxonomy name"
1449
+ #~ msgstr ""
1450
+ #~ "下面是自定义类别的标签高级选项。如果您对这些标签感到陌生,插件将自动根据您"
1451
+ #~ "的自定义类别名称为您创建标签"
1452
+
1453
  #, fuzzy
1454
  #~ msgid "Custom post type created successfully"
1455
  #~ 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-10 19:33-0600\n"
5
- "PO-Revision-Date: 2015-02-10 19:33-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"
@@ -96,7 +96,7 @@ msgstr ""
96
 
97
  #: ../custom-post-type-ui.php:407
98
  #, php-format
99
- msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
  #: ../custom-post-type-ui.php:416
@@ -805,7 +805,7 @@ msgid "Adds post format support"
805
  msgstr ""
806
 
807
  #: ../inc/post-types.php:743
808
- msgid "\"Use the option below to explicitly set \"supports\" to false."
809
  msgstr ""
810
 
811
  #: ../inc/post-types.php:751
@@ -1008,7 +1008,7 @@ msgstr ""
1008
 
1009
  #: ../inc/support.php:129
1010
  msgid ""
1011
- "How do I filter the \"enter title here\" text in the post editor screen."
1012
  msgstr ""
1013
 
1014
  #: ../inc/support.php:130
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
+ "POT-Creation-Date: 2015-02-11 21:09-0600\n"
5
+ "PO-Revision-Date: 2015-02-11 21:09-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"
96
 
97
  #: ../custom-post-type-ui.php:407
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:416
805
  msgstr ""
806
 
807
  #: ../inc/post-types.php:743
808
+ msgid "Use the option below to explicitly set \"supports\" to false."
809
  msgstr ""
810
 
811
  #: ../inc/post-types.php:751
1008
 
1009
  #: ../inc/support.php:129
1010
  msgid ""
1011
+ "How do I filter the \"enter title here\" text in the post editor screen?"
1012
  msgstr ""
1013
 
1014
  #: ../inc/support.php:130
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.1
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,16 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
 
 
 
40
  = 1.0.1 =
41
  * Fix issues with taxonomy transfer and registration.
42
  * Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.
@@ -192,6 +202,17 @@ Implied credit to:
192
 
193
  == Upgrade Notice ==
194
 
 
 
 
 
 
 
 
 
 
 
 
195
  = 1.0.1 =
196
  * Fix issues with taxonomy transfer and registration. May need to delete new option value and re-convert afterwards.
197
  * Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.
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.2
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.0.2 =
41
+ * Fix issue with checked checkboxes for post type associations for taxonomies.
42
+ * Fix "Get Code" spot related to post type associations for taxonomies.
43
+ * Update some text strings after localization feedback.
44
+ * Fix typos in textdomain for two spots.
45
+ * Updating progressing translation files.
46
+ * Fix value for with_front parameter.
47
+ * Fix error in boolean type for map_meta_cap.
48
+ * Fix missing use of query_var slug if present for taxonomies.
49
+
50
  = 1.0.1 =
51
  * Fix issues with taxonomy transfer and registration.
52
  * Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.
202
 
203
  == Upgrade Notice ==
204
 
205
+ = 1.0.2 =
206
+ * PLEASE TEST THIS UPDATE ON A DEV SITE IF YOU CAN, BEFORE UPDATING ON A LIVE SITE.
207
+ * Fix issue with checked checkboxes for post type associations for taxonomies.
208
+ * Fix "Get Code" spot related to post type associations for taxonomies.
209
+ * Update some text strings after localization feedback.
210
+ * Fix typos in textdomain for two spots.
211
+ * Updating progressing translation files.
212
+ * Fix value for with_front parameter.
213
+ * Fix error in boolean type for map_meta_cap.
214
+ * Fix missing use of query_var slug if present for taxonomies.
215
+
216
  = 1.0.1 =
217
  * Fix issues with taxonomy transfer and registration. May need to delete new option value and re-convert afterwards.
218
  * Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.