diff --git a/src/features/dashboard/components/Dialogs/DeleteAppDialog/index.tsx b/src/features/dashboard/components/Dialogs/DeleteAppDialog/index.tsx
index 608fcfb1b..4c4a477ad 100644
--- a/src/features/dashboard/components/Dialogs/DeleteAppDialog/index.tsx
+++ b/src/features/dashboard/components/Dialogs/DeleteAppDialog/index.tsx
@@ -2,6 +2,7 @@ import React, { useMemo, useCallback } from 'react';
import { TModalActionButton } from '@deriv/ui/dist/types/src/components/core/modal/types';
import { Modal } from '@deriv/ui';
import { useDeleteApp } from '../../../hooks/useDeleteApp';
+import { translate } from '@docusaurus/Translate';
type TDeleteAppDialogProps = {
appId: number;
@@ -24,7 +25,7 @@ const DeleteAppDialog = ({ appId, onClose }: TDeleteAppDialogProps) => {
() => [
{
id: 0,
- text: 'Yes, delete',
+ text: translate({ message: 'Yes, delete' }),
color: 'primary',
onClick: () => {
deleteApp(appId);
@@ -33,7 +34,7 @@ const DeleteAppDialog = ({ appId, onClose }: TDeleteAppDialogProps) => {
},
{
id: 1,
- text: 'Cancel',
+ text: translate({ message: 'Cancel' }),
color: 'secondary',
onClick: () => {
onClose();
@@ -49,8 +50,8 @@ const DeleteAppDialog = ({ appId, onClose }: TDeleteAppDialogProps) => {