From 9c9c576d8872403c6d84ff426d3916709c68faf6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 30 Nov 2021 08:33:05 +0000 Subject: [PATCH] I18N: Remove redundant `default` text domain parameter in some `__()` calls. Follow-up to [51160], [52069]. See #53359. Built from https://develop.svn.wordpress.org/trunk@52278 git-svn-id: http://core.svn.wordpress.org/trunk@51870 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../endpoints/class-wp-rest-widget-types-controller.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php index 2fd591c719..e38d46b918 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php @@ -110,12 +110,12 @@ class WP_REST_Widget_Types_Controller extends WP_REST_Controller { 'callback' => array( $this, 'render' ), 'args' => array( 'id' => array( - 'description' => __( 'The widget type id.', 'default' ), + 'description' => __( 'The widget type id.' ), 'type' => 'string', 'required' => true, ), 'instance' => array( - 'description' => __( 'Current instance settings of the widget.', 'default' ), + 'description' => __( 'Current instance settings of the widget.' ), 'type' => 'object', ), ), diff --git a/wp-includes/version.php b/wp-includes/version.php index e698c84ff2..9ede554ad4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52277'; +$wp_version = '5.9-alpha-52278'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.