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
This commit is contained in:
Sergey Biryukov 2021-11-30 08:33:05 +00:00
parent dc3ffcbde3
commit 9c9c576d88
2 changed files with 3 additions and 3 deletions

View File

@ -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',
),
),

View File

@ -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.