diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index 7912b640a45284..8744af2cf79ca1 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -1430,6 +1430,7 @@ "download": "Download", "download_recording": "Download Recording", "recording_from_your_recent_call": "A recording from your recent call on {{appName}} is ready for download", + "link_valid_for_12_hrs":"Note: The download link is valid only for 12 hours. You can generate new download link by following instructions <1>here.", "create_your_first_form": "Create your first form", "create_your_first_form_description": "With Routing Forms you can ask qualifying questions and route to the correct person or event type.", "create_your_first_webhook": "Create your first Webhook", @@ -2319,7 +2320,7 @@ "field_identifiers_as_variables": "Use field identifiers as variables for your custom event redirect", "field_identifiers_as_variables_with_example": "Use field identifiers as variables for your custom event redirect (e.g. {{variable}})", "account_already_linked": "Account is already linked", - + "email_team_invite|subject|added_to_org": "{{user}} added you to the organization {{team}} on {{appName}}", "email_team_invite|subject|invited_to_org": "{{user}} invited you to join the organization {{team}} on {{appName}}", "email_team_invite|subject|added_to_subteam": "{{user}} added you to the team {{team}} of organization {{parentTeamName}} on {{appName}}", diff --git a/packages/emails/src/templates/DailyVideoDownloadRecordingEmail.tsx b/packages/emails/src/templates/DailyVideoDownloadRecordingEmail.tsx index 0c81b7db0633bf..1244e0de082fe3 100644 --- a/packages/emails/src/templates/DailyVideoDownloadRecordingEmail.tsx +++ b/packages/emails/src/templates/DailyVideoDownloadRecordingEmail.tsx @@ -1,4 +1,5 @@ import type { TFunction } from "next-i18next"; +import { Trans } from "next-i18next"; import { WEBAPP_URL, APP_NAME, COMPANY_NAME } from "@calcom/lib/constants"; @@ -87,6 +88,14 @@ export const DailyVideoDownloadRecordingEmail = ( +

+ + Note: The download link is valid only for 12 hours. You can generate new download link by following + instructions + here + +

+

<>{props.language("happy_scheduling")},

diff --git a/packages/features/ee/video/ViewRecordingsDialog.tsx b/packages/features/ee/video/ViewRecordingsDialog.tsx index a9ed503185d00e..3f4f8e0ed61df3 100644 --- a/packages/features/ee/video/ViewRecordingsDialog.tsx +++ b/packages/features/ee/video/ViewRecordingsDialog.tsx @@ -9,7 +9,7 @@ import type { RecordingItemSchema } from "@calcom/prisma/zod-utils"; import type { RouterOutputs } from "@calcom/trpc/react"; import { trpc } from "@calcom/trpc/react"; import type { PartialReference } from "@calcom/types/EventManager"; -import { Button, Dialog, DialogClose, DialogContent, DialogFooter, DialogHeader, Icon } from "@calcom/ui"; +import { Button, Dialog, DialogClose, DialogContent, DialogFooter, DialogHeader } from "@calcom/ui"; import RecordingListSkeleton from "./components/RecordingListSkeleton";