I18N: Remove redundant default text domain parameter in some __() calls.

Follow-up to [51160], [52069].

See #53359.

git-svn-id: https://develop.svn.wordpress.org/trunk@52278 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-11-30 08:31:48 +00:00
parent e7c4d4720f
commit 78cf276035

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