From 7f20da50e7019308ee5aaa77dc99f357790f5f73 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 8 Jul 2021 17:06:29 +0000 Subject: [PATCH] Coding Standards: Remove wrapping HTML tags from translatable strings. This fixes a "Strings should not be wrapped in HTML" WPCS warning in help tabs for Export Personal Data and Erase Personal Data screens. Follow-up to [50147]. See #53359. git-svn-id: https://develop.svn.wordpress.org/trunk@51381 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/erase-personal-data.php | 2 +- src/wp-admin/export-personal-data.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/erase-personal-data.php b/src/wp-admin/erase-personal-data.php index d841839fd2..3bc787cbe9 100644 --- a/src/wp-admin/erase-personal-data.php +++ b/src/wp-admin/erase-personal-data.php @@ -22,7 +22,7 @@ get_current_screen()->add_help_tab( '

' . __( 'This screen allows you to manage requests to erase or delete personal data.' ) . '

' . '

' . __( 'Deleting, anonymizing, or forgetting all data that a business or website has collected about an individual is a requirement of many Privacy Laws around the world, and is sometimes referred to as the "Right To Be Forgotten".' ) . '

' . '

' . __( 'The tool associates data stored in WordPress by a supplied email address, including profile data and comments.' ) . '

' . - '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. You should also delete any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', + '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. You should also delete any data collected by or stored with any 3rd party services used by your business or site.' ) . '

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

' . __( 'This screen allows you to manage requests for an export of personal data.' ) . '

' . '

' . __( 'Providing an export of all data that a business or website has collected about an individual is a requirement of many Privacy Laws around the world, and is sometimes referred to as the "Right To Data Portability".' ) . '

' . '

' . __( 'The tool associates data stored in WordPress by a supplied email address, including profile data and comments.' ) . '

' . - '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. You should also send the requestor any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', + '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. You should also send the requestor any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', ) );