Themes: Remove a stray slash and gutenberg text domain.

See #45125.
Built from https://develop.svn.wordpress.org/branches/5.0@43791


git-svn-id: http://core.svn.wordpress.org/branches/5.0@43620 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2018-10-23 06:08:19 +00:00
parent 8caf4f9260
commit 4caf9b7aaf
3 changed files with 3 additions and 3 deletions

View File

@ -168,7 +168,7 @@ class WP_REST_Themes_Controller extends WP_REST_Controller {
'readonly' => true,
),
'responsive-embeds' => array(
'description' => __( 'Whether the theme supports responsive embedded content.', 'gutenberg' ),
'description' => __( 'Whether the theme supports responsive embedded content.' ),
'type' => 'bool',
'readonly' => true,
),

View File

@ -2217,7 +2217,7 @@ function get_theme_starter_content() {
* @param string $feature The feature being added. Likely core values include 'post-formats',
* 'post-thumbnails', 'html5', 'custom-logo', 'custom-header-uploads',
* 'custom-header', 'custom-background', 'title-tag', 'starter-content',
* 'responsive-embeds/', etc.
* 'responsive-embeds', etc.
* @param mixed $args,... Optional extra arguments to pass along with certain features.
* @return void|bool False on failure, void otherwise.
*/

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-43790';
$wp_version = '5.0-alpha-43791';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.