I18N: Remove extra spaces from translatable strings in Privacy help tabs.
Follow-up to [50147]. Props tobifjellner. Fixes #52583. Built from https://develop.svn.wordpress.org/trunk@50398 git-svn-id: http://core.svn.wordpress.org/trunk@50009 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0d8da2d665
commit
17fa3f6b6d
|
@ -52,7 +52,7 @@ get_current_screen()->add_help_tab(
|
||||||
'title' => __( 'Plugin Data' ),
|
'title' => __( 'Plugin Data' ),
|
||||||
'content' =>
|
'content' =>
|
||||||
'<p>' . __( '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.' ) . '</p>' .
|
'<p>' . __( '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.' ) . '</p>' .
|
||||||
'<p>' . __( 'Plugin authors can <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/" target=_blank"> learn more about how to add support for the Personal Data Eraser to a plugin here</a>.' ) . '</p>' .
|
'<p>' . __( 'Plugin authors can <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/" target="_blank">learn more about how to add support for the Personal Data Eraser to a plugin here</a>.' ) . '</p>' .
|
||||||
$privacy_policy_guide,
|
$privacy_policy_guide,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
|
@ -35,7 +35,7 @@ get_current_screen()->add_help_tab(
|
||||||
'<p>' . __( '<strong>Profile Information</strong> — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.' ) . '</p>' .
|
'<p>' . __( '<strong>Profile Information</strong> — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.' ) . '</p>' .
|
||||||
'<p>' . __( '<strong>Community Events Location</strong> — The IP Address of the user used for the Upcoming Community Events shown in the dashboard widget.' ) . '</p>' .
|
'<p>' . __( '<strong>Community Events Location</strong> — The IP Address of the user used for the Upcoming Community Events shown in the dashboard widget.' ) . '</p>' .
|
||||||
'<p>' . __( '<strong>Session Tokens</strong> — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.' ) . '</p>' .
|
'<p>' . __( '<strong>Session Tokens</strong> — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.' ) . '</p>' .
|
||||||
'<p>' . __( '<strong>Comments</strong> — For any comments made by the user, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL. ' ) . '</p>' .
|
'<p>' . __( '<strong>Comments</strong> — For any comments made by the user, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.' ) . '</p>' .
|
||||||
'<p>' . __( '<strong>Media</strong> — A list of URLs for all media file uploads made by the user.' ) . '</p>',
|
'<p>' . __( '<strong>Media</strong> — A list of URLs for all media file uploads made by the user.' ) . '</p>',
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -52,7 +52,7 @@ get_current_screen()->add_help_tab(
|
||||||
'title' => __( 'Plugin Data' ),
|
'title' => __( 'Plugin Data' ),
|
||||||
'content' =>
|
'content' =>
|
||||||
'<p>' . __( '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.' ) . '</p>' .
|
'<p>' . __( '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.' ) . '</p>' .
|
||||||
'<p>' . __( 'Plugin authors can <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-exporter-to-your-plugin/" target=_blank"> learn more about how to add the Personal Data Exporter to a plugin here</a>.' ) . '</p>' .
|
'<p>' . __( 'Plugin authors can <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-exporter-to-your-plugin/" target="_blank">learn more about how to add the Personal Data Exporter to a plugin here</a>.' ) . '</p>' .
|
||||||
$privacy_policy_guide,
|
$privacy_policy_guide,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-beta3-50397';
|
$wp_version = '5.7-beta3-50398';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue