Skip to content

Commit

Permalink
fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
Derikyan committed Nov 13, 2024
1 parent 2e0b5e4 commit 8d92e87
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,9 +524,12 @@ export const CodeEditor = ({ sourcesFolderId, setValue }: Props) => {
isOpen={!!deletingFileId}
heading={t('Confirm deleting')}
description={
t('Are you sure that you want permanently delete {{name}}?', {
name: deletingFileId?.split('/').pop(),
}) || ''
t(
'Are you sure that you want to delete "{{name}}" permanently?',
{
name: deletingFileId?.split('/').pop(),
},
) || ''
}
confirmLabel={t('Confirm')}
cancelLabel={t('Cancel')}
Expand Down

0 comments on commit 8d92e87

Please sign in to comment.