fix: add hardcoded strings to locales so they can be translated (#11266)

This commit is contained in:
Ujwal Kumar
2023-09-11 13:00:38 +02:00
committed by GitHub
parent 13fd02d174
commit 32754bd120
3 changed files with 5 additions and 3 deletions
@@ -592,6 +592,8 @@
"invite_new_member": "Invite a new team member",
"invite_new_member_description": "Note: This will <1>cost an extra seat ($15/m)</1> on your subscription.",
"invite_new_team_member": "Invite someone to your team.",
"upload_csv_file": "Upload a .csv file",
"invite_via_email": "Invite via email",
"change_member_role": "Change team member role",
"disable_cal_branding": "Disable {{appName}} branding",
"disable_cal_branding_description": "Hide all {{appName}} branding from your public pages.",
@@ -71,7 +71,7 @@ export const AddNewOrgAdminsForm = () => {
<>
<TextAreaField
name="emails"
label="Invite via email"
label={t("invite_via_email")}
rows={4}
autoCorrect="off"
placeholder="john@doe.com, alex@smith.com"
@@ -233,7 +233,7 @@ export default function MemberInvitationModal(props: MemberInvitationModalProps)
{/* TODO: Make this a fancy email input that styles on a successful email. */}
<TextAreaField
name="emails"
label="Invite via email"
label={t("invite_via_email")}
rows={4}
autoCorrect="off"
placeholder="john@doe.com, alex@smith.com"
@@ -269,7 +269,7 @@ export default function MemberInvitationModal(props: MemberInvitationModalProps)
}}
StartIcon={PaperclipIcon}
className="mt-3 justify-center stroke-2">
Upload a .csv file
{t("upload_csv_file")}
</Button>
<input
ref={importRef}