I18n for custom post type labels. Props demetris, dimadin. Fixes #12968

git-svn-id: http://svn.automattic.com/wordpress/trunk@14571 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nbachiyski
2010-05-11 19:52:50 +00:00
parent 00c831f44a
commit 46afe7c285
13 changed files with 124 additions and 89 deletions

View File

@@ -112,7 +112,7 @@ foreach ( (array) $authors as $author ) {
<select name="post_type" id="post_type">
<option value="all" selected="selected"><?php _e('All Content'); ?></option>
<?php foreach ( get_post_types( array( 'public' => true, 'can_export' => true ), 'objects' ) as $post_type_obj ) { ?>
<option value="<?php echo $post_type_obj->name; ?>"><?php echo $post_type_obj->label; ?></option>
<option value="<?php echo $post_type_obj->name; ?>"><?php echo $post_type_obj->labels->name; ?></option>
<?php } ?>
</select>
</td>