Add a gettext context to the Standard post format string in Press This to match other usages of Standard in a post format context

git-svn-id: http://svn.automattic.com/wordpress/trunk@18530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nbachiyski 2011-08-11 04:36:18 +00:00
parent 51e91e68c3
commit c8721d2600
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ if ( user_can_richedit() ) {
<p>
<label for="post_format"><?php _e( 'Post Format:' ); ?>
<select name="post_format" id="post_format">
<option value="0"><?php _e( 'Standard' ); ?></option>
<option value="0"><?php _ex( 'Standard', 'Post format' ); ?></option>
<?php foreach ( $post_formats[0] as $format ): ?>
<option<?php selected( $default_format, $format ); ?> value="<?php echo esc_attr( $format ); ?>"> <?php echo esc_html( get_post_format_string( $format ) ); ?></option>
<?php endforeach; ?>