diff -r 3d4e9c994f10 -r a86126ab1dd4 wp/wp-includes/widgets/class-wp-widget-media-video.php --- a/wp/wp-includes/widgets/class-wp-widget-media-video.php Tue Oct 22 16:11:46 2019 +0200 +++ b/wp/wp-includes/widgets/class-wp-widget-media-video.php Tue Dec 15 13:49:49 2020 +0100 @@ -12,6 +12,7 @@ * * @since 4.8.0 * + * @see WP_Widget_Media * @see WP_Widget */ class WP_Widget_Media_Video extends WP_Widget_Media { @@ -39,14 +40,14 @@ 'replace_media' => _x( 'Replace Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ), 'edit_media' => _x( 'Edit Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ), 'missing_attachment' => sprintf( - /* translators: %s: URL to media library */ + /* translators: %s: URL to media library. */ __( 'We can’t find that video. Check your media library and make sure it wasn’t deleted.' ), esc_url( admin_url( 'upload.php' ) ) ), - /* translators: %d: widget count */ + /* translators: %d: Widget count. */ 'media_library_state_multi' => _n_noop( 'Video Widget (%d)', 'Video Widget (%d)' ), 'media_library_state_single' => __( 'Video Widget' ), - /* translators: %s: a list of valid video file extensions */ + /* translators: %s: A list of valid video file extensions. */ 'unsupported_file_type' => sprintf( __( 'Sorry, we can’t load the video at the supplied URL. Please check that the URL is for a supported video file (%s) or stream (e.g. YouTube and Vimeo).' ), '.' . implode( ', .', wp_get_video_extensions() ) . '' ), ) ); @@ -60,6 +61,7 @@ * @see WP_REST_Controller::get_item_schema() * @see WP_REST_Controller::get_additional_fields() * @link https://core.trac.wordpress.org/ticket/35574 + * * @return array Schema for properties. */ public function get_instance_schema() { @@ -92,7 +94,7 @@ 'type' => 'string', 'default' => '', 'format' => 'uri', - /* translators: %s: video extension */ + /* translators: %s: Video extension. */ 'description' => sprintf( __( 'URL to the %s video source file' ), $video_extension ), ); } @@ -106,8 +108,6 @@ * @since 4.8.0 * * @param array $instance Widget instance props. - * - * @return void */ public function render_media( $instance ) { $instance = array_merge( wp_list_pluck( $this->get_instance_schema(), 'default' ), $instance );