B2B-30: rename teams and members to companies and employees
This commit is contained in:
@@ -149,7 +149,7 @@ async function PersonalAccountPage(props: { account: Account }) {
|
|||||||
<SubscriptionsTable accountId={props.account.id} />
|
<SubscriptionsTable accountId={props.account.id} />
|
||||||
|
|
||||||
<div className={'divider-divider-x flex flex-col gap-y-2.5'}>
|
<div className={'divider-divider-x flex flex-col gap-y-2.5'}>
|
||||||
<Heading level={6}>Teams</Heading>
|
<Heading level={6}>Companies</Heading>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<AdminMembershipsTable memberships={memberships} />
|
<AdminMembershipsTable memberships={memberships} />
|
||||||
@@ -205,16 +205,15 @@ async function TeamAccountPage(props: {
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Badge variant={'outline'}>Team Account</Badge>
|
<Badge variant={'outline'}>Company Account</Badge>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div className={'flex flex-col gap-y-8'}>
|
<div className={'flex flex-col gap-y-8'}>
|
||||||
<SubscriptionsTable accountId={props.account.id} />
|
|
||||||
|
|
||||||
<div className={'flex flex-col gap-y-2.5'}>
|
<div className={'flex flex-col gap-y-2.5'}>
|
||||||
<Heading level={6}>Team Members</Heading>
|
<Heading level={6}>Company Employees</Heading>
|
||||||
|
|
||||||
<AdminMembersTable members={members} />
|
<AdminMembersTable members={members} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ function AccountsTableFilters(props: {
|
|||||||
<SelectLabel>Account Type</SelectLabel>
|
<SelectLabel>Account Type</SelectLabel>
|
||||||
|
|
||||||
<SelectItem value={'all'}>All accounts</SelectItem>
|
<SelectItem value={'all'}>All accounts</SelectItem>
|
||||||
<SelectItem value={'team'}>Team</SelectItem>
|
<SelectItem value={'team'}>Company</SelectItem>
|
||||||
<SelectItem value={'personal'}>Personal</SelectItem>
|
<SelectItem value={'personal'}>Personal</SelectItem>
|
||||||
</SelectGroup>
|
</SelectGroup>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
@@ -183,7 +183,7 @@ function getColumns(): ColumnDef<Account>[] {
|
|||||||
id: 'type',
|
id: 'type',
|
||||||
header: 'Type',
|
header: 'Type',
|
||||||
cell: ({ row }) => {
|
cell: ({ row }) => {
|
||||||
return row.original.is_personal_account ? 'Personal' : 'Team';
|
return row.original.is_personal_account ? 'Personal' : 'Company';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -248,7 +248,7 @@ function getColumns(): ColumnDef<Account>[] {
|
|||||||
<If condition={!isPersonalAccount}>
|
<If condition={!isPersonalAccount}>
|
||||||
<AdminDeleteAccountDialog accountId={row.original.id}>
|
<AdminDeleteAccountDialog accountId={row.original.id}>
|
||||||
<DropdownMenuItem onSelect={(e) => e.preventDefault()}>
|
<DropdownMenuItem onSelect={(e) => e.preventDefault()}>
|
||||||
Delete Team Account
|
Delete Company Account
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
</AdminDeleteAccountDialog>
|
</AdminDeleteAccountDialog>
|
||||||
</If>
|
</If>
|
||||||
|
|||||||
@@ -36,10 +36,10 @@ export async function AdminDashboard() {
|
|||||||
|
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Team Accounts</CardTitle>
|
<CardTitle>Company Accounts</CardTitle>
|
||||||
|
|
||||||
<CardDescription>
|
<CardDescription>
|
||||||
The number of team accounts that have been created.
|
The number of company accounts that have been created.
|
||||||
</CardDescription>
|
</CardDescription>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
|
|
||||||
@@ -49,43 +49,6 @@ export async function AdminDashboard() {
|
|||||||
</div>
|
</div>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
<Card>
|
|
||||||
<CardHeader>
|
|
||||||
<CardTitle>Paying Customers</CardTitle>
|
|
||||||
<CardDescription>
|
|
||||||
The number of paying customers with active subscriptions.
|
|
||||||
</CardDescription>
|
|
||||||
</CardHeader>
|
|
||||||
|
|
||||||
<CardContent>
|
|
||||||
<div className={'flex justify-between'}>
|
|
||||||
<Figure>{data.subscriptions}</Figure>
|
|
||||||
</div>
|
|
||||||
</CardContent>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
<Card>
|
|
||||||
<CardHeader>
|
|
||||||
<CardTitle>Trials</CardTitle>
|
|
||||||
|
|
||||||
<CardDescription>
|
|
||||||
The number of trial subscriptions currently active.
|
|
||||||
</CardDescription>
|
|
||||||
</CardHeader>
|
|
||||||
|
|
||||||
<CardContent>
|
|
||||||
<div className={'flex justify-between'}>
|
|
||||||
<Figure>{data.trials}</Figure>
|
|
||||||
</div>
|
|
||||||
</CardContent>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<p className={'text-muted-foreground w-max text-xs'}>
|
|
||||||
The above data is estimated and may not be 100% accurate.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ function getColumns(): ColumnDef<Memberships>[] {
|
|||||||
{
|
{
|
||||||
header: 'Role',
|
header: 'Role',
|
||||||
cell: ({ row }) => {
|
cell: ({ row }) => {
|
||||||
return row.original.role;
|
return row.original.role === 'owner' ? 'HR' : 'Employee';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -63,8 +63,8 @@
|
|||||||
"sendingEmailCode": "Sending code...",
|
"sendingEmailCode": "Sending code...",
|
||||||
"resetPasswordError": "Sorry, we could not reset your password. Please try again.",
|
"resetPasswordError": "Sorry, we could not reset your password. Please try again.",
|
||||||
"emailPlaceholder": "your@email.com",
|
"emailPlaceholder": "your@email.com",
|
||||||
"inviteAlertHeading": "You have been invited to join a team",
|
"inviteAlertHeading": "You have been invited to join a company",
|
||||||
"inviteAlertBody": "Please sign in or sign up to accept the invite and join the team.",
|
"inviteAlertBody": "Please sign in or sign up to accept the invite and join the company.",
|
||||||
"acceptTermsAndConditions": "I accept the <TermsOfServiceLink /> and <PrivacyPolicyLink />",
|
"acceptTermsAndConditions": "I accept the <TermsOfServiceLink /> and <PrivacyPolicyLink />",
|
||||||
"termsOfService": "Terms of Service",
|
"termsOfService": "Terms of Service",
|
||||||
"privacyPolicy": "Privacy Policy",
|
"privacyPolicy": "Privacy Policy",
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"checkoutSuccessBackButton": "Proceed to App",
|
"checkoutSuccessBackButton": "Proceed to App",
|
||||||
"cannotManageBillingAlertTitle": "You cannot manage billing",
|
"cannotManageBillingAlertTitle": "You cannot manage billing",
|
||||||
"cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.",
|
"cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.",
|
||||||
"manageTeamPlan": "Manage your Team Plan",
|
"manageTeamPlan": "Manage your Company Plan",
|
||||||
"manageTeamPlanDescription": "Choose a plan that fits your team's needs. You can upgrade or downgrade your plan at any time.",
|
"manageTeamPlanDescription": "Choose a plan that fits your company's needs. You can upgrade or downgrade your plan at any time.",
|
||||||
"basePlan": "Base Plan",
|
"basePlan": "Base Plan",
|
||||||
"billingInterval": {
|
"billingInterval": {
|
||||||
"label": "Choose your billing interval",
|
"label": "Choose your billing interval",
|
||||||
@@ -34,9 +34,9 @@
|
|||||||
"redirectingToPayment": "Redirecting to checkout. Please wait...",
|
"redirectingToPayment": "Redirecting to checkout. Please wait...",
|
||||||
"proceedToPayment": "Proceed to Payment",
|
"proceedToPayment": "Proceed to Payment",
|
||||||
"startTrial": "Start Trial",
|
"startTrial": "Start Trial",
|
||||||
"perTeamMember": "Per team member",
|
"perTeamMember": "Per company employee",
|
||||||
"perUnit": "Per {{unit}} usage",
|
"perUnit": "Per {{unit}} usage",
|
||||||
"teamMembers": "Team Members",
|
"teamMembers": "Company Employees",
|
||||||
"includedUpTo": "Up to {{upTo}} {{unit}} included in the plan",
|
"includedUpTo": "Up to {{upTo}} {{unit}} included in the plan",
|
||||||
"fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}",
|
"fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}",
|
||||||
"andAbove": "above {{ previousTier }} {{ unit }}",
|
"andAbove": "above {{ previousTier }} {{ unit }}",
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"homeTabLabel": "Home",
|
"homeTabLabel": "Home",
|
||||||
"homeTabDescription": "Welcome to your home page",
|
"homeTabDescription": "Welcome to your home page",
|
||||||
"accountMembers": "Team Members",
|
"accountMembers": "Company Employees",
|
||||||
"membersTabDescription": "Here you can manage the members of your team.",
|
"membersTabDescription": "Here you can manage the employees of your company.",
|
||||||
"billingTabLabel": "Billing",
|
"billingTabLabel": "Billing",
|
||||||
"billingTabDescription": "Manage your billing and subscription",
|
"billingTabDescription": "Manage your billing and subscription",
|
||||||
"dashboardTabLabel": "Dashboard",
|
"dashboardTabLabel": "Dashboard",
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
"routes": {
|
"routes": {
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"account": "Account",
|
"account": "Account",
|
||||||
"members": "Members",
|
"members": "Employees",
|
||||||
"billing": "Billing",
|
"billing": "Billing",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
"label": "Owner"
|
"label": "Owner"
|
||||||
},
|
},
|
||||||
"member": {
|
"member": {
|
||||||
"label": "Member"
|
"label": "Employee"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"otp": {
|
"otp": {
|
||||||
|
|||||||
@@ -4,26 +4,26 @@
|
|||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"pageTitle": "Settings",
|
"pageTitle": "Settings",
|
||||||
"pageDescription": "Manage your Team details",
|
"pageDescription": "Manage your Company details",
|
||||||
"teamLogo": "Team Logo",
|
"teamLogo": "Company Logo",
|
||||||
"teamLogoDescription": "Update your team's logo to make it easier to identify",
|
"teamLogoDescription": "Update your company's logo to make it easier to identify",
|
||||||
"teamName": "Team Name",
|
"teamName": "Company Name",
|
||||||
"teamNameDescription": "Update your team's name",
|
"teamNameDescription": "Update your company's name",
|
||||||
"dangerZone": "Danger Zone",
|
"dangerZone": "Danger Zone",
|
||||||
"dangerZoneDescription": "This section contains actions that are irreversible"
|
"dangerZoneDescription": "This section contains actions that are irreversible"
|
||||||
},
|
},
|
||||||
"members": {
|
"members": {
|
||||||
"pageTitle": "Members"
|
"pageTitle": "Employees"
|
||||||
},
|
},
|
||||||
"billing": {
|
"billing": {
|
||||||
"pageTitle": "Billing"
|
"pageTitle": "Billing"
|
||||||
},
|
},
|
||||||
"yourTeams": "Your Teams ({{teamsCount}})",
|
"yourTeams": "Your Companies ({{teamsCount}})",
|
||||||
"createTeam": "Create a Team",
|
"createTeam": "Create a Company",
|
||||||
"creatingTeam": "Creating Team...",
|
"creatingTeam": "Creating Company...",
|
||||||
"personalAccount": "Personal Account",
|
"personalAccount": "Personal Account",
|
||||||
"searchAccount": "Search Account...",
|
"searchAccount": "Search Account...",
|
||||||
"membersTabLabel": "Members",
|
"membersTabLabel": "Employees",
|
||||||
"memberName": "Name",
|
"memberName": "Name",
|
||||||
"youLabel": "You",
|
"youLabel": "You",
|
||||||
"emailLabel": "Email",
|
"emailLabel": "Email",
|
||||||
@@ -31,108 +31,108 @@
|
|||||||
"primaryOwnerLabel": "Primary Owner",
|
"primaryOwnerLabel": "Primary Owner",
|
||||||
"joinedAtLabel": "Joined at",
|
"joinedAtLabel": "Joined at",
|
||||||
"invitedAtLabel": "Invited at",
|
"invitedAtLabel": "Invited at",
|
||||||
"inviteMembersPageSubheading": "Invite members to your Team",
|
"inviteMembersPageSubheading": "Invite employees to your Company",
|
||||||
"createTeamModalHeading": "Create Team",
|
"createTeamModalHeading": "Create Company",
|
||||||
"createTeamModalDescription": "Create a new Team to manage your projects and members.",
|
"createTeamModalDescription": "Create a new Company to manage your projects and employees.",
|
||||||
"teamNameLabel": "Team Name",
|
"teamNameLabel": "Company Name",
|
||||||
"teamNameDescription": "Your team name should be unique and descriptive",
|
"teamNameDescription": "Your company name should be unique and descriptive",
|
||||||
"createTeamSubmitLabel": "Create Team",
|
"createTeamSubmitLabel": "Create Company",
|
||||||
"createTeamSuccess": "Team created successfully",
|
"createTeamSuccess": "Company created successfully",
|
||||||
"createTeamError": "Team not created. Please try again.",
|
"createTeamError": "Company not created. Please try again.",
|
||||||
"createTeamLoading": "Creating team...",
|
"createTeamLoading": "Creating company...",
|
||||||
"settingsPageLabel": "General",
|
"settingsPageLabel": "General",
|
||||||
"createTeamDropdownLabel": "New team",
|
"createTeamDropdownLabel": "New company",
|
||||||
"changeRole": "Change Role",
|
"changeRole": "Change Role",
|
||||||
"removeMember": "Remove from Account",
|
"removeMember": "Remove from Account",
|
||||||
"inviteMembersSuccess": "Members invited successfully!",
|
"inviteMembersSuccess": "Employees invited successfully!",
|
||||||
"inviteMembersError": "Sorry, we encountered an error! Please try again",
|
"inviteMembersError": "Sorry, we encountered an error! Please try again",
|
||||||
"inviteMembersLoading": "Inviting members...",
|
"inviteMembersLoading": "Inviting employees...",
|
||||||
"removeInviteButtonLabel": "Remove invite",
|
"removeInviteButtonLabel": "Remove invite",
|
||||||
"addAnotherMemberButtonLabel": "Add another one",
|
"addAnotherMemberButtonLabel": "Add another one",
|
||||||
"inviteMembersButtonLabel": "Send Invites",
|
"inviteMembersButtonLabel": "Send Invites",
|
||||||
"removeMemberModalHeading": "You are removing this user",
|
"removeMemberModalHeading": "You are removing this user",
|
||||||
"removeMemberModalDescription": "Remove this member from the team. They will no longer have access to the team.",
|
"removeMemberModalDescription": "Remove this employee from the company. They will no longer have access to the company.",
|
||||||
"removeMemberSuccessMessage": "Member removed successfully",
|
"removeMemberSuccessMessage": "Employee removed successfully",
|
||||||
"removeMemberErrorMessage": "Sorry, we encountered an error. Please try again",
|
"removeMemberErrorMessage": "Sorry, we encountered an error. Please try again",
|
||||||
"removeMemberErrorHeading": "Sorry, we couldn't remove the selected member.",
|
"removeMemberErrorHeading": "Sorry, we couldn't remove the selected employee.",
|
||||||
"removeMemberLoadingMessage": "Removing member...",
|
"removeMemberLoadingMessage": "Removing employee...",
|
||||||
"removeMemberSubmitLabel": "Remove User from Team",
|
"removeMemberSubmitLabel": "Remove User from Company",
|
||||||
"chooseDifferentRoleError": "Role is the same as the current one",
|
"chooseDifferentRoleError": "Role is the same as the current one",
|
||||||
"updateRole": "Update Role",
|
"updateRole": "Update Role",
|
||||||
"updateRoleLoadingMessage": "Updating role...",
|
"updateRoleLoadingMessage": "Updating role...",
|
||||||
"updateRoleSuccessMessage": "Role updated successfully",
|
"updateRoleSuccessMessage": "Role updated successfully",
|
||||||
"updatingRoleErrorMessage": "Sorry, we encountered an error. Please try again.",
|
"updatingRoleErrorMessage": "Sorry, we encountered an error. Please try again.",
|
||||||
"updateMemberRoleModalHeading": "Update Member's Role",
|
"updateMemberRoleModalHeading": "Update Employee's Role",
|
||||||
"updateMemberRoleModalDescription": "Change the role of the selected member. The role determines the permissions of the member.",
|
"updateMemberRoleModalDescription": "Change the role of the selected member. The role determines the permissions of the member.",
|
||||||
"roleMustBeDifferent": "Role must be different from the current one",
|
"roleMustBeDifferent": "Role must be different from the current one",
|
||||||
"memberRoleInputLabel": "Member role",
|
"memberRoleInputLabel": "Member role",
|
||||||
"updateRoleDescription": "Pick a role for this member.",
|
"updateRoleDescription": "Pick a role for this member.",
|
||||||
"updateRoleSubmitLabel": "Update Role",
|
"updateRoleSubmitLabel": "Update Role",
|
||||||
"transferOwnership": "Transfer Ownership",
|
"transferOwnership": "Transfer Ownership",
|
||||||
"transferOwnershipDescription": "Transfer ownership of the team to another member.",
|
"transferOwnershipDescription": "Transfer ownership of the company account to another employee.",
|
||||||
"transferOwnershipInputLabel": "Please type TRANSFER to confirm the transfer of ownership.",
|
"transferOwnershipInputLabel": "Please type TRANSFER to confirm the transfer of ownership.",
|
||||||
"transferOwnershipInputDescription": "By transferring ownership, you will no longer be the primary owner of the team.",
|
"transferOwnershipInputDescription": "By transferring ownership, you will no longer be the primary owner of the company account.",
|
||||||
"deleteInvitation": "Delete Invitation",
|
"deleteInvitation": "Delete Invitation",
|
||||||
"deleteInvitationDialogDescription": "You are about to delete the invitation. The user will no longer be able to join the team.",
|
"deleteInvitationDialogDescription": "You are about to delete the invitation. The user will no longer be able to join the company account.",
|
||||||
"deleteInviteSuccessMessage": "Invite deleted successfully",
|
"deleteInviteSuccessMessage": "Invite deleted successfully",
|
||||||
"deleteInviteErrorMessage": "Invite not deleted. Please try again.",
|
"deleteInviteErrorMessage": "Invite not deleted. Please try again.",
|
||||||
"deleteInviteLoadingMessage": "Deleting invite. Please wait...",
|
"deleteInviteLoadingMessage": "Deleting invite. Please wait...",
|
||||||
"confirmDeletingMemberInvite": "You are deleting the invite to <b>{{ email }}</b>",
|
"confirmDeletingMemberInvite": "You are deleting the invite to <b>{{ email }}</b>",
|
||||||
"transferOwnershipDisclaimer": "You are transferring ownership of the selected team to <b>{{ member }}</b>.",
|
"transferOwnershipDisclaimer": "You are transferring ownership of the selected company account to <b>{{ member }}</b>.",
|
||||||
"transferringOwnership": "Transferring ownership...",
|
"transferringOwnership": "Transferring ownership...",
|
||||||
"transferOwnershipSuccess": "Ownership successfully transferred",
|
"transferOwnershipSuccess": "Ownership successfully transferred",
|
||||||
"transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.",
|
"transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.",
|
||||||
"deleteInviteSubmitLabel": "Delete Invite",
|
"deleteInviteSubmitLabel": "Delete Invite",
|
||||||
"youBadgeLabel": "You",
|
"youBadgeLabel": "You",
|
||||||
"updateTeamLoadingMessage": "Updating Team...",
|
"updateTeamLoadingMessage": "Updating Company...",
|
||||||
"updateTeamSuccessMessage": "Team successfully updated",
|
"updateTeamSuccessMessage": "Company successfully updated",
|
||||||
"updateTeamErrorMessage": "Could not update Team. Please try again.",
|
"updateTeamErrorMessage": "Could not update Company. Please try again.",
|
||||||
"updateLogoErrorMessage": "Could not update Logo. Please try again.",
|
"updateLogoErrorMessage": "Could not update Logo. Please try again.",
|
||||||
"teamNameInputLabel": "Team Name",
|
"teamNameInputLabel": "Company Name",
|
||||||
"teamLogoInputHeading": "Upload your team's Logo",
|
"teamLogoInputHeading": "Upload your company's Logo",
|
||||||
"teamLogoInputSubheading": "Please choose a photo to upload as your team logo.",
|
"teamLogoInputSubheading": "Please choose a photo to upload as your company logo.",
|
||||||
"updateTeamSubmitLabel": "Update Team",
|
"updateTeamSubmitLabel": "Update Company",
|
||||||
"inviteMembersHeading": "Invite Members to your Team",
|
"inviteMembersHeading": "Invite Employees to your Company",
|
||||||
"inviteMembersDescription": "Invite members to your team by entering their email and role.",
|
"inviteMembersDescription": "Invite employees to your company by entering their email and role.",
|
||||||
"emailPlaceholder": "member@email.com",
|
"emailPlaceholder": "employee@email.com",
|
||||||
"membersPageHeading": "Members",
|
"membersPageHeading": "Employees",
|
||||||
"inviteMembersButton": "Invite Members",
|
"inviteMembersButton": "Invite Employees",
|
||||||
"invitingMembers": "Inviting members...",
|
"invitingMembers": "Inviting employees...",
|
||||||
"inviteMembersSuccessMessage": "Members invited successfully",
|
"inviteMembersSuccessMessage": "Employees invited successfully",
|
||||||
"inviteMembersErrorMessage": "Sorry, members could not be invited. Please try again.",
|
"inviteMembersErrorMessage": "Sorry, employees could not be invited. Please try again.",
|
||||||
"pendingInvitesHeading": "Pending Invites",
|
"pendingInvitesHeading": "Pending Invites",
|
||||||
"pendingInvitesDescription": " Here you can manage the pending invitations to your team.",
|
"pendingInvitesDescription": " Here you can manage the pending invitations to your company.",
|
||||||
"noPendingInvites": "No pending invites found",
|
"noPendingInvites": "No pending invites found",
|
||||||
"loadingMembers": "Loading members...",
|
"loadingMembers": "Loading employees...",
|
||||||
"loadMembersError": "Sorry, we couldn't fetch your team's members.",
|
"loadMembersError": "Sorry, we couldn't fetch your company's employees.",
|
||||||
"loadInvitedMembersError": "Sorry, we couldn't fetch your team's invited members.",
|
"loadInvitedMembersError": "Sorry, we couldn't fetch your company's invited employees.",
|
||||||
"loadingInvitedMembers": "Loading invited members...",
|
"loadingInvitedMembers": "Loading invited employees...",
|
||||||
"invitedBadge": "Invited",
|
"invitedBadge": "Invited",
|
||||||
"duplicateInviteEmailError": "You have already entered this email address",
|
"duplicateInviteEmailError": "You have already entered this email address",
|
||||||
"invitingOwnAccountError": "Hey, that's your email!",
|
"invitingOwnAccountError": "Hey, that's your email!",
|
||||||
"dangerZone": "Danger Zone",
|
"dangerZone": "Danger Zone",
|
||||||
"dangerZoneSubheading": "Delete or leave your team",
|
"dangerZoneSubheading": "Delete or leave your company",
|
||||||
"deleteTeam": "Delete Team",
|
"deleteTeam": "Delete Company",
|
||||||
"deleteTeamDescription": "This action cannot be undone. All data associated with this team will be deleted.",
|
"deleteTeamDescription": "This action cannot be undone. All data associated with this company will be deleted.",
|
||||||
"deletingTeam": "Deleting team",
|
"deletingTeam": "Deleting company",
|
||||||
"deleteTeamModalHeading": "Deleting Team",
|
"deleteTeamModalHeading": "Deleting Company",
|
||||||
"deletingTeamDescription": "You are about to delete the team {{ teamName }}. This action cannot be undone.",
|
"deletingTeamDescription": "You are about to delete the company {{ teamName }}. This action cannot be undone.",
|
||||||
"deleteTeamInputField": "Type the name of the team to confirm",
|
"deleteTeamInputField": "Type the name of the company to confirm",
|
||||||
"leaveTeam": "Leave Team",
|
"leaveTeam": "Leave Company",
|
||||||
"leavingTeamModalHeading": "Leaving Team",
|
"leavingTeamModalHeading": "Leaving Company",
|
||||||
"leavingTeamModalDescription": "You are about to leave this team. You will no longer have access to it.",
|
"leavingTeamModalDescription": "You are about to leave this company. You will no longer have access to it.",
|
||||||
"leaveTeamDescription": "Click the button below to leave the team. Remember, you will no longer have access to it and will need to be re-invited to join.",
|
"leaveTeamDescription": "Click the button below to leave the company. Remember, you will no longer have access to it and will need to be re-invited to join.",
|
||||||
"deleteTeamDisclaimer": "You are deleting the team {{ teamName }}. This action cannot be undone.",
|
"deleteTeamDisclaimer": "You are deleting the company {{ teamName }}. This action cannot be undone.",
|
||||||
"leaveTeamDisclaimer": "You are leaving the team {{ teamName }}. You will no longer have access to it.",
|
"leaveTeamDisclaimer": "You are leaving the company {{ teamName }}. You will no longer have access to it.",
|
||||||
"deleteTeamErrorHeading": "Sorry, we couldn't delete your team.",
|
"deleteTeamErrorHeading": "Sorry, we couldn't delete your company.",
|
||||||
"leaveTeamErrorHeading": "Sorry, we couldn't leave your team.",
|
"leaveTeamErrorHeading": "Sorry, we couldn't leave your company.",
|
||||||
"searchMembersPlaceholder": "Search members",
|
"searchMembersPlaceholder": "Search employees",
|
||||||
"createTeamErrorHeading": "Sorry, we couldn't create your team.",
|
"createTeamErrorHeading": "Sorry, we couldn't create your company.",
|
||||||
"createTeamErrorMessage": "We encountered an error creating your team. Please try again.",
|
"createTeamErrorMessage": "We encountered an error creating your company. Please try again.",
|
||||||
"transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your team.",
|
"transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your company account.",
|
||||||
"transferTeamErrorMessage": "We encountered an error transferring ownership of your team. Please try again.",
|
"transferTeamErrorMessage": "We encountered an error transferring ownership of your company account. Please try again.",
|
||||||
"updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected member.",
|
"updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected employee.",
|
||||||
"updateRoleErrorMessage": "We encountered an error updating the role of the selected member. Please try again.",
|
"updateRoleErrorMessage": "We encountered an error updating the role of the selected employee. Please try again.",
|
||||||
"searchInvitations": "Search Invitations",
|
"searchInvitations": "Search Invitations",
|
||||||
"updateInvitation": "Update Invitation",
|
"updateInvitation": "Update Invitation",
|
||||||
"removeInvitation": "Remove Invitation",
|
"removeInvitation": "Remove Invitation",
|
||||||
@@ -144,20 +144,20 @@
|
|||||||
"active": "Active",
|
"active": "Active",
|
||||||
"inviteStatus": "Status",
|
"inviteStatus": "Status",
|
||||||
"inviteNotFoundOrExpired": "Invite not found or expired",
|
"inviteNotFoundOrExpired": "Invite not found or expired",
|
||||||
"inviteNotFoundOrExpiredDescription": "The invite you are looking for is either expired or does not exist. Please contact the team owner to renew the invite.",
|
"inviteNotFoundOrExpiredDescription": "The invite you are looking for is either expired or does not exist. Please contact the company HR to renew the invite.",
|
||||||
"backToHome": "Back to Home",
|
"backToHome": "Back to Home",
|
||||||
"renewInvitationDialogDescription": "You are about to renew the invitation to {{ email }}. The user will be able to join the team.",
|
"renewInvitationDialogDescription": "You are about to renew the invitation to {{ email }}. The user will be able to join the company.",
|
||||||
"renewInvitationErrorTitle": "Sorry, we couldn't renew the invitation.",
|
"renewInvitationErrorTitle": "Sorry, we couldn't renew the invitation.",
|
||||||
"renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.",
|
"renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.",
|
||||||
"signInWithDifferentAccount": "Sign in with a different account",
|
"signInWithDifferentAccount": "Sign in with a different account",
|
||||||
"signInWithDifferentAccountDescription": "If you wish to accept the invitation with a different account, please sign out and back in with the account you wish to use.",
|
"signInWithDifferentAccountDescription": "If you wish to accept the invitation with a different account, please sign out and back in with the account you wish to use.",
|
||||||
"acceptInvitationHeading": "Accept Invitation to join {{accountName}}",
|
"acceptInvitationHeading": "Accept Invitation to join {{accountName}}",
|
||||||
"acceptInvitationDescription": "You have been invited to join the team {{accountName}}. If you wish to accept the invitation, please click the button below.",
|
"acceptInvitationDescription": "You have been invited to join the company {{accountName}}. If you wish to accept the invitation, please click the button below.",
|
||||||
"continueAs": "Continue as {{email}}",
|
"continueAs": "Continue as {{email}}",
|
||||||
"joinTeamAccount": "Join Team",
|
"joinTeamAccount": "Join Company",
|
||||||
"joiningTeam": "Joining team...",
|
"joiningTeam": "Joining company...",
|
||||||
"leaveTeamInputLabel": "Please type LEAVE to confirm leaving the team.",
|
"leaveTeamInputLabel": "Please type LEAVE to confirm leaving the company.",
|
||||||
"leaveTeamInputDescription": "By leaving the team, you will no longer have access to it.",
|
"leaveTeamInputDescription": "By leaving the company, you will no longer have access to it.",
|
||||||
"reservedNameError": "This name is reserved. Please choose a different one.",
|
"reservedNameError": "This name is reserved. Please choose a different one.",
|
||||||
"specialCharactersError": "This name cannot contain special characters. Please choose a different one."
|
"specialCharactersError": "This name cannot contain special characters. Please choose a different one."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -113,5 +113,5 @@
|
|||||||
"createTeam": "Create a team to get started.",
|
"createTeam": "Create a team to get started.",
|
||||||
"createTeamButtonLabel": "Create a Team",
|
"createTeamButtonLabel": "Create a Team",
|
||||||
"createCompanyAccount": "Create Company Account",
|
"createCompanyAccount": "Create Company Account",
|
||||||
"requestCompanyAccount": "Küsi pakkumist"
|
"requestCompanyAccount": "Request Company Account"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,8 +63,8 @@
|
|||||||
"sendingEmailCode": "Sending code...",
|
"sendingEmailCode": "Sending code...",
|
||||||
"resetPasswordError": "Sorry, we could not reset your password. Please try again.",
|
"resetPasswordError": "Sorry, we could not reset your password. Please try again.",
|
||||||
"emailPlaceholder": "your@email.com",
|
"emailPlaceholder": "your@email.com",
|
||||||
"inviteAlertHeading": "You have been invited to join a team",
|
"inviteAlertHeading": "You have been invited to join a company",
|
||||||
"inviteAlertBody": "Please sign in or sign up to accept the invite and join the team.",
|
"inviteAlertBody": "Please sign in or sign up to accept the invite and join the company.",
|
||||||
"acceptTermsAndConditions": "I accept the <TermsOfServiceLink /> and <PrivacyPolicyLink />",
|
"acceptTermsAndConditions": "I accept the <TermsOfServiceLink /> and <PrivacyPolicyLink />",
|
||||||
"termsOfService": "Terms of Service",
|
"termsOfService": "Terms of Service",
|
||||||
"privacyPolicy": "Privacy Policy",
|
"privacyPolicy": "Privacy Policy",
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"checkoutSuccessBackButton": "Proceed to App",
|
"checkoutSuccessBackButton": "Proceed to App",
|
||||||
"cannotManageBillingAlertTitle": "You cannot manage billing",
|
"cannotManageBillingAlertTitle": "You cannot manage billing",
|
||||||
"cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.",
|
"cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.",
|
||||||
"manageTeamPlan": "Manage your Team Plan",
|
"manageTeamPlan": "Manage your Company Plan",
|
||||||
"manageTeamPlanDescription": "Choose a plan that fits your team's needs. You can upgrade or downgrade your plan at any time.",
|
"manageTeamPlanDescription": "Choose a plan that fits your company's needs. You can upgrade or downgrade your plan at any time.",
|
||||||
"basePlan": "Base Plan",
|
"basePlan": "Base Plan",
|
||||||
"billingInterval": {
|
"billingInterval": {
|
||||||
"label": "Choose your billing interval",
|
"label": "Choose your billing interval",
|
||||||
@@ -34,9 +34,9 @@
|
|||||||
"redirectingToPayment": "Redirecting to checkout. Please wait...",
|
"redirectingToPayment": "Redirecting to checkout. Please wait...",
|
||||||
"proceedToPayment": "Proceed to Payment",
|
"proceedToPayment": "Proceed to Payment",
|
||||||
"startTrial": "Start Trial",
|
"startTrial": "Start Trial",
|
||||||
"perTeamMember": "Per team member",
|
"perTeamMember": "Per company employee",
|
||||||
"perUnit": "Per {{unit}} usage",
|
"perUnit": "Per {{unit}} usage",
|
||||||
"teamMembers": "Team Members",
|
"teamMembers": "Company Employees",
|
||||||
"includedUpTo": "Up to {{upTo}} {{unit}} included in the plan",
|
"includedUpTo": "Up to {{upTo}} {{unit}} included in the plan",
|
||||||
"fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}",
|
"fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}",
|
||||||
"andAbove": "above {{ previousTier }} {{ unit }}",
|
"andAbove": "above {{ previousTier }} {{ unit }}",
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"homeTabLabel": "Home",
|
"homeTabLabel": "Home",
|
||||||
"homeTabDescription": "Welcome to your home page",
|
"homeTabDescription": "Welcome to your home page",
|
||||||
"accountMembers": "Team Members",
|
"accountMembers": "Company Employees",
|
||||||
"membersTabDescription": "Here you can manage the members of your team.",
|
"membersTabDescription": "Here you can manage the employees of your company.",
|
||||||
"billingTabLabel": "Billing",
|
"billingTabLabel": "Billing",
|
||||||
"billingTabDescription": "Manage your billing and subscription",
|
"billingTabDescription": "Manage your billing and subscription",
|
||||||
"dashboardTabLabel": "Dashboard",
|
"dashboardTabLabel": "Dashboard",
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
"routes": {
|
"routes": {
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"account": "Account",
|
"account": "Account",
|
||||||
"members": "Members",
|
"members": "Employees",
|
||||||
"billing": "Billing",
|
"billing": "Billing",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
"label": "Owner"
|
"label": "Owner"
|
||||||
},
|
},
|
||||||
"member": {
|
"member": {
|
||||||
"label": "Member"
|
"label": "Employee"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"otp": {
|
"otp": {
|
||||||
|
|||||||
@@ -36,5 +36,5 @@
|
|||||||
"contactErrorDescription": "An error occurred while sending your message. Please try again later",
|
"contactErrorDescription": "An error occurred while sending your message. Please try again later",
|
||||||
"footerDescription": "Here you can add a description about your company or product",
|
"footerDescription": "Here you can add a description about your company or product",
|
||||||
"copyright": "© Copyright {{year}} {{product}}. All Rights Reserved.",
|
"copyright": "© Copyright {{year}} {{product}}. All Rights Reserved.",
|
||||||
"heroSubtitle": "Lihtne, mugav ja kiire ülevaade Sinu tervise seisundist"
|
"heroSubtitle": "Lihtne, mugav ja kiire ülevaade oma tervisest"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,26 +4,26 @@
|
|||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"pageTitle": "Settings",
|
"pageTitle": "Settings",
|
||||||
"pageDescription": "Manage your Team details",
|
"pageDescription": "Manage your Company details",
|
||||||
"teamLogo": "Team Logo",
|
"teamLogo": "Company Logo",
|
||||||
"teamLogoDescription": "Update your team's logo to make it easier to identify",
|
"teamLogoDescription": "Update your company's logo to make it easier to identify",
|
||||||
"teamName": "Team Name",
|
"teamName": "Company Name",
|
||||||
"teamNameDescription": "Update your team's name",
|
"teamNameDescription": "Update your company's name",
|
||||||
"dangerZone": "Danger Zone",
|
"dangerZone": "Danger Zone",
|
||||||
"dangerZoneDescription": "This section contains actions that are irreversible"
|
"dangerZoneDescription": "This section contains actions that are irreversible"
|
||||||
},
|
},
|
||||||
"members": {
|
"members": {
|
||||||
"pageTitle": "Members"
|
"pageTitle": "Employees"
|
||||||
},
|
},
|
||||||
"billing": {
|
"billing": {
|
||||||
"pageTitle": "Billing"
|
"pageTitle": "Billing"
|
||||||
},
|
},
|
||||||
"yourTeams": "Your Teams ({{teamsCount}})",
|
"yourTeams": "Your Companies ({{teamsCount}})",
|
||||||
"createTeam": "Create a Team",
|
"createTeam": "Create a Company",
|
||||||
"creatingTeam": "Creating Team...",
|
"creatingTeam": "Creating Company...",
|
||||||
"personalAccount": "Personal Account",
|
"personalAccount": "Personal Account",
|
||||||
"searchAccount": "Search Account...",
|
"searchAccount": "Search Account...",
|
||||||
"membersTabLabel": "Members",
|
"membersTabLabel": "Employees",
|
||||||
"memberName": "Name",
|
"memberName": "Name",
|
||||||
"youLabel": "You",
|
"youLabel": "You",
|
||||||
"emailLabel": "Email",
|
"emailLabel": "Email",
|
||||||
@@ -31,108 +31,108 @@
|
|||||||
"primaryOwnerLabel": "Primary Owner",
|
"primaryOwnerLabel": "Primary Owner",
|
||||||
"joinedAtLabel": "Joined at",
|
"joinedAtLabel": "Joined at",
|
||||||
"invitedAtLabel": "Invited at",
|
"invitedAtLabel": "Invited at",
|
||||||
"inviteMembersPageSubheading": "Invite members to your Team",
|
"inviteMembersPageSubheading": "Invite employees to your Company",
|
||||||
"createTeamModalHeading": "Create Team",
|
"createTeamModalHeading": "Create Company",
|
||||||
"createTeamModalDescription": "Create a new Team to manage your projects and members.",
|
"createTeamModalDescription": "Create a new Company to manage your projects and employees.",
|
||||||
"teamNameLabel": "Team Name",
|
"teamNameLabel": "Company Name",
|
||||||
"teamNameDescription": "Your team name should be unique and descriptive",
|
"teamNameDescription": "Your company name should be unique and descriptive",
|
||||||
"createTeamSubmitLabel": "Create Team",
|
"createTeamSubmitLabel": "Create Company",
|
||||||
"createTeamSuccess": "Team created successfully",
|
"createTeamSuccess": "Company created successfully",
|
||||||
"createTeamError": "Team not created. Please try again.",
|
"createTeamError": "Company not created. Please try again.",
|
||||||
"createTeamLoading": "Creating team...",
|
"createTeamLoading": "Creating company...",
|
||||||
"settingsPageLabel": "General",
|
"settingsPageLabel": "General",
|
||||||
"createTeamDropdownLabel": "New team",
|
"createTeamDropdownLabel": "New company",
|
||||||
"changeRole": "Change Role",
|
"changeRole": "Change Role",
|
||||||
"removeMember": "Remove from Account",
|
"removeMember": "Remove from Account",
|
||||||
"inviteMembersSuccess": "Members invited successfully!",
|
"inviteMembersSuccess": "Employees invited successfully!",
|
||||||
"inviteMembersError": "Sorry, we encountered an error! Please try again",
|
"inviteMembersError": "Sorry, we encountered an error! Please try again",
|
||||||
"inviteMembersLoading": "Inviting members...",
|
"inviteMembersLoading": "Inviting employees...",
|
||||||
"removeInviteButtonLabel": "Remove invite",
|
"removeInviteButtonLabel": "Remove invite",
|
||||||
"addAnotherMemberButtonLabel": "Add another one",
|
"addAnotherMemberButtonLabel": "Add another one",
|
||||||
"inviteMembersButtonLabel": "Send Invites",
|
"inviteMembersButtonLabel": "Send Invites",
|
||||||
"removeMemberModalHeading": "You are removing this user",
|
"removeMemberModalHeading": "You are removing this user",
|
||||||
"removeMemberModalDescription": "Remove this member from the team. They will no longer have access to the team.",
|
"removeMemberModalDescription": "Remove this employee from the company. They will no longer have access to the company.",
|
||||||
"removeMemberSuccessMessage": "Member removed successfully",
|
"removeMemberSuccessMessage": "Employee removed successfully",
|
||||||
"removeMemberErrorMessage": "Sorry, we encountered an error. Please try again",
|
"removeMemberErrorMessage": "Sorry, we encountered an error. Please try again",
|
||||||
"removeMemberErrorHeading": "Sorry, we couldn't remove the selected member.",
|
"removeMemberErrorHeading": "Sorry, we couldn't remove the selected employee.",
|
||||||
"removeMemberLoadingMessage": "Removing member...",
|
"removeMemberLoadingMessage": "Removing employee...",
|
||||||
"removeMemberSubmitLabel": "Remove User from Team",
|
"removeMemberSubmitLabel": "Remove User from Company",
|
||||||
"chooseDifferentRoleError": "Role is the same as the current one",
|
"chooseDifferentRoleError": "Role is the same as the current one",
|
||||||
"updateRole": "Update Role",
|
"updateRole": "Update Role",
|
||||||
"updateRoleLoadingMessage": "Updating role...",
|
"updateRoleLoadingMessage": "Updating role...",
|
||||||
"updateRoleSuccessMessage": "Role updated successfully",
|
"updateRoleSuccessMessage": "Role updated successfully",
|
||||||
"updatingRoleErrorMessage": "Sorry, we encountered an error. Please try again.",
|
"updatingRoleErrorMessage": "Sorry, we encountered an error. Please try again.",
|
||||||
"updateMemberRoleModalHeading": "Update Member's Role",
|
"updateMemberRoleModalHeading": "Update Employee's Role",
|
||||||
"updateMemberRoleModalDescription": "Change the role of the selected member. The role determines the permissions of the member.",
|
"updateMemberRoleModalDescription": "Change the role of the selected member. The role determines the permissions of the member.",
|
||||||
"roleMustBeDifferent": "Role must be different from the current one",
|
"roleMustBeDifferent": "Role must be different from the current one",
|
||||||
"memberRoleInputLabel": "Member role",
|
"memberRoleInputLabel": "Member role",
|
||||||
"updateRoleDescription": "Pick a role for this member.",
|
"updateRoleDescription": "Pick a role for this member.",
|
||||||
"updateRoleSubmitLabel": "Update Role",
|
"updateRoleSubmitLabel": "Update Role",
|
||||||
"transferOwnership": "Transfer Ownership",
|
"transferOwnership": "Transfer Ownership",
|
||||||
"transferOwnershipDescription": "Transfer ownership of the team to another member.",
|
"transferOwnershipDescription": "Transfer ownership of the company account to another employee.",
|
||||||
"transferOwnershipInputLabel": "Please type TRANSFER to confirm the transfer of ownership.",
|
"transferOwnershipInputLabel": "Please type TRANSFER to confirm the transfer of ownership.",
|
||||||
"transferOwnershipInputDescription": "By transferring ownership, you will no longer be the primary owner of the team.",
|
"transferOwnershipInputDescription": "By transferring ownership, you will no longer be the primary owner of the company account.",
|
||||||
"deleteInvitation": "Delete Invitation",
|
"deleteInvitation": "Delete Invitation",
|
||||||
"deleteInvitationDialogDescription": "You are about to delete the invitation. The user will no longer be able to join the team.",
|
"deleteInvitationDialogDescription": "You are about to delete the invitation. The user will no longer be able to join the company account.",
|
||||||
"deleteInviteSuccessMessage": "Invite deleted successfully",
|
"deleteInviteSuccessMessage": "Invite deleted successfully",
|
||||||
"deleteInviteErrorMessage": "Invite not deleted. Please try again.",
|
"deleteInviteErrorMessage": "Invite not deleted. Please try again.",
|
||||||
"deleteInviteLoadingMessage": "Deleting invite. Please wait...",
|
"deleteInviteLoadingMessage": "Deleting invite. Please wait...",
|
||||||
"confirmDeletingMemberInvite": "You are deleting the invite to <b>{{ email }}</b>",
|
"confirmDeletingMemberInvite": "You are deleting the invite to <b>{{ email }}</b>",
|
||||||
"transferOwnershipDisclaimer": "You are transferring ownership of the selected team to <b>{{ member }}</b>.",
|
"transferOwnershipDisclaimer": "You are transferring ownership of the selected company account to <b>{{ member }}</b>.",
|
||||||
"transferringOwnership": "Transferring ownership...",
|
"transferringOwnership": "Transferring ownership...",
|
||||||
"transferOwnershipSuccess": "Ownership successfully transferred",
|
"transferOwnershipSuccess": "Ownership successfully transferred",
|
||||||
"transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.",
|
"transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.",
|
||||||
"deleteInviteSubmitLabel": "Delete Invite",
|
"deleteInviteSubmitLabel": "Delete Invite",
|
||||||
"youBadgeLabel": "You",
|
"youBadgeLabel": "You",
|
||||||
"updateTeamLoadingMessage": "Updating Team...",
|
"updateTeamLoadingMessage": "Updating Company...",
|
||||||
"updateTeamSuccessMessage": "Team successfully updated",
|
"updateTeamSuccessMessage": "Company successfully updated",
|
||||||
"updateTeamErrorMessage": "Could not update Team. Please try again.",
|
"updateTeamErrorMessage": "Could not update Company. Please try again.",
|
||||||
"updateLogoErrorMessage": "Could not update Logo. Please try again.",
|
"updateLogoErrorMessage": "Could not update Logo. Please try again.",
|
||||||
"teamNameInputLabel": "Team Name",
|
"teamNameInputLabel": "Company Name",
|
||||||
"teamLogoInputHeading": "Upload your team's Logo",
|
"teamLogoInputHeading": "Upload your company's Logo",
|
||||||
"teamLogoInputSubheading": "Please choose a photo to upload as your team logo.",
|
"teamLogoInputSubheading": "Please choose a photo to upload as your company logo.",
|
||||||
"updateTeamSubmitLabel": "Update Team",
|
"updateTeamSubmitLabel": "Update Company",
|
||||||
"inviteMembersHeading": "Invite Members to your Team",
|
"inviteMembersHeading": "Invite Employees to your Company",
|
||||||
"inviteMembersDescription": "Invite members to your team by entering their email and role.",
|
"inviteMembersDescription": "Invite employees to your company by entering their email and role.",
|
||||||
"emailPlaceholder": "member@email.com",
|
"emailPlaceholder": "employee@email.com",
|
||||||
"membersPageHeading": "Members",
|
"membersPageHeading": "Employees",
|
||||||
"inviteMembersButton": "Invite Members",
|
"inviteMembersButton": "Invite Employees",
|
||||||
"invitingMembers": "Inviting members...",
|
"invitingMembers": "Inviting employees...",
|
||||||
"inviteMembersSuccessMessage": "Members invited successfully",
|
"inviteMembersSuccessMessage": "Employees invited successfully",
|
||||||
"inviteMembersErrorMessage": "Sorry, members could not be invited. Please try again.",
|
"inviteMembersErrorMessage": "Sorry, employees could not be invited. Please try again.",
|
||||||
"pendingInvitesHeading": "Pending Invites",
|
"pendingInvitesHeading": "Pending Invites",
|
||||||
"pendingInvitesDescription": " Here you can manage the pending invitations to your team.",
|
"pendingInvitesDescription": " Here you can manage the pending invitations to your company.",
|
||||||
"noPendingInvites": "No pending invites found",
|
"noPendingInvites": "No pending invites found",
|
||||||
"loadingMembers": "Loading members...",
|
"loadingMembers": "Loading employees...",
|
||||||
"loadMembersError": "Sorry, we couldn't fetch your team's members.",
|
"loadMembersError": "Sorry, we couldn't fetch your company's employees.",
|
||||||
"loadInvitedMembersError": "Sorry, we couldn't fetch your team's invited members.",
|
"loadInvitedMembersError": "Sorry, we couldn't fetch your company's invited employees.",
|
||||||
"loadingInvitedMembers": "Loading invited members...",
|
"loadingInvitedMembers": "Loading invited employees...",
|
||||||
"invitedBadge": "Invited",
|
"invitedBadge": "Invited",
|
||||||
"duplicateInviteEmailError": "You have already entered this email address",
|
"duplicateInviteEmailError": "You have already entered this email address",
|
||||||
"invitingOwnAccountError": "Hey, that's your email!",
|
"invitingOwnAccountError": "Hey, that's your email!",
|
||||||
"dangerZone": "Danger Zone",
|
"dangerZone": "Danger Zone",
|
||||||
"dangerZoneSubheading": "Delete or leave your team",
|
"dangerZoneSubheading": "Delete or leave your company",
|
||||||
"deleteTeam": "Delete Team",
|
"deleteTeam": "Delete Company",
|
||||||
"deleteTeamDescription": "This action cannot be undone. All data associated with this team will be deleted.",
|
"deleteTeamDescription": "This action cannot be undone. All data associated with this company will be deleted.",
|
||||||
"deletingTeam": "Deleting team",
|
"deletingTeam": "Deleting company",
|
||||||
"deleteTeamModalHeading": "Deleting Team",
|
"deleteTeamModalHeading": "Deleting Company",
|
||||||
"deletingTeamDescription": "You are about to delete the team {{ teamName }}. This action cannot be undone.",
|
"deletingTeamDescription": "You are about to delete the company {{ teamName }}. This action cannot be undone.",
|
||||||
"deleteTeamInputField": "Type the name of the team to confirm",
|
"deleteTeamInputField": "Type the name of the company to confirm",
|
||||||
"leaveTeam": "Leave Team",
|
"leaveTeam": "Leave Company",
|
||||||
"leavingTeamModalHeading": "Leaving Team",
|
"leavingTeamModalHeading": "Leaving Company",
|
||||||
"leavingTeamModalDescription": "You are about to leave this team. You will no longer have access to it.",
|
"leavingTeamModalDescription": "You are about to leave this company. You will no longer have access to it.",
|
||||||
"leaveTeamDescription": "Click the button below to leave the team. Remember, you will no longer have access to it and will need to be re-invited to join.",
|
"leaveTeamDescription": "Click the button below to leave the company. Remember, you will no longer have access to it and will need to be re-invited to join.",
|
||||||
"deleteTeamDisclaimer": "You are deleting the team {{ teamName }}. This action cannot be undone.",
|
"deleteTeamDisclaimer": "You are deleting the company {{ teamName }}. This action cannot be undone.",
|
||||||
"leaveTeamDisclaimer": "You are leaving the team {{ teamName }}. You will no longer have access to it.",
|
"leaveTeamDisclaimer": "You are leaving the company {{ teamName }}. You will no longer have access to it.",
|
||||||
"deleteTeamErrorHeading": "Sorry, we couldn't delete your team.",
|
"deleteTeamErrorHeading": "Sorry, we couldn't delete your company.",
|
||||||
"leaveTeamErrorHeading": "Sorry, we couldn't leave your team.",
|
"leaveTeamErrorHeading": "Sorry, we couldn't leave your company.",
|
||||||
"searchMembersPlaceholder": "Search members",
|
"searchMembersPlaceholder": "Search employees",
|
||||||
"createTeamErrorHeading": "Sorry, we couldn't create your team.",
|
"createTeamErrorHeading": "Sorry, we couldn't create your company.",
|
||||||
"createTeamErrorMessage": "We encountered an error creating your team. Please try again.",
|
"createTeamErrorMessage": "We encountered an error creating your company. Please try again.",
|
||||||
"transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your team.",
|
"transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your company account.",
|
||||||
"transferTeamErrorMessage": "We encountered an error transferring ownership of your team. Please try again.",
|
"transferTeamErrorMessage": "We encountered an error transferring ownership of your company account. Please try again.",
|
||||||
"updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected member.",
|
"updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected employee.",
|
||||||
"updateRoleErrorMessage": "We encountered an error updating the role of the selected member. Please try again.",
|
"updateRoleErrorMessage": "We encountered an error updating the role of the selected employee. Please try again.",
|
||||||
"searchInvitations": "Search Invitations",
|
"searchInvitations": "Search Invitations",
|
||||||
"updateInvitation": "Update Invitation",
|
"updateInvitation": "Update Invitation",
|
||||||
"removeInvitation": "Remove Invitation",
|
"removeInvitation": "Remove Invitation",
|
||||||
@@ -144,20 +144,20 @@
|
|||||||
"active": "Active",
|
"active": "Active",
|
||||||
"inviteStatus": "Status",
|
"inviteStatus": "Status",
|
||||||
"inviteNotFoundOrExpired": "Invite not found or expired",
|
"inviteNotFoundOrExpired": "Invite not found or expired",
|
||||||
"inviteNotFoundOrExpiredDescription": "The invite you are looking for is either expired or does not exist. Please contact the team owner to renew the invite.",
|
"inviteNotFoundOrExpiredDescription": "The invite you are looking for is either expired or does not exist. Please contact the company HR to renew the invite.",
|
||||||
"backToHome": "Back to Home",
|
"backToHome": "Back to Home",
|
||||||
"renewInvitationDialogDescription": "You are about to renew the invitation to {{ email }}. The user will be able to join the team.",
|
"renewInvitationDialogDescription": "You are about to renew the invitation to {{ email }}. The user will be able to join the company.",
|
||||||
"renewInvitationErrorTitle": "Sorry, we couldn't renew the invitation.",
|
"renewInvitationErrorTitle": "Sorry, we couldn't renew the invitation.",
|
||||||
"renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.",
|
"renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.",
|
||||||
"signInWithDifferentAccount": "Sign in with a different account",
|
"signInWithDifferentAccount": "Sign in with a different account",
|
||||||
"signInWithDifferentAccountDescription": "If you wish to accept the invitation with a different account, please sign out and back in with the account you wish to use.",
|
"signInWithDifferentAccountDescription": "If you wish to accept the invitation with a different account, please sign out and back in with the account you wish to use.",
|
||||||
"acceptInvitationHeading": "Accept Invitation to join {{accountName}}",
|
"acceptInvitationHeading": "Accept Invitation to join {{accountName}}",
|
||||||
"acceptInvitationDescription": "You have been invited to join the team {{accountName}}. If you wish to accept the invitation, please click the button below.",
|
"acceptInvitationDescription": "You have been invited to join the company {{accountName}}. If you wish to accept the invitation, please click the button below.",
|
||||||
"continueAs": "Continue as {{email}}",
|
"continueAs": "Continue as {{email}}",
|
||||||
"joinTeamAccount": "Join Team",
|
"joinTeamAccount": "Join Company",
|
||||||
"joiningTeam": "Joining team...",
|
"joiningTeam": "Joining company...",
|
||||||
"leaveTeamInputLabel": "Please type LEAVE to confirm leaving the team.",
|
"leaveTeamInputLabel": "Please type LEAVE to confirm leaving the company.",
|
||||||
"leaveTeamInputDescription": "By leaving the team, you will no longer have access to it.",
|
"leaveTeamInputDescription": "By leaving the company, you will no longer have access to it.",
|
||||||
"reservedNameError": "This name is reserved. Please choose a different one.",
|
"reservedNameError": "This name is reserved. Please choose a different one.",
|
||||||
"specialCharactersError": "This name cannot contain special characters. Please choose a different one."
|
"specialCharactersError": "This name cannot contain special characters. Please choose a different one."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,8 +63,8 @@
|
|||||||
"sendingEmailCode": "Sending code...",
|
"sendingEmailCode": "Sending code...",
|
||||||
"resetPasswordError": "Sorry, we could not reset your password. Please try again.",
|
"resetPasswordError": "Sorry, we could not reset your password. Please try again.",
|
||||||
"emailPlaceholder": "your@email.com",
|
"emailPlaceholder": "your@email.com",
|
||||||
"inviteAlertHeading": "You have been invited to join a team",
|
"inviteAlertHeading": "You have been invited to join a company",
|
||||||
"inviteAlertBody": "Please sign in or sign up to accept the invite and join the team.",
|
"inviteAlertBody": "Please sign in or sign up to accept the invite and join the company.",
|
||||||
"acceptTermsAndConditions": "I accept the <TermsOfServiceLink /> and <PrivacyPolicyLink />",
|
"acceptTermsAndConditions": "I accept the <TermsOfServiceLink /> and <PrivacyPolicyLink />",
|
||||||
"termsOfService": "Terms of Service",
|
"termsOfService": "Terms of Service",
|
||||||
"privacyPolicy": "Privacy Policy",
|
"privacyPolicy": "Privacy Policy",
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"checkoutSuccessBackButton": "Proceed to App",
|
"checkoutSuccessBackButton": "Proceed to App",
|
||||||
"cannotManageBillingAlertTitle": "You cannot manage billing",
|
"cannotManageBillingAlertTitle": "You cannot manage billing",
|
||||||
"cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.",
|
"cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.",
|
||||||
"manageTeamPlan": "Manage your Team Plan",
|
"manageTeamPlan": "Manage your Company Plan",
|
||||||
"manageTeamPlanDescription": "Choose a plan that fits your team's needs. You can upgrade or downgrade your plan at any time.",
|
"manageTeamPlanDescription": "Choose a plan that fits your company's needs. You can upgrade or downgrade your plan at any time.",
|
||||||
"basePlan": "Base Plan",
|
"basePlan": "Base Plan",
|
||||||
"billingInterval": {
|
"billingInterval": {
|
||||||
"label": "Choose your billing interval",
|
"label": "Choose your billing interval",
|
||||||
@@ -34,9 +34,9 @@
|
|||||||
"redirectingToPayment": "Redirecting to checkout. Please wait...",
|
"redirectingToPayment": "Redirecting to checkout. Please wait...",
|
||||||
"proceedToPayment": "Proceed to Payment",
|
"proceedToPayment": "Proceed to Payment",
|
||||||
"startTrial": "Start Trial",
|
"startTrial": "Start Trial",
|
||||||
"perTeamMember": "Per team member",
|
"perTeamMember": "Per company employee",
|
||||||
"perUnit": "Per {{unit}} usage",
|
"perUnit": "Per {{unit}} usage",
|
||||||
"teamMembers": "Team Members",
|
"teamMembers": "Company Employees",
|
||||||
"includedUpTo": "Up to {{upTo}} {{unit}} included in the plan",
|
"includedUpTo": "Up to {{upTo}} {{unit}} included in the plan",
|
||||||
"fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}",
|
"fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}",
|
||||||
"andAbove": "above {{ previousTier }} {{ unit }}",
|
"andAbove": "above {{ previousTier }} {{ unit }}",
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"homeTabLabel": "Home",
|
"homeTabLabel": "Home",
|
||||||
"homeTabDescription": "Welcome to your home page",
|
"homeTabDescription": "Welcome to your home page",
|
||||||
"accountMembers": "Team Members",
|
"accountMembers": "Company Employees",
|
||||||
"membersTabDescription": "Here you can manage the members of your team.",
|
"membersTabDescription": "Here you can manage the employees of your company.",
|
||||||
"billingTabLabel": "Billing",
|
"billingTabLabel": "Billing",
|
||||||
"billingTabDescription": "Manage your billing and subscription",
|
"billingTabDescription": "Manage your billing and subscription",
|
||||||
"dashboardTabLabel": "Dashboard",
|
"dashboardTabLabel": "Dashboard",
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
"routes": {
|
"routes": {
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"account": "Account",
|
"account": "Account",
|
||||||
"members": "Members",
|
"members": "Employees",
|
||||||
"billing": "Billing",
|
"billing": "Billing",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
"label": "Owner"
|
"label": "Owner"
|
||||||
},
|
},
|
||||||
"member": {
|
"member": {
|
||||||
"label": "Member"
|
"label": "Employee"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"otp": {
|
"otp": {
|
||||||
|
|||||||
@@ -36,5 +36,5 @@
|
|||||||
"contactErrorDescription": "An error occurred while sending your message. Please try again later",
|
"contactErrorDescription": "An error occurred while sending your message. Please try again later",
|
||||||
"footerDescription": "Here you can add a description about your company or product",
|
"footerDescription": "Here you can add a description about your company or product",
|
||||||
"copyright": "© Copyright {{year}} {{product}}. All Rights Reserved.",
|
"copyright": "© Copyright {{year}} {{product}}. All Rights Reserved.",
|
||||||
"heroSubtitle": "Простой, удобный и быстрый обзор вашего состояния здоровья"
|
"heroSubtitle": "A simple, convenient, and quick overview of your health condition"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,26 +4,26 @@
|
|||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"pageTitle": "Settings",
|
"pageTitle": "Settings",
|
||||||
"pageDescription": "Manage your Team details",
|
"pageDescription": "Manage your Company details",
|
||||||
"teamLogo": "Team Logo",
|
"teamLogo": "Company Logo",
|
||||||
"teamLogoDescription": "Update your team's logo to make it easier to identify",
|
"teamLogoDescription": "Update your company's logo to make it easier to identify",
|
||||||
"teamName": "Team Name",
|
"teamName": "Company Name",
|
||||||
"teamNameDescription": "Update your team's name",
|
"teamNameDescription": "Update your company's name",
|
||||||
"dangerZone": "Danger Zone",
|
"dangerZone": "Danger Zone",
|
||||||
"dangerZoneDescription": "This section contains actions that are irreversible"
|
"dangerZoneDescription": "This section contains actions that are irreversible"
|
||||||
},
|
},
|
||||||
"members": {
|
"members": {
|
||||||
"pageTitle": "Members"
|
"pageTitle": "Employees"
|
||||||
},
|
},
|
||||||
"billing": {
|
"billing": {
|
||||||
"pageTitle": "Billing"
|
"pageTitle": "Billing"
|
||||||
},
|
},
|
||||||
"yourTeams": "Your Teams ({{teamsCount}})",
|
"yourTeams": "Your Companies ({{teamsCount}})",
|
||||||
"createTeam": "Create a Team",
|
"createTeam": "Create a Company",
|
||||||
"creatingTeam": "Creating Team...",
|
"creatingTeam": "Creating Company...",
|
||||||
"personalAccount": "Personal Account",
|
"personalAccount": "Personal Account",
|
||||||
"searchAccount": "Search Account...",
|
"searchAccount": "Search Account...",
|
||||||
"membersTabLabel": "Members",
|
"membersTabLabel": "Employees",
|
||||||
"memberName": "Name",
|
"memberName": "Name",
|
||||||
"youLabel": "You",
|
"youLabel": "You",
|
||||||
"emailLabel": "Email",
|
"emailLabel": "Email",
|
||||||
@@ -31,108 +31,108 @@
|
|||||||
"primaryOwnerLabel": "Primary Owner",
|
"primaryOwnerLabel": "Primary Owner",
|
||||||
"joinedAtLabel": "Joined at",
|
"joinedAtLabel": "Joined at",
|
||||||
"invitedAtLabel": "Invited at",
|
"invitedAtLabel": "Invited at",
|
||||||
"inviteMembersPageSubheading": "Invite members to your Team",
|
"inviteMembersPageSubheading": "Invite employees to your Company",
|
||||||
"createTeamModalHeading": "Create Team",
|
"createTeamModalHeading": "Create Company",
|
||||||
"createTeamModalDescription": "Create a new Team to manage your projects and members.",
|
"createTeamModalDescription": "Create a new Company to manage your projects and employees.",
|
||||||
"teamNameLabel": "Team Name",
|
"teamNameLabel": "Company Name",
|
||||||
"teamNameDescription": "Your team name should be unique and descriptive",
|
"teamNameDescription": "Your company name should be unique and descriptive",
|
||||||
"createTeamSubmitLabel": "Create Team",
|
"createTeamSubmitLabel": "Create Company",
|
||||||
"createTeamSuccess": "Team created successfully",
|
"createTeamSuccess": "Company created successfully",
|
||||||
"createTeamError": "Team not created. Please try again.",
|
"createTeamError": "Company not created. Please try again.",
|
||||||
"createTeamLoading": "Creating team...",
|
"createTeamLoading": "Creating company...",
|
||||||
"settingsPageLabel": "General",
|
"settingsPageLabel": "General",
|
||||||
"createTeamDropdownLabel": "New team",
|
"createTeamDropdownLabel": "New company",
|
||||||
"changeRole": "Change Role",
|
"changeRole": "Change Role",
|
||||||
"removeMember": "Remove from Account",
|
"removeMember": "Remove from Account",
|
||||||
"inviteMembersSuccess": "Members invited successfully!",
|
"inviteMembersSuccess": "Employees invited successfully!",
|
||||||
"inviteMembersError": "Sorry, we encountered an error! Please try again",
|
"inviteMembersError": "Sorry, we encountered an error! Please try again",
|
||||||
"inviteMembersLoading": "Inviting members...",
|
"inviteMembersLoading": "Inviting employees...",
|
||||||
"removeInviteButtonLabel": "Remove invite",
|
"removeInviteButtonLabel": "Remove invite",
|
||||||
"addAnotherMemberButtonLabel": "Add another one",
|
"addAnotherMemberButtonLabel": "Add another one",
|
||||||
"inviteMembersButtonLabel": "Send Invites",
|
"inviteMembersButtonLabel": "Send Invites",
|
||||||
"removeMemberModalHeading": "You are removing this user",
|
"removeMemberModalHeading": "You are removing this user",
|
||||||
"removeMemberModalDescription": "Remove this member from the team. They will no longer have access to the team.",
|
"removeMemberModalDescription": "Remove this employee from the company. They will no longer have access to the company.",
|
||||||
"removeMemberSuccessMessage": "Member removed successfully",
|
"removeMemberSuccessMessage": "Employee removed successfully",
|
||||||
"removeMemberErrorMessage": "Sorry, we encountered an error. Please try again",
|
"removeMemberErrorMessage": "Sorry, we encountered an error. Please try again",
|
||||||
"removeMemberErrorHeading": "Sorry, we couldn't remove the selected member.",
|
"removeMemberErrorHeading": "Sorry, we couldn't remove the selected employee.",
|
||||||
"removeMemberLoadingMessage": "Removing member...",
|
"removeMemberLoadingMessage": "Removing employee...",
|
||||||
"removeMemberSubmitLabel": "Remove User from Team",
|
"removeMemberSubmitLabel": "Remove User from Company",
|
||||||
"chooseDifferentRoleError": "Role is the same as the current one",
|
"chooseDifferentRoleError": "Role is the same as the current one",
|
||||||
"updateRole": "Update Role",
|
"updateRole": "Update Role",
|
||||||
"updateRoleLoadingMessage": "Updating role...",
|
"updateRoleLoadingMessage": "Updating role...",
|
||||||
"updateRoleSuccessMessage": "Role updated successfully",
|
"updateRoleSuccessMessage": "Role updated successfully",
|
||||||
"updatingRoleErrorMessage": "Sorry, we encountered an error. Please try again.",
|
"updatingRoleErrorMessage": "Sorry, we encountered an error. Please try again.",
|
||||||
"updateMemberRoleModalHeading": "Update Member's Role",
|
"updateMemberRoleModalHeading": "Update Employee's Role",
|
||||||
"updateMemberRoleModalDescription": "Change the role of the selected member. The role determines the permissions of the member.",
|
"updateMemberRoleModalDescription": "Change the role of the selected member. The role determines the permissions of the member.",
|
||||||
"roleMustBeDifferent": "Role must be different from the current one",
|
"roleMustBeDifferent": "Role must be different from the current one",
|
||||||
"memberRoleInputLabel": "Member role",
|
"memberRoleInputLabel": "Member role",
|
||||||
"updateRoleDescription": "Pick a role for this member.",
|
"updateRoleDescription": "Pick a role for this member.",
|
||||||
"updateRoleSubmitLabel": "Update Role",
|
"updateRoleSubmitLabel": "Update Role",
|
||||||
"transferOwnership": "Transfer Ownership",
|
"transferOwnership": "Transfer Ownership",
|
||||||
"transferOwnershipDescription": "Transfer ownership of the team to another member.",
|
"transferOwnershipDescription": "Transfer ownership of the company account to another employee.",
|
||||||
"transferOwnershipInputLabel": "Please type TRANSFER to confirm the transfer of ownership.",
|
"transferOwnershipInputLabel": "Please type TRANSFER to confirm the transfer of ownership.",
|
||||||
"transferOwnershipInputDescription": "By transferring ownership, you will no longer be the primary owner of the team.",
|
"transferOwnershipInputDescription": "By transferring ownership, you will no longer be the primary owner of the company account.",
|
||||||
"deleteInvitation": "Delete Invitation",
|
"deleteInvitation": "Delete Invitation",
|
||||||
"deleteInvitationDialogDescription": "You are about to delete the invitation. The user will no longer be able to join the team.",
|
"deleteInvitationDialogDescription": "You are about to delete the invitation. The user will no longer be able to join the company account.",
|
||||||
"deleteInviteSuccessMessage": "Invite deleted successfully",
|
"deleteInviteSuccessMessage": "Invite deleted successfully",
|
||||||
"deleteInviteErrorMessage": "Invite not deleted. Please try again.",
|
"deleteInviteErrorMessage": "Invite not deleted. Please try again.",
|
||||||
"deleteInviteLoadingMessage": "Deleting invite. Please wait...",
|
"deleteInviteLoadingMessage": "Deleting invite. Please wait...",
|
||||||
"confirmDeletingMemberInvite": "You are deleting the invite to <b>{{ email }}</b>",
|
"confirmDeletingMemberInvite": "You are deleting the invite to <b>{{ email }}</b>",
|
||||||
"transferOwnershipDisclaimer": "You are transferring ownership of the selected team to <b>{{ member }}</b>.",
|
"transferOwnershipDisclaimer": "You are transferring ownership of the selected company account to <b>{{ member }}</b>.",
|
||||||
"transferringOwnership": "Transferring ownership...",
|
"transferringOwnership": "Transferring ownership...",
|
||||||
"transferOwnershipSuccess": "Ownership successfully transferred",
|
"transferOwnershipSuccess": "Ownership successfully transferred",
|
||||||
"transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.",
|
"transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.",
|
||||||
"deleteInviteSubmitLabel": "Delete Invite",
|
"deleteInviteSubmitLabel": "Delete Invite",
|
||||||
"youBadgeLabel": "You",
|
"youBadgeLabel": "You",
|
||||||
"updateTeamLoadingMessage": "Updating Team...",
|
"updateTeamLoadingMessage": "Updating Company...",
|
||||||
"updateTeamSuccessMessage": "Team successfully updated",
|
"updateTeamSuccessMessage": "Company successfully updated",
|
||||||
"updateTeamErrorMessage": "Could not update Team. Please try again.",
|
"updateTeamErrorMessage": "Could not update Company. Please try again.",
|
||||||
"updateLogoErrorMessage": "Could not update Logo. Please try again.",
|
"updateLogoErrorMessage": "Could not update Logo. Please try again.",
|
||||||
"teamNameInputLabel": "Team Name",
|
"teamNameInputLabel": "Company Name",
|
||||||
"teamLogoInputHeading": "Upload your team's Logo",
|
"teamLogoInputHeading": "Upload your company's Logo",
|
||||||
"teamLogoInputSubheading": "Please choose a photo to upload as your team logo.",
|
"teamLogoInputSubheading": "Please choose a photo to upload as your company logo.",
|
||||||
"updateTeamSubmitLabel": "Update Team",
|
"updateTeamSubmitLabel": "Update Company",
|
||||||
"inviteMembersHeading": "Invite Members to your Team",
|
"inviteMembersHeading": "Invite Employees to your Company",
|
||||||
"inviteMembersDescription": "Invite members to your team by entering their email and role.",
|
"inviteMembersDescription": "Invite employees to your company by entering their email and role.",
|
||||||
"emailPlaceholder": "member@email.com",
|
"emailPlaceholder": "employee@email.com",
|
||||||
"membersPageHeading": "Members",
|
"membersPageHeading": "Employees",
|
||||||
"inviteMembersButton": "Invite Members",
|
"inviteMembersButton": "Invite Employees",
|
||||||
"invitingMembers": "Inviting members...",
|
"invitingMembers": "Inviting employees...",
|
||||||
"inviteMembersSuccessMessage": "Members invited successfully",
|
"inviteMembersSuccessMessage": "Employees invited successfully",
|
||||||
"inviteMembersErrorMessage": "Sorry, members could not be invited. Please try again.",
|
"inviteMembersErrorMessage": "Sorry, employees could not be invited. Please try again.",
|
||||||
"pendingInvitesHeading": "Pending Invites",
|
"pendingInvitesHeading": "Pending Invites",
|
||||||
"pendingInvitesDescription": " Here you can manage the pending invitations to your team.",
|
"pendingInvitesDescription": " Here you can manage the pending invitations to your company.",
|
||||||
"noPendingInvites": "No pending invites found",
|
"noPendingInvites": "No pending invites found",
|
||||||
"loadingMembers": "Loading members...",
|
"loadingMembers": "Loading employees...",
|
||||||
"loadMembersError": "Sorry, we couldn't fetch your team's members.",
|
"loadMembersError": "Sorry, we couldn't fetch your company's employees.",
|
||||||
"loadInvitedMembersError": "Sorry, we couldn't fetch your team's invited members.",
|
"loadInvitedMembersError": "Sorry, we couldn't fetch your company's invited employees.",
|
||||||
"loadingInvitedMembers": "Loading invited members...",
|
"loadingInvitedMembers": "Loading invited employees...",
|
||||||
"invitedBadge": "Invited",
|
"invitedBadge": "Invited",
|
||||||
"duplicateInviteEmailError": "You have already entered this email address",
|
"duplicateInviteEmailError": "You have already entered this email address",
|
||||||
"invitingOwnAccountError": "Hey, that's your email!",
|
"invitingOwnAccountError": "Hey, that's your email!",
|
||||||
"dangerZone": "Danger Zone",
|
"dangerZone": "Danger Zone",
|
||||||
"dangerZoneSubheading": "Delete or leave your team",
|
"dangerZoneSubheading": "Delete or leave your company",
|
||||||
"deleteTeam": "Delete Team",
|
"deleteTeam": "Delete Company",
|
||||||
"deleteTeamDescription": "This action cannot be undone. All data associated with this team will be deleted.",
|
"deleteTeamDescription": "This action cannot be undone. All data associated with this company will be deleted.",
|
||||||
"deletingTeam": "Deleting team",
|
"deletingTeam": "Deleting company",
|
||||||
"deleteTeamModalHeading": "Deleting Team",
|
"deleteTeamModalHeading": "Deleting Company",
|
||||||
"deletingTeamDescription": "You are about to delete the team {{ teamName }}. This action cannot be undone.",
|
"deletingTeamDescription": "You are about to delete the company {{ teamName }}. This action cannot be undone.",
|
||||||
"deleteTeamInputField": "Type the name of the team to confirm",
|
"deleteTeamInputField": "Type the name of the company to confirm",
|
||||||
"leaveTeam": "Leave Team",
|
"leaveTeam": "Leave Company",
|
||||||
"leavingTeamModalHeading": "Leaving Team",
|
"leavingTeamModalHeading": "Leaving Company",
|
||||||
"leavingTeamModalDescription": "You are about to leave this team. You will no longer have access to it.",
|
"leavingTeamModalDescription": "You are about to leave this company. You will no longer have access to it.",
|
||||||
"leaveTeamDescription": "Click the button below to leave the team. Remember, you will no longer have access to it and will need to be re-invited to join.",
|
"leaveTeamDescription": "Click the button below to leave the company. Remember, you will no longer have access to it and will need to be re-invited to join.",
|
||||||
"deleteTeamDisclaimer": "You are deleting the team {{ teamName }}. This action cannot be undone.",
|
"deleteTeamDisclaimer": "You are deleting the company {{ teamName }}. This action cannot be undone.",
|
||||||
"leaveTeamDisclaimer": "You are leaving the team {{ teamName }}. You will no longer have access to it.",
|
"leaveTeamDisclaimer": "You are leaving the company {{ teamName }}. You will no longer have access to it.",
|
||||||
"deleteTeamErrorHeading": "Sorry, we couldn't delete your team.",
|
"deleteTeamErrorHeading": "Sorry, we couldn't delete your company.",
|
||||||
"leaveTeamErrorHeading": "Sorry, we couldn't leave your team.",
|
"leaveTeamErrorHeading": "Sorry, we couldn't leave your company.",
|
||||||
"searchMembersPlaceholder": "Search members",
|
"searchMembersPlaceholder": "Search employees",
|
||||||
"createTeamErrorHeading": "Sorry, we couldn't create your team.",
|
"createTeamErrorHeading": "Sorry, we couldn't create your company.",
|
||||||
"createTeamErrorMessage": "We encountered an error creating your team. Please try again.",
|
"createTeamErrorMessage": "We encountered an error creating your company. Please try again.",
|
||||||
"transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your team.",
|
"transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your company account.",
|
||||||
"transferTeamErrorMessage": "We encountered an error transferring ownership of your team. Please try again.",
|
"transferTeamErrorMessage": "We encountered an error transferring ownership of your company account. Please try again.",
|
||||||
"updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected member.",
|
"updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected employee.",
|
||||||
"updateRoleErrorMessage": "We encountered an error updating the role of the selected member. Please try again.",
|
"updateRoleErrorMessage": "We encountered an error updating the role of the selected employee. Please try again.",
|
||||||
"searchInvitations": "Search Invitations",
|
"searchInvitations": "Search Invitations",
|
||||||
"updateInvitation": "Update Invitation",
|
"updateInvitation": "Update Invitation",
|
||||||
"removeInvitation": "Remove Invitation",
|
"removeInvitation": "Remove Invitation",
|
||||||
@@ -144,20 +144,20 @@
|
|||||||
"active": "Active",
|
"active": "Active",
|
||||||
"inviteStatus": "Status",
|
"inviteStatus": "Status",
|
||||||
"inviteNotFoundOrExpired": "Invite not found or expired",
|
"inviteNotFoundOrExpired": "Invite not found or expired",
|
||||||
"inviteNotFoundOrExpiredDescription": "The invite you are looking for is either expired or does not exist. Please contact the team owner to renew the invite.",
|
"inviteNotFoundOrExpiredDescription": "The invite you are looking for is either expired or does not exist. Please contact the company HR to renew the invite.",
|
||||||
"backToHome": "Back to Home",
|
"backToHome": "Back to Home",
|
||||||
"renewInvitationDialogDescription": "You are about to renew the invitation to {{ email }}. The user will be able to join the team.",
|
"renewInvitationDialogDescription": "You are about to renew the invitation to {{ email }}. The user will be able to join the company.",
|
||||||
"renewInvitationErrorTitle": "Sorry, we couldn't renew the invitation.",
|
"renewInvitationErrorTitle": "Sorry, we couldn't renew the invitation.",
|
||||||
"renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.",
|
"renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.",
|
||||||
"signInWithDifferentAccount": "Sign in with a different account",
|
"signInWithDifferentAccount": "Sign in with a different account",
|
||||||
"signInWithDifferentAccountDescription": "If you wish to accept the invitation with a different account, please sign out and back in with the account you wish to use.",
|
"signInWithDifferentAccountDescription": "If you wish to accept the invitation with a different account, please sign out and back in with the account you wish to use.",
|
||||||
"acceptInvitationHeading": "Accept Invitation to join {{accountName}}",
|
"acceptInvitationHeading": "Accept Invitation to join {{accountName}}",
|
||||||
"acceptInvitationDescription": "You have been invited to join the team {{accountName}}. If you wish to accept the invitation, please click the button below.",
|
"acceptInvitationDescription": "You have been invited to join the company {{accountName}}. If you wish to accept the invitation, please click the button below.",
|
||||||
"continueAs": "Continue as {{email}}",
|
"continueAs": "Continue as {{email}}",
|
||||||
"joinTeamAccount": "Join Team",
|
"joinTeamAccount": "Join Company",
|
||||||
"joiningTeam": "Joining team...",
|
"joiningTeam": "Joining company...",
|
||||||
"leaveTeamInputLabel": "Please type LEAVE to confirm leaving the team.",
|
"leaveTeamInputLabel": "Please type LEAVE to confirm leaving the company.",
|
||||||
"leaveTeamInputDescription": "By leaving the team, you will no longer have access to it.",
|
"leaveTeamInputDescription": "By leaving the company, you will no longer have access to it.",
|
||||||
"reservedNameError": "This name is reserved. Please choose a different one.",
|
"reservedNameError": "This name is reserved. Please choose a different one.",
|
||||||
"specialCharactersError": "This name cannot contain special characters. Please choose a different one."
|
"specialCharactersError": "This name cannot contain special characters. Please choose a different one."
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user