diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-admin/erase-personal-data.php --- a/wp/wp-admin/erase-personal-data.php Thu Sep 29 08:06:27 2022 +0200 +++ b/wp/wp-admin/erase-personal-data.php Fri Sep 05 18:40:08 2025 +0200 @@ -13,6 +13,9 @@ wp_die( __( 'Sorry, you are not allowed to erase personal data on this site.' ) ); } +// Used in the HTML title tag. +$title = __( 'Erase Personal Data' ); + // Contextual help - choose Help on the top right of admin panel to preview this. get_current_screen()->add_help_tab( array( @@ -31,7 +34,7 @@ 'id' => 'default-data', 'title' => __( 'Default Data' ), 'content' => - '
' . __( 'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include: ' ) . '
' . + '' . __( 'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:' ) . '
' . '' . __( '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 which is 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.' ) . '
' . @@ -52,15 +55,15 @@ '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.' ) . '
' . - '' . __( 'If you are a plugin author, you can learn more about how to add support for the Personal Data Eraser to a plugin here.' ) . '
' . - $privacy_policy_guide, + $privacy_policy_guide . + '' . __( 'If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.' ) . '
', ) ); get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Erase Personal Data' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Erase Personal Data' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // Handle list table actions.