diff --git a/packages/frontend-2/components/settings/workspaces/Billing.vue b/packages/frontend-2/components/settings/workspaces/Billing.vue index fcf7c4b3d..0482ab602 100644 --- a/packages/frontend-2/components/settings/workspaces/Billing.vue +++ b/packages/frontend-2/components/settings/workspaces/Billing.vue @@ -35,7 +35,7 @@ £{{ seatPrice[Roles.Workspace.Member] }} per seat/month, billed {{ subscription?.billingInterval === BillingInterval.Yearly - ? 'yearly' + ? 'annually' : 'monthly' }}
@@ -46,7 +46,7 @@ statusIsTrial ? 'Expected bill' : subscription?.billingInterval === BillingInterval.Yearly - ? 'Yearly bill' + ? 'Annual bill' : 'Monthly bill' }} @@ -86,7 +86,7 @@ {{ subscription?.billingInterval === BillingInterval.Yearly - ? 'Yearly' + ? 'Annual' : 'Monthly' }} diff --git a/packages/frontend-2/lib/billing/helpers/constants.ts b/packages/frontend-2/lib/billing/helpers/constants.ts index 4f1083bdc..3f371fe40 100644 --- a/packages/frontend-2/lib/billing/helpers/constants.ts +++ b/packages/frontend-2/lib/billing/helpers/constants.ts @@ -32,7 +32,7 @@ export const pricingPlansConfig: { [PlanFeaturesList.GuestUsers]: { name: PlanFeaturesList.GuestUsers, description: (price?: number) => - `Give guests access to specific projects £${price}/month/guest` + `Give guests access to specific projects in the workspace at £${price}/month/guest` }, [PlanFeaturesList.PrivateAutomateFunctions]: { name: PlanFeaturesList.PrivateAutomateFunctions, @@ -49,7 +49,7 @@ export const pricingPlansConfig: { }, [PlanFeaturesList.CustomDataRegion]: { name: PlanFeaturesList.CustomDataRegion, - description: () => `Store the workspace data in a custom region of choice` + description: () => `Store the workspace data in a custom region` }, [PlanFeaturesList.PrioritySupport]: { name: PlanFeaturesList.PrioritySupport,