From d2bf9ee9c8c43f541279bbe2da2da7c5910171fd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 21 Feb 2021 16:02:47 +0000 Subject: [PATCH] I18N: Remove extra spaces from translatable strings in Privacy help tabs. Follow-up to [50147]. Props tobifjellner. Fixes #52583. git-svn-id: https://develop.svn.wordpress.org/trunk@50398 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/erase-personal-data.php | 2 +- src/wp-admin/export-personal-data.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/erase-personal-data.php b/src/wp-admin/erase-personal-data.php index b79b34fc12..d841839fd2 100644 --- a/src/wp-admin/erase-personal-data.php +++ b/src/wp-admin/erase-personal-data.php @@ -52,7 +52,7 @@ get_current_screen()->add_help_tab( 'title' => __( 'Plugin Data' ), 'content' => '

' . __( 'Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.' ) . '

' . - '

' . __( 'Plugin authors can learn more about how to add support for the Personal Data Eraser to a plugin here.' ) . '

' . + '

' . __( 'Plugin authors can learn more about how to add support for the Personal Data Eraser to a plugin here.' ) . '

' . $privacy_policy_guide, ) ); diff --git a/src/wp-admin/export-personal-data.php b/src/wp-admin/export-personal-data.php index e1f4fd255f..a184271c98 100644 --- a/src/wp-admin/export-personal-data.php +++ b/src/wp-admin/export-personal-data.php @@ -35,7 +35,7 @@ get_current_screen()->add_help_tab( '

' . __( 'Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.' ) . '

' . '

' . __( 'Community Events Location — The IP Address of the user used for the Upcoming Community Events shown in the dashboard widget.' ) . '

' . '

' . __( 'Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.' ) . '

' . - '

' . __( 'Comments — For any comments made by the user, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL. ' ) . '

' . + '

' . __( 'Comments — For any comments made by the user, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.' ) . '

' . '

' . __( 'Media — A list of URLs for all media file uploads made by the user.' ) . '

', ) ); @@ -52,7 +52,7 @@ get_current_screen()->add_help_tab( 'title' => __( 'Plugin Data' ), 'content' => '

' . __( 'Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.' ) . '

' . - '

' . __( 'Plugin authors can learn more about how to add the Personal Data Exporter to a plugin here.' ) . '

' . + '

' . __( 'Plugin authors can learn more about how to add the Personal Data Exporter to a plugin here.' ) . '

' . $privacy_policy_guide, ) );