Skip to content

Commit

Permalink
Update modal description and button label
Browse files Browse the repository at this point in the history
  • Loading branch information
HrithikDalal committed Dec 26, 2023
1 parent c2a54cd commit 9afbdbd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ function ConfirmDeleteDialog( {
return (
<ConfirmDialog
isOpen={ isConfirmDeleteOpen }
cancelButtonText={ __( 'No, keep the font' ) }
confirmButtonText={ __( 'Yes, uninstall' ) }
cancelButtonText={ __( 'Cancel' ) }
confirmButtonText={ __( 'Delete' ) }
onCancel={ handleCancelUninstall }
onConfirm={ handleConfirmUninstall }
>
{ font &&
sprintf(
/* translators: %s: Name of the font. */
__(
'Would you like to remove %s and all its variants and assets?'
'Are you sure you want to delete "%s" font and all its variants and assets?'
),
font.name
) }
Expand Down

0 comments on commit 9afbdbd

Please sign in to comment.