diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-admin/export-personal-data.php --- a/wp/wp-admin/export-personal-data.php Thu Sep 29 08:06:27 2022 +0200 +++ b/wp/wp-admin/export-personal-data.php Fri Sep 05 18:40:08 2025 +0200 @@ -13,6 +13,9 @@ wp_die( __( 'Sorry, you are not allowed to export personal data on this site.' ) ); } +// Used in the HTML title tag. +$title = __( 'Export Personal Data' ); + // Contextual help - choose Help on the top right of admin panel to preview this. get_current_screen()->add_help_tab( array( @@ -52,15 +55,15 @@ '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.' ) . '

' . - $privacy_policy_guide, + $privacy_policy_guide . + '

' . __( 'If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.' ) . '

', ) ); get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . - '

' . __( 'Documentation on Export Personal Data' ) . '

' . - '

' . __( 'Support' ) . '

' + '

' . __( 'Documentation on Export Personal Data' ) . '

' . + '

' . __( 'Support forums' ) . '

' ); // Handle list table actions.