From 3bb75e0a3fbc342ea7c24e72c37d40f953198367 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 17 Jul 2019 01:49:08 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issues in [45651]. See #38195. git-svn-id: https://develop.svn.wordpress.org/trunk@45652 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php index 8e1da0ecbd..8a24b83f33 100644 --- a/src/wp-includes/post.php +++ b/src/wp-includes/post.php @@ -2645,22 +2645,22 @@ function wp_count_attachments( $mime_type = '' ) { */ function get_post_mime_types() { $post_mime_types = array( // array( adj, noun ) - 'image' => array( + 'image' => array( __( 'Images' ), __( 'Manage Images' ), _n_noop( 'Image (%s)', 'Images (%s)' ), ), - 'audio' => array( + 'audio' => array( __( 'Audio' ), __( 'Manage Audio' ), _n_noop( 'Audio (%s)', 'Audio (%s)' ), ), - 'video' => array( + 'video' => array( __( 'Video' ), __( 'Manage Video' ), _n_noop( 'Video (%s)', 'Video (%s)' ), ), - 'document' => array( + 'document' => array( __( 'Documents' ), __( 'Manage Documents' ), _n_noop( 'Document (%s)', 'Documents (%s)' ), @@ -2670,7 +2670,7 @@ function get_post_mime_types() { __( 'Manage Spreadsheets' ), _n_noop( 'Spreadsheet (%s)', 'Spreadsheets (%s)' ), ), - 'archive' => array( + 'archive' => array( __( 'Archives' ), __( 'Manage Archives' ), _n_noop( 'Archive (%s)', 'Archives (%s)' ),