mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 19:46:21 +00:00
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:
parent
51e91e68c3
commit
c8721d2600
@ -502,7 +502,7 @@ if ( user_can_richedit() ) {
|
|||||||
<p>
|
<p>
|
||||||
<label for="post_format"><?php _e( 'Post Format:' ); ?>
|
<label for="post_format"><?php _e( 'Post Format:' ); ?>
|
||||||
<select name="post_format" id="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 ): ?>
|
<?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>
|
<option<?php selected( $default_format, $format ); ?> value="<?php echo esc_attr( $format ); ?>"> <?php echo esc_html( get_post_format_string( $format ) ); ?></option>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user