Privacy: Ensure bulk action related strings end with periods.

Props garrett-eclipse, mukesh27.
Fixes #51371.
Built from https://develop.svn.wordpress.org/trunk@49035


git-svn-id: http://core.svn.wordpress.org/trunk@48797 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2020-09-22 18:40:04 +00:00
parent 6ff2fbb6cd
commit a16faa6989
2 changed files with 3 additions and 3 deletions

View File

@ -242,7 +242,7 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
'bulk_action',
'bulk_action',
/* translators: %d: Number of requests. */
sprintf( _n( 'Deleted %d request', 'Deleted %d requests', $count ), $count ),
sprintf( _n( 'Deleted %d request.', 'Deleted %d requests.', $count ), $count ),
'success'
);
break;
@ -259,7 +259,7 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
'bulk_action',
'bulk_action',
/* translators: %d: Number of requests. */
sprintf( _n( 'Re-sent %d request', 'Re-sent %d requests', $count ), $count ),
sprintf( _n( 'Re-sent %d request.', 'Re-sent %d requests.', $count ), $count ),
'success'
);
break;

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6-alpha-49034';
$wp_version = '5.6-alpha-49035';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.