Alignment standards for [25296]. props DrewAPicture. see #25171.

git-svn-id: https://develop.svn.wordpress.org/trunk@25300 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi 2013-09-07 22:06:21 +00:00
parent 6f6decc3f2
commit bde3435a63
1 changed files with 8 additions and 8 deletions

View File

@ -2464,16 +2464,16 @@ function attachment_submitbox_metadata() {
* @param array $fields {
* An array of the attachment metadata keys and labels.
*
* @type string 'mime_type' Label to be shown before the field mime_type.
* @type string 'year' Label to be shown before the field year.
* @type string 'genre' Label to be shown before the field genre.
* @type string 'mime_type' Label to be shown before the field mime_type.
* @type string 'year' Label to be shown before the field year.
* @type string 'genre' Label to be shown before the field genre.
* @type string 'length_formatted' Label to be shown before the field length_formatted.
* }
*/
$fields = apply_filters( 'media_submitbox_misc_sections', array(
'mime_type' => __( 'Mime-type:' ),
'year' => __( 'Year:' ),
'genre' => __( 'Genre:' ),
'mime_type' => __( 'Mime-type:' ),
'year' => __( 'Year:' ),
'genre' => __( 'Genre:' ),
'length_formatted' => __( 'Length:' ),
) );
@ -2511,12 +2511,12 @@ function attachment_submitbox_metadata() {
* An array of the attachment metadata keys and labels.
*
* @type string 'dataformat' Label to be shown before the field dataformat.
* @type string 'codec' Label to be shown before the field codec.
* @type string 'codec' Label to be shown before the field codec.
* }
*/
$audio_fields = apply_filters( 'audio_submitbox_misc_sections', array(
'dataformat' => __( 'Audio Format:' ),
'codec' => __( 'Audio Codec:' )
'codec' => __( 'Audio Codec:' )
) );
foreach ( $audio_fields as $key => $label ):