mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
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:
parent
6ff2fbb6cd
commit
a16faa6989
@ -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;
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user