From 78cf2760354fe508d4abaf19403514034cbef1c9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov <sergeybiryukov@git.wordpress.org> Date: Tue, 30 Nov 2021 08:31:48 +0000 Subject: [PATCH] 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 --- .../endpoints/class-wp-rest-widget-types-controller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php index 2fd591c719..e38d46b918 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php +++ b/src/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', ), ),