From 970fe7d85ca18391a01ed511c20d71b642dee203 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 17 Jul 2019 01:50:58 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issues in [45651]. See #38195. Built from https://develop.svn.wordpress.org/trunk@45652 git-svn-id: http://core.svn.wordpress.org/trunk@45463 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 10 +++++----- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 8e1da0ecbd..8a24b83f33 100644 --- a/wp-includes/post.php +++ b/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)' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index cc867445f6..31a358b559 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45651'; +$wp_version = '5.3-alpha-45652'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.