Skip to content

Commit a1a2a14

Browse files
authored
chore: add instruction in recording email (calcom#14424)
1 parent 9740445 commit a1a2a14

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

apps/web/public/static/locales/en/common.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1430,6 +1430,7 @@
14301430
"download": "Download",
14311431
"download_recording": "Download Recording",
14321432
"recording_from_your_recent_call": "A recording from your recent call on {{appName}} is ready for download",
1433+
"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</1>.",
14331434
"create_your_first_form": "Create your first form",
14341435
"create_your_first_form_description": "With Routing Forms you can ask qualifying questions and route to the correct person or event type.",
14351436
"create_your_first_webhook": "Create your first Webhook",
@@ -2319,7 +2320,7 @@
23192320
"field_identifiers_as_variables": "Use field identifiers as variables for your custom event redirect",
23202321
"field_identifiers_as_variables_with_example": "Use field identifiers as variables for your custom event redirect (e.g. {{variable}})",
23212322
"account_already_linked": "Account is already linked",
2322-
2323+
23232324
"email_team_invite|subject|added_to_org": "{{user}} added you to the organization {{team}} on {{appName}}",
23242325
"email_team_invite|subject|invited_to_org": "{{user}} invited you to join the organization {{team}} on {{appName}}",
23252326
"email_team_invite|subject|added_to_subteam": "{{user}} added you to the team {{team}} of organization {{parentTeamName}} on {{appName}}",

packages/emails/src/templates/DailyVideoDownloadRecordingEmail.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { TFunction } from "next-i18next";
2+
import { Trans } from "next-i18next";
23

34
import { WEBAPP_URL, APP_NAME, COMPANY_NAME } from "@calcom/lib/constants";
45

@@ -87,6 +88,14 @@ export const DailyVideoDownloadRecordingEmail = (
8788
<CallToAction label={props.language("download_recording")} href={props.downloadLink} />
8889
</div>
8990

91+
<p style={{ fontWeight: 500, lineHeight: "20px", marginTop: "8px" }}>
92+
<Trans i18nKey="link_valid_for_12_hrs">
93+
Note: The download link is valid only for 12 hours. You can generate new download link by following
94+
instructions
95+
<a href="https://cal.com/docs/enterprise-features/teams/cal-video-recordings"> here</a>
96+
</Trans>
97+
</p>
98+
9099
<p style={{ fontWeight: 400, lineHeight: "24px", marginTop: "32px", marginBottom: "8px" }}>
91100
<>{props.language("happy_scheduling")},</>
92101
</p>

packages/features/ee/video/ViewRecordingsDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { RecordingItemSchema } from "@calcom/prisma/zod-utils";
99
import type { RouterOutputs } from "@calcom/trpc/react";
1010
import { trpc } from "@calcom/trpc/react";
1111
import type { PartialReference } from "@calcom/types/EventManager";
12-
import { Button, Dialog, DialogClose, DialogContent, DialogFooter, DialogHeader, Icon } from "@calcom/ui";
12+
import { Button, Dialog, DialogClose, DialogContent, DialogFooter, DialogHeader } from "@calcom/ui";
1313

1414
import RecordingListSkeleton from "./components/RecordingListSkeleton";
1515

0 commit comments

Comments
 (0)