From 57cfd48f3801b7af8ea598ead1b22e497af29b79 Mon Sep 17 00:00:00 2001 From: Vraja Das Date: Thu, 2 Jan 2025 11:40:46 +0200 Subject: [PATCH 1/2] fix outdated translations --- src/integrations/admin/link-count-columns-integration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/integrations/admin/link-count-columns-integration.php b/src/integrations/admin/link-count-columns-integration.php index 3f2d2a8b3cc..c9f72bc7ab9 100644 --- a/src/integrations/admin/link-count-columns-integration.php +++ b/src/integrations/admin/link-count-columns-integration.php @@ -136,7 +136,7 @@ public function add_post_columns( $columns ) { $columns[ 'wpseo-' . self::COLUMN_LINKS ] = \sprintf( '%2$s', - \esc_attr__( 'Number of outgoing internal links in this post. See "Yoast Columns" text in the help tab for more info.', 'wordpress-seo' ), + \esc_attr__( 'Number of outgoing internal links in this post.', 'wordpress-seo' ), /* translators: Hidden accessibility text. */ \esc_html__( 'Outgoing internal links', 'wordpress-seo' ) ); @@ -144,7 +144,7 @@ public function add_post_columns( $columns ) { if ( $this->post_link_indexing_action->get_total_unindexed() === 0 ) { $columns[ 'wpseo-' . self::COLUMN_LINKED ] = \sprintf( '%2$s', - \esc_attr__( 'Number of internal links linking to this post. See "Yoast Columns" text in the help tab for more info.', 'wordpress-seo' ), + \esc_attr__( 'Number of internal links linking to this post.', 'wordpress-seo' ), /* translators: Hidden accessibility text. */ \esc_html__( 'Received internal links', 'wordpress-seo' ) ); From 9beb29af927cf674b2e730131633fbf468a03633 Mon Sep 17 00:00:00 2001 From: Vraja Das Date: Thu, 2 Jan 2025 11:41:05 +0200 Subject: [PATCH 2/2] remove useless translation --- packages/js/src/components/WincherPerformanceReport.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/packages/js/src/components/WincherPerformanceReport.js b/packages/js/src/components/WincherPerformanceReport.js index a5e1e5b7afa..8f10ee73041 100644 --- a/packages/js/src/components/WincherPerformanceReport.js +++ b/packages/js/src/components/WincherPerformanceReport.js @@ -354,15 +354,7 @@ const TableExplanation = ( { isLoggedIn } ) => { ) } , - wincherLink: - { - sprintf( - /* translators: %s : Expands to "Wincher". */ - __( "%s", "wordpress-seo" ), - "Wincher" - ) - } - , + wincherLink: Wincher, }, } ) }