Skip to content

Commit

Permalink
Feedback changes
Browse files Browse the repository at this point in the history
  • Loading branch information
karthick-murugan committed Dec 20, 2024
1 parent 6a928ea commit 0c59538
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/fields/src/actions/permanently-delete-post.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,17 @@ const permanentlyDeletePost: Action< PostWithPermissions > = {
? sprintf(
// translators: %d: number of items to delete.
_n(
'Permanently delete %d item?',
'Permanently delete %d items?',
'Are you sure you want to permanently delete %d item?',
'Are you sure you want to permanently delete %d items?',
items.length
),
items.length
)
: sprintf(
// translators: %s: The post's title
__( 'Permanently delete "%s"?' ),
__(
'Are you sure you want to permanently delete "%s"?'
),
decodeEntities( getItemTitle( items[ 0 ] ) )
) }
</Text>
Expand Down

0 comments on commit 0c59538

Please sign in to comment.