Make WordPress Core

Changeset 18530


Ignore:
Timestamp:
08/11/2011 04:36:18 AM (13 years ago)
Author:
nbachiyski
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/press-this.php

    r18460 r18530  
    503503                        <label for="post_format"><?php _e( 'Post Format:' ); ?>
    504504                        <select name="post_format" id="post_format">
    505                             <option value="0"><?php _e( 'Standard' ); ?></option>
     505                            <option value="0"><?php _ex( 'Standard', 'Post format' ); ?></option>
    506506                        <?php foreach ( $post_formats[0] as $format ): ?>
    507507                            <option<?php selected( $default_format, $format ); ?> value="<?php echo esc_attr( $format ); ?>"> <?php echo esc_html( get_post_format_string( $format ) ); ?></option>
Note: See TracChangeset for help on using the changeset viewer.