diff --git a/src/wp-admin/includes/media.php b/src/wp-admin/includes/media.php index 9473c8d175..f1bf5d4f60 100644 --- a/src/wp-admin/includes/media.php +++ b/src/wp-admin/includes/media.php @@ -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 ):