From 9d869becaa02dfe66ae415d5cb1cbeaee5ec75a5 Mon Sep 17 00:00:00 2001 From: devmc-ee Date: Sun, 15 Jun 2025 10:28:26 +0300 Subject: [PATCH] B2B-30: rename teams and members to companies and employees --- .../src/components/admin-account-page.tsx | 7 +- .../src/components/admin-accounts-table.tsx | 6 +- .../admin/src/components/admin-dashboard.tsx | 41 +---- .../src/components/admin-members-table.tsx | 2 +- public/locales/en/auth.json | 4 +- public/locales/en/billing.json | 8 +- public/locales/en/common.json | 8 +- public/locales/en/teams.json | 162 +++++++++--------- public/locales/et/account.json | 2 +- public/locales/et/auth.json | 4 +- public/locales/et/billing.json | 8 +- public/locales/et/common.json | 8 +- public/locales/et/marketing.json | 2 +- public/locales/et/teams.json | 162 +++++++++--------- public/locales/ru/auth.json | 4 +- public/locales/ru/billing.json | 8 +- public/locales/ru/common.json | 8 +- public/locales/ru/marketing.json | 2 +- public/locales/ru/teams.json | 162 +++++++++--------- 19 files changed, 285 insertions(+), 323 deletions(-) diff --git a/packages/features/admin/src/components/admin-account-page.tsx b/packages/features/admin/src/components/admin-account-page.tsx index 90be6d5..ea114be 100644 --- a/packages/features/admin/src/components/admin-account-page.tsx +++ b/packages/features/admin/src/components/admin-account-page.tsx @@ -149,7 +149,7 @@ async function PersonalAccountPage(props: { account: Account }) {
- Teams + Companies
@@ -205,16 +205,15 @@ async function TeamAccountPage(props: {
- Team Account + Company Account
-
- Team Members + Company Employees
diff --git a/packages/features/admin/src/components/admin-accounts-table.tsx b/packages/features/admin/src/components/admin-accounts-table.tsx index abaee2d..06a14c7 100644 --- a/packages/features/admin/src/components/admin-accounts-table.tsx +++ b/packages/features/admin/src/components/admin-accounts-table.tsx @@ -132,7 +132,7 @@ function AccountsTableFilters(props: { Account Type All accounts - Team + Company Personal @@ -183,7 +183,7 @@ function getColumns(): ColumnDef[] { id: 'type', header: 'Type', 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[] { e.preventDefault()}> - Delete Team Account + Delete Company Account diff --git a/packages/features/admin/src/components/admin-dashboard.tsx b/packages/features/admin/src/components/admin-dashboard.tsx index 997d5a5..0492441 100644 --- a/packages/features/admin/src/components/admin-dashboard.tsx +++ b/packages/features/admin/src/components/admin-dashboard.tsx @@ -36,10 +36,10 @@ export async function AdminDashboard() { - Team Accounts + Company Accounts - The number of team accounts that have been created. + The number of company accounts that have been created. @@ -49,43 +49,6 @@ export async function AdminDashboard() {
- - - - Paying Customers - - The number of paying customers with active subscriptions. - - - - -
-
{data.subscriptions}
-
-
-
- - - - Trials - - - The number of trial subscriptions currently active. - - - - -
-
{data.trials}
-
-
-
- -
-

- The above data is estimated and may not be 100% accurate. -

-
); } diff --git a/packages/features/admin/src/components/admin-members-table.tsx b/packages/features/admin/src/components/admin-members-table.tsx index d00e51c..8d256be 100644 --- a/packages/features/admin/src/components/admin-members-table.tsx +++ b/packages/features/admin/src/components/admin-members-table.tsx @@ -52,7 +52,7 @@ function getColumns(): ColumnDef[] { { header: 'Role', cell: ({ row }) => { - return row.original.role; + return row.original.role === 'owner' ? 'HR' : 'Employee'; }, }, { diff --git a/public/locales/en/auth.json b/public/locales/en/auth.json index 3bb81d4..7db0925 100644 --- a/public/locales/en/auth.json +++ b/public/locales/en/auth.json @@ -63,8 +63,8 @@ "sendingEmailCode": "Sending code...", "resetPasswordError": "Sorry, we could not reset your password. Please try again.", "emailPlaceholder": "your@email.com", - "inviteAlertHeading": "You have been invited to join a team", - "inviteAlertBody": "Please sign in or sign up to accept the invite and join the team.", + "inviteAlertHeading": "You have been invited to join a company", + "inviteAlertBody": "Please sign in or sign up to accept the invite and join the company.", "acceptTermsAndConditions": "I accept the and ", "termsOfService": "Terms of Service", "privacyPolicy": "Privacy Policy", diff --git a/public/locales/en/billing.json b/public/locales/en/billing.json index 9efef35..84c849e 100644 --- a/public/locales/en/billing.json +++ b/public/locales/en/billing.json @@ -18,8 +18,8 @@ "checkoutSuccessBackButton": "Proceed to App", "cannotManageBillingAlertTitle": "You cannot manage billing", "cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.", - "manageTeamPlan": "Manage your Team Plan", - "manageTeamPlanDescription": "Choose a plan that fits your team's needs. You can upgrade or downgrade your plan at any time.", + "manageTeamPlan": "Manage your Company Plan", + "manageTeamPlanDescription": "Choose a plan that fits your company's needs. You can upgrade or downgrade your plan at any time.", "basePlan": "Base Plan", "billingInterval": { "label": "Choose your billing interval", @@ -34,9 +34,9 @@ "redirectingToPayment": "Redirecting to checkout. Please wait...", "proceedToPayment": "Proceed to Payment", "startTrial": "Start Trial", - "perTeamMember": "Per team member", + "perTeamMember": "Per company employee", "perUnit": "Per {{unit}} usage", - "teamMembers": "Team Members", + "teamMembers": "Company Employees", "includedUpTo": "Up to {{upTo}} {{unit}} included in the plan", "fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}", "andAbove": "above {{ previousTier }} {{ unit }}", diff --git a/public/locales/en/common.json b/public/locales/en/common.json index c194ce3..8aade69 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -1,8 +1,8 @@ { "homeTabLabel": "Home", "homeTabDescription": "Welcome to your home page", - "accountMembers": "Team Members", - "membersTabDescription": "Here you can manage the members of your team.", + "accountMembers": "Company Employees", + "membersTabDescription": "Here you can manage the employees of your company.", "billingTabLabel": "Billing", "billingTabDescription": "Manage your billing and subscription", "dashboardTabLabel": "Dashboard", @@ -58,7 +58,7 @@ "routes": { "home": "Home", "account": "Account", - "members": "Members", + "members": "Employees", "billing": "Billing", "dashboard": "Dashboard", "settings": "Settings", @@ -70,7 +70,7 @@ "label": "Owner" }, "member": { - "label": "Member" + "label": "Employee" } }, "otp": { diff --git a/public/locales/en/teams.json b/public/locales/en/teams.json index 2a0b614..d09d78d 100644 --- a/public/locales/en/teams.json +++ b/public/locales/en/teams.json @@ -4,26 +4,26 @@ }, "settings": { "pageTitle": "Settings", - "pageDescription": "Manage your Team details", - "teamLogo": "Team Logo", - "teamLogoDescription": "Update your team's logo to make it easier to identify", - "teamName": "Team Name", - "teamNameDescription": "Update your team's name", + "pageDescription": "Manage your Company details", + "teamLogo": "Company Logo", + "teamLogoDescription": "Update your company's logo to make it easier to identify", + "teamName": "Company Name", + "teamNameDescription": "Update your company's name", "dangerZone": "Danger Zone", "dangerZoneDescription": "This section contains actions that are irreversible" }, "members": { - "pageTitle": "Members" + "pageTitle": "Employees" }, "billing": { "pageTitle": "Billing" }, - "yourTeams": "Your Teams ({{teamsCount}})", - "createTeam": "Create a Team", - "creatingTeam": "Creating Team...", + "yourTeams": "Your Companies ({{teamsCount}})", + "createTeam": "Create a Company", + "creatingTeam": "Creating Company...", "personalAccount": "Personal Account", "searchAccount": "Search Account...", - "membersTabLabel": "Members", + "membersTabLabel": "Employees", "memberName": "Name", "youLabel": "You", "emailLabel": "Email", @@ -31,108 +31,108 @@ "primaryOwnerLabel": "Primary Owner", "joinedAtLabel": "Joined at", "invitedAtLabel": "Invited at", - "inviteMembersPageSubheading": "Invite members to your Team", - "createTeamModalHeading": "Create Team", - "createTeamModalDescription": "Create a new Team to manage your projects and members.", - "teamNameLabel": "Team Name", - "teamNameDescription": "Your team name should be unique and descriptive", - "createTeamSubmitLabel": "Create Team", - "createTeamSuccess": "Team created successfully", - "createTeamError": "Team not created. Please try again.", - "createTeamLoading": "Creating team...", + "inviteMembersPageSubheading": "Invite employees to your Company", + "createTeamModalHeading": "Create Company", + "createTeamModalDescription": "Create a new Company to manage your projects and employees.", + "teamNameLabel": "Company Name", + "teamNameDescription": "Your company name should be unique and descriptive", + "createTeamSubmitLabel": "Create Company", + "createTeamSuccess": "Company created successfully", + "createTeamError": "Company not created. Please try again.", + "createTeamLoading": "Creating company...", "settingsPageLabel": "General", - "createTeamDropdownLabel": "New team", + "createTeamDropdownLabel": "New company", "changeRole": "Change Role", "removeMember": "Remove from Account", - "inviteMembersSuccess": "Members invited successfully!", + "inviteMembersSuccess": "Employees invited successfully!", "inviteMembersError": "Sorry, we encountered an error! Please try again", - "inviteMembersLoading": "Inviting members...", + "inviteMembersLoading": "Inviting employees...", "removeInviteButtonLabel": "Remove invite", "addAnotherMemberButtonLabel": "Add another one", "inviteMembersButtonLabel": "Send Invites", "removeMemberModalHeading": "You are removing this user", - "removeMemberModalDescription": "Remove this member from the team. They will no longer have access to the team.", - "removeMemberSuccessMessage": "Member removed successfully", + "removeMemberModalDescription": "Remove this employee from the company. They will no longer have access to the company.", + "removeMemberSuccessMessage": "Employee removed successfully", "removeMemberErrorMessage": "Sorry, we encountered an error. Please try again", - "removeMemberErrorHeading": "Sorry, we couldn't remove the selected member.", - "removeMemberLoadingMessage": "Removing member...", - "removeMemberSubmitLabel": "Remove User from Team", + "removeMemberErrorHeading": "Sorry, we couldn't remove the selected employee.", + "removeMemberLoadingMessage": "Removing employee...", + "removeMemberSubmitLabel": "Remove User from Company", "chooseDifferentRoleError": "Role is the same as the current one", "updateRole": "Update Role", "updateRoleLoadingMessage": "Updating role...", "updateRoleSuccessMessage": "Role updated successfully", "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.", "roleMustBeDifferent": "Role must be different from the current one", "memberRoleInputLabel": "Member role", "updateRoleDescription": "Pick a role for this member.", "updateRoleSubmitLabel": "Update Role", "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.", - "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", - "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", "deleteInviteErrorMessage": "Invite not deleted. Please try again.", "deleteInviteLoadingMessage": "Deleting invite. Please wait...", "confirmDeletingMemberInvite": "You are deleting the invite to {{ email }}", - "transferOwnershipDisclaimer": "You are transferring ownership of the selected team to {{ member }}.", + "transferOwnershipDisclaimer": "You are transferring ownership of the selected company account to {{ member }}.", "transferringOwnership": "Transferring ownership...", "transferOwnershipSuccess": "Ownership successfully transferred", "transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.", "deleteInviteSubmitLabel": "Delete Invite", "youBadgeLabel": "You", - "updateTeamLoadingMessage": "Updating Team...", - "updateTeamSuccessMessage": "Team successfully updated", - "updateTeamErrorMessage": "Could not update Team. Please try again.", + "updateTeamLoadingMessage": "Updating Company...", + "updateTeamSuccessMessage": "Company successfully updated", + "updateTeamErrorMessage": "Could not update Company. Please try again.", "updateLogoErrorMessage": "Could not update Logo. Please try again.", - "teamNameInputLabel": "Team Name", - "teamLogoInputHeading": "Upload your team's Logo", - "teamLogoInputSubheading": "Please choose a photo to upload as your team logo.", - "updateTeamSubmitLabel": "Update Team", - "inviteMembersHeading": "Invite Members to your Team", - "inviteMembersDescription": "Invite members to your team by entering their email and role.", - "emailPlaceholder": "member@email.com", - "membersPageHeading": "Members", - "inviteMembersButton": "Invite Members", - "invitingMembers": "Inviting members...", - "inviteMembersSuccessMessage": "Members invited successfully", - "inviteMembersErrorMessage": "Sorry, members could not be invited. Please try again.", + "teamNameInputLabel": "Company Name", + "teamLogoInputHeading": "Upload your company's Logo", + "teamLogoInputSubheading": "Please choose a photo to upload as your company logo.", + "updateTeamSubmitLabel": "Update Company", + "inviteMembersHeading": "Invite Employees to your Company", + "inviteMembersDescription": "Invite employees to your company by entering their email and role.", + "emailPlaceholder": "employee@email.com", + "membersPageHeading": "Employees", + "inviteMembersButton": "Invite Employees", + "invitingMembers": "Inviting employees...", + "inviteMembersSuccessMessage": "Employees invited successfully", + "inviteMembersErrorMessage": "Sorry, employees could not be invited. Please try again.", "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", - "loadingMembers": "Loading members...", - "loadMembersError": "Sorry, we couldn't fetch your team's members.", - "loadInvitedMembersError": "Sorry, we couldn't fetch your team's invited members.", - "loadingInvitedMembers": "Loading invited members...", + "loadingMembers": "Loading employees...", + "loadMembersError": "Sorry, we couldn't fetch your company's employees.", + "loadInvitedMembersError": "Sorry, we couldn't fetch your company's invited employees.", + "loadingInvitedMembers": "Loading invited employees...", "invitedBadge": "Invited", "duplicateInviteEmailError": "You have already entered this email address", "invitingOwnAccountError": "Hey, that's your email!", "dangerZone": "Danger Zone", - "dangerZoneSubheading": "Delete or leave your team", - "deleteTeam": "Delete Team", - "deleteTeamDescription": "This action cannot be undone. All data associated with this team will be deleted.", - "deletingTeam": "Deleting team", - "deleteTeamModalHeading": "Deleting Team", - "deletingTeamDescription": "You are about to delete the team {{ teamName }}. This action cannot be undone.", - "deleteTeamInputField": "Type the name of the team to confirm", - "leaveTeam": "Leave Team", - "leavingTeamModalHeading": "Leaving Team", - "leavingTeamModalDescription": "You are about to leave this team. 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.", - "deleteTeamDisclaimer": "You are deleting the team {{ teamName }}. This action cannot be undone.", - "leaveTeamDisclaimer": "You are leaving the team {{ teamName }}. You will no longer have access to it.", - "deleteTeamErrorHeading": "Sorry, we couldn't delete your team.", - "leaveTeamErrorHeading": "Sorry, we couldn't leave your team.", - "searchMembersPlaceholder": "Search members", - "createTeamErrorHeading": "Sorry, we couldn't create your team.", - "createTeamErrorMessage": "We encountered an error creating your team. Please try again.", - "transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your team.", - "transferTeamErrorMessage": "We encountered an error transferring ownership of your team. Please try again.", - "updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected member.", - "updateRoleErrorMessage": "We encountered an error updating the role of the selected member. Please try again.", + "dangerZoneSubheading": "Delete or leave your company", + "deleteTeam": "Delete Company", + "deleteTeamDescription": "This action cannot be undone. All data associated with this company will be deleted.", + "deletingTeam": "Deleting company", + "deleteTeamModalHeading": "Deleting Company", + "deletingTeamDescription": "You are about to delete the company {{ teamName }}. This action cannot be undone.", + "deleteTeamInputField": "Type the name of the company to confirm", + "leaveTeam": "Leave Company", + "leavingTeamModalHeading": "Leaving Company", + "leavingTeamModalDescription": "You are about to leave this company. You will no longer have access to it.", + "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 company {{ teamName }}. This action cannot be undone.", + "leaveTeamDisclaimer": "You are leaving the company {{ teamName }}. You will no longer have access to it.", + "deleteTeamErrorHeading": "Sorry, we couldn't delete your company.", + "leaveTeamErrorHeading": "Sorry, we couldn't leave your company.", + "searchMembersPlaceholder": "Search employees", + "createTeamErrorHeading": "Sorry, we couldn't create your company.", + "createTeamErrorMessage": "We encountered an error creating your company. Please try again.", + "transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your company account.", + "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 employee.", + "updateRoleErrorMessage": "We encountered an error updating the role of the selected employee. Please try again.", "searchInvitations": "Search Invitations", "updateInvitation": "Update Invitation", "removeInvitation": "Remove Invitation", @@ -144,20 +144,20 @@ "active": "Active", "inviteStatus": "Status", "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", - "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.", "renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.", "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.", "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}}", - "joinTeamAccount": "Join Team", - "joiningTeam": "Joining team...", - "leaveTeamInputLabel": "Please type LEAVE to confirm leaving the team.", - "leaveTeamInputDescription": "By leaving the team, you will no longer have access to it.", + "joinTeamAccount": "Join Company", + "joiningTeam": "Joining company...", + "leaveTeamInputLabel": "Please type LEAVE to confirm leaving the company.", + "leaveTeamInputDescription": "By leaving the company, you will no longer have access to it.", "reservedNameError": "This name is reserved. Please choose a different one.", "specialCharactersError": "This name cannot contain special characters. Please choose a different one." } diff --git a/public/locales/et/account.json b/public/locales/et/account.json index 3526791..28ee8d9 100644 --- a/public/locales/et/account.json +++ b/public/locales/et/account.json @@ -113,5 +113,5 @@ "createTeam": "Create a team to get started.", "createTeamButtonLabel": "Create a Team", "createCompanyAccount": "Create Company Account", - "requestCompanyAccount": "Küsi pakkumist" + "requestCompanyAccount": "Request Company Account" } diff --git a/public/locales/et/auth.json b/public/locales/et/auth.json index 3bb81d4..7db0925 100644 --- a/public/locales/et/auth.json +++ b/public/locales/et/auth.json @@ -63,8 +63,8 @@ "sendingEmailCode": "Sending code...", "resetPasswordError": "Sorry, we could not reset your password. Please try again.", "emailPlaceholder": "your@email.com", - "inviteAlertHeading": "You have been invited to join a team", - "inviteAlertBody": "Please sign in or sign up to accept the invite and join the team.", + "inviteAlertHeading": "You have been invited to join a company", + "inviteAlertBody": "Please sign in or sign up to accept the invite and join the company.", "acceptTermsAndConditions": "I accept the and ", "termsOfService": "Terms of Service", "privacyPolicy": "Privacy Policy", diff --git a/public/locales/et/billing.json b/public/locales/et/billing.json index 9efef35..84c849e 100644 --- a/public/locales/et/billing.json +++ b/public/locales/et/billing.json @@ -18,8 +18,8 @@ "checkoutSuccessBackButton": "Proceed to App", "cannotManageBillingAlertTitle": "You cannot manage billing", "cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.", - "manageTeamPlan": "Manage your Team Plan", - "manageTeamPlanDescription": "Choose a plan that fits your team's needs. You can upgrade or downgrade your plan at any time.", + "manageTeamPlan": "Manage your Company Plan", + "manageTeamPlanDescription": "Choose a plan that fits your company's needs. You can upgrade or downgrade your plan at any time.", "basePlan": "Base Plan", "billingInterval": { "label": "Choose your billing interval", @@ -34,9 +34,9 @@ "redirectingToPayment": "Redirecting to checkout. Please wait...", "proceedToPayment": "Proceed to Payment", "startTrial": "Start Trial", - "perTeamMember": "Per team member", + "perTeamMember": "Per company employee", "perUnit": "Per {{unit}} usage", - "teamMembers": "Team Members", + "teamMembers": "Company Employees", "includedUpTo": "Up to {{upTo}} {{unit}} included in the plan", "fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}", "andAbove": "above {{ previousTier }} {{ unit }}", diff --git a/public/locales/et/common.json b/public/locales/et/common.json index c194ce3..8aade69 100644 --- a/public/locales/et/common.json +++ b/public/locales/et/common.json @@ -1,8 +1,8 @@ { "homeTabLabel": "Home", "homeTabDescription": "Welcome to your home page", - "accountMembers": "Team Members", - "membersTabDescription": "Here you can manage the members of your team.", + "accountMembers": "Company Employees", + "membersTabDescription": "Here you can manage the employees of your company.", "billingTabLabel": "Billing", "billingTabDescription": "Manage your billing and subscription", "dashboardTabLabel": "Dashboard", @@ -58,7 +58,7 @@ "routes": { "home": "Home", "account": "Account", - "members": "Members", + "members": "Employees", "billing": "Billing", "dashboard": "Dashboard", "settings": "Settings", @@ -70,7 +70,7 @@ "label": "Owner" }, "member": { - "label": "Member" + "label": "Employee" } }, "otp": { diff --git a/public/locales/et/marketing.json b/public/locales/et/marketing.json index 96420bd..3deb11a 100644 --- a/public/locales/et/marketing.json +++ b/public/locales/et/marketing.json @@ -36,5 +36,5 @@ "contactErrorDescription": "An error occurred while sending your message. Please try again later", "footerDescription": "Here you can add a description about your company or product", "copyright": "© Copyright {{year}} {{product}}. All Rights Reserved.", - "heroSubtitle": "Lihtne, mugav ja kiire ülevaade Sinu tervise seisundist" + "heroSubtitle": "Lihtne, mugav ja kiire ülevaade oma tervisest" } diff --git a/public/locales/et/teams.json b/public/locales/et/teams.json index 2a0b614..d09d78d 100644 --- a/public/locales/et/teams.json +++ b/public/locales/et/teams.json @@ -4,26 +4,26 @@ }, "settings": { "pageTitle": "Settings", - "pageDescription": "Manage your Team details", - "teamLogo": "Team Logo", - "teamLogoDescription": "Update your team's logo to make it easier to identify", - "teamName": "Team Name", - "teamNameDescription": "Update your team's name", + "pageDescription": "Manage your Company details", + "teamLogo": "Company Logo", + "teamLogoDescription": "Update your company's logo to make it easier to identify", + "teamName": "Company Name", + "teamNameDescription": "Update your company's name", "dangerZone": "Danger Zone", "dangerZoneDescription": "This section contains actions that are irreversible" }, "members": { - "pageTitle": "Members" + "pageTitle": "Employees" }, "billing": { "pageTitle": "Billing" }, - "yourTeams": "Your Teams ({{teamsCount}})", - "createTeam": "Create a Team", - "creatingTeam": "Creating Team...", + "yourTeams": "Your Companies ({{teamsCount}})", + "createTeam": "Create a Company", + "creatingTeam": "Creating Company...", "personalAccount": "Personal Account", "searchAccount": "Search Account...", - "membersTabLabel": "Members", + "membersTabLabel": "Employees", "memberName": "Name", "youLabel": "You", "emailLabel": "Email", @@ -31,108 +31,108 @@ "primaryOwnerLabel": "Primary Owner", "joinedAtLabel": "Joined at", "invitedAtLabel": "Invited at", - "inviteMembersPageSubheading": "Invite members to your Team", - "createTeamModalHeading": "Create Team", - "createTeamModalDescription": "Create a new Team to manage your projects and members.", - "teamNameLabel": "Team Name", - "teamNameDescription": "Your team name should be unique and descriptive", - "createTeamSubmitLabel": "Create Team", - "createTeamSuccess": "Team created successfully", - "createTeamError": "Team not created. Please try again.", - "createTeamLoading": "Creating team...", + "inviteMembersPageSubheading": "Invite employees to your Company", + "createTeamModalHeading": "Create Company", + "createTeamModalDescription": "Create a new Company to manage your projects and employees.", + "teamNameLabel": "Company Name", + "teamNameDescription": "Your company name should be unique and descriptive", + "createTeamSubmitLabel": "Create Company", + "createTeamSuccess": "Company created successfully", + "createTeamError": "Company not created. Please try again.", + "createTeamLoading": "Creating company...", "settingsPageLabel": "General", - "createTeamDropdownLabel": "New team", + "createTeamDropdownLabel": "New company", "changeRole": "Change Role", "removeMember": "Remove from Account", - "inviteMembersSuccess": "Members invited successfully!", + "inviteMembersSuccess": "Employees invited successfully!", "inviteMembersError": "Sorry, we encountered an error! Please try again", - "inviteMembersLoading": "Inviting members...", + "inviteMembersLoading": "Inviting employees...", "removeInviteButtonLabel": "Remove invite", "addAnotherMemberButtonLabel": "Add another one", "inviteMembersButtonLabel": "Send Invites", "removeMemberModalHeading": "You are removing this user", - "removeMemberModalDescription": "Remove this member from the team. They will no longer have access to the team.", - "removeMemberSuccessMessage": "Member removed successfully", + "removeMemberModalDescription": "Remove this employee from the company. They will no longer have access to the company.", + "removeMemberSuccessMessage": "Employee removed successfully", "removeMemberErrorMessage": "Sorry, we encountered an error. Please try again", - "removeMemberErrorHeading": "Sorry, we couldn't remove the selected member.", - "removeMemberLoadingMessage": "Removing member...", - "removeMemberSubmitLabel": "Remove User from Team", + "removeMemberErrorHeading": "Sorry, we couldn't remove the selected employee.", + "removeMemberLoadingMessage": "Removing employee...", + "removeMemberSubmitLabel": "Remove User from Company", "chooseDifferentRoleError": "Role is the same as the current one", "updateRole": "Update Role", "updateRoleLoadingMessage": "Updating role...", "updateRoleSuccessMessage": "Role updated successfully", "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.", "roleMustBeDifferent": "Role must be different from the current one", "memberRoleInputLabel": "Member role", "updateRoleDescription": "Pick a role for this member.", "updateRoleSubmitLabel": "Update Role", "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.", - "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", - "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", "deleteInviteErrorMessage": "Invite not deleted. Please try again.", "deleteInviteLoadingMessage": "Deleting invite. Please wait...", "confirmDeletingMemberInvite": "You are deleting the invite to {{ email }}", - "transferOwnershipDisclaimer": "You are transferring ownership of the selected team to {{ member }}.", + "transferOwnershipDisclaimer": "You are transferring ownership of the selected company account to {{ member }}.", "transferringOwnership": "Transferring ownership...", "transferOwnershipSuccess": "Ownership successfully transferred", "transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.", "deleteInviteSubmitLabel": "Delete Invite", "youBadgeLabel": "You", - "updateTeamLoadingMessage": "Updating Team...", - "updateTeamSuccessMessage": "Team successfully updated", - "updateTeamErrorMessage": "Could not update Team. Please try again.", + "updateTeamLoadingMessage": "Updating Company...", + "updateTeamSuccessMessage": "Company successfully updated", + "updateTeamErrorMessage": "Could not update Company. Please try again.", "updateLogoErrorMessage": "Could not update Logo. Please try again.", - "teamNameInputLabel": "Team Name", - "teamLogoInputHeading": "Upload your team's Logo", - "teamLogoInputSubheading": "Please choose a photo to upload as your team logo.", - "updateTeamSubmitLabel": "Update Team", - "inviteMembersHeading": "Invite Members to your Team", - "inviteMembersDescription": "Invite members to your team by entering their email and role.", - "emailPlaceholder": "member@email.com", - "membersPageHeading": "Members", - "inviteMembersButton": "Invite Members", - "invitingMembers": "Inviting members...", - "inviteMembersSuccessMessage": "Members invited successfully", - "inviteMembersErrorMessage": "Sorry, members could not be invited. Please try again.", + "teamNameInputLabel": "Company Name", + "teamLogoInputHeading": "Upload your company's Logo", + "teamLogoInputSubheading": "Please choose a photo to upload as your company logo.", + "updateTeamSubmitLabel": "Update Company", + "inviteMembersHeading": "Invite Employees to your Company", + "inviteMembersDescription": "Invite employees to your company by entering their email and role.", + "emailPlaceholder": "employee@email.com", + "membersPageHeading": "Employees", + "inviteMembersButton": "Invite Employees", + "invitingMembers": "Inviting employees...", + "inviteMembersSuccessMessage": "Employees invited successfully", + "inviteMembersErrorMessage": "Sorry, employees could not be invited. Please try again.", "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", - "loadingMembers": "Loading members...", - "loadMembersError": "Sorry, we couldn't fetch your team's members.", - "loadInvitedMembersError": "Sorry, we couldn't fetch your team's invited members.", - "loadingInvitedMembers": "Loading invited members...", + "loadingMembers": "Loading employees...", + "loadMembersError": "Sorry, we couldn't fetch your company's employees.", + "loadInvitedMembersError": "Sorry, we couldn't fetch your company's invited employees.", + "loadingInvitedMembers": "Loading invited employees...", "invitedBadge": "Invited", "duplicateInviteEmailError": "You have already entered this email address", "invitingOwnAccountError": "Hey, that's your email!", "dangerZone": "Danger Zone", - "dangerZoneSubheading": "Delete or leave your team", - "deleteTeam": "Delete Team", - "deleteTeamDescription": "This action cannot be undone. All data associated with this team will be deleted.", - "deletingTeam": "Deleting team", - "deleteTeamModalHeading": "Deleting Team", - "deletingTeamDescription": "You are about to delete the team {{ teamName }}. This action cannot be undone.", - "deleteTeamInputField": "Type the name of the team to confirm", - "leaveTeam": "Leave Team", - "leavingTeamModalHeading": "Leaving Team", - "leavingTeamModalDescription": "You are about to leave this team. 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.", - "deleteTeamDisclaimer": "You are deleting the team {{ teamName }}. This action cannot be undone.", - "leaveTeamDisclaimer": "You are leaving the team {{ teamName }}. You will no longer have access to it.", - "deleteTeamErrorHeading": "Sorry, we couldn't delete your team.", - "leaveTeamErrorHeading": "Sorry, we couldn't leave your team.", - "searchMembersPlaceholder": "Search members", - "createTeamErrorHeading": "Sorry, we couldn't create your team.", - "createTeamErrorMessage": "We encountered an error creating your team. Please try again.", - "transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your team.", - "transferTeamErrorMessage": "We encountered an error transferring ownership of your team. Please try again.", - "updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected member.", - "updateRoleErrorMessage": "We encountered an error updating the role of the selected member. Please try again.", + "dangerZoneSubheading": "Delete or leave your company", + "deleteTeam": "Delete Company", + "deleteTeamDescription": "This action cannot be undone. All data associated with this company will be deleted.", + "deletingTeam": "Deleting company", + "deleteTeamModalHeading": "Deleting Company", + "deletingTeamDescription": "You are about to delete the company {{ teamName }}. This action cannot be undone.", + "deleteTeamInputField": "Type the name of the company to confirm", + "leaveTeam": "Leave Company", + "leavingTeamModalHeading": "Leaving Company", + "leavingTeamModalDescription": "You are about to leave this company. You will no longer have access to it.", + "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 company {{ teamName }}. This action cannot be undone.", + "leaveTeamDisclaimer": "You are leaving the company {{ teamName }}. You will no longer have access to it.", + "deleteTeamErrorHeading": "Sorry, we couldn't delete your company.", + "leaveTeamErrorHeading": "Sorry, we couldn't leave your company.", + "searchMembersPlaceholder": "Search employees", + "createTeamErrorHeading": "Sorry, we couldn't create your company.", + "createTeamErrorMessage": "We encountered an error creating your company. Please try again.", + "transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your company account.", + "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 employee.", + "updateRoleErrorMessage": "We encountered an error updating the role of the selected employee. Please try again.", "searchInvitations": "Search Invitations", "updateInvitation": "Update Invitation", "removeInvitation": "Remove Invitation", @@ -144,20 +144,20 @@ "active": "Active", "inviteStatus": "Status", "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", - "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.", "renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.", "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.", "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}}", - "joinTeamAccount": "Join Team", - "joiningTeam": "Joining team...", - "leaveTeamInputLabel": "Please type LEAVE to confirm leaving the team.", - "leaveTeamInputDescription": "By leaving the team, you will no longer have access to it.", + "joinTeamAccount": "Join Company", + "joiningTeam": "Joining company...", + "leaveTeamInputLabel": "Please type LEAVE to confirm leaving the company.", + "leaveTeamInputDescription": "By leaving the company, you will no longer have access to it.", "reservedNameError": "This name is reserved. Please choose a different one.", "specialCharactersError": "This name cannot contain special characters. Please choose a different one." } diff --git a/public/locales/ru/auth.json b/public/locales/ru/auth.json index 3bb81d4..7db0925 100644 --- a/public/locales/ru/auth.json +++ b/public/locales/ru/auth.json @@ -63,8 +63,8 @@ "sendingEmailCode": "Sending code...", "resetPasswordError": "Sorry, we could not reset your password. Please try again.", "emailPlaceholder": "your@email.com", - "inviteAlertHeading": "You have been invited to join a team", - "inviteAlertBody": "Please sign in or sign up to accept the invite and join the team.", + "inviteAlertHeading": "You have been invited to join a company", + "inviteAlertBody": "Please sign in or sign up to accept the invite and join the company.", "acceptTermsAndConditions": "I accept the and ", "termsOfService": "Terms of Service", "privacyPolicy": "Privacy Policy", diff --git a/public/locales/ru/billing.json b/public/locales/ru/billing.json index 9efef35..84c849e 100644 --- a/public/locales/ru/billing.json +++ b/public/locales/ru/billing.json @@ -18,8 +18,8 @@ "checkoutSuccessBackButton": "Proceed to App", "cannotManageBillingAlertTitle": "You cannot manage billing", "cannotManageBillingAlertDescription": "You do not have permissions to manage billing. Please contact your account owner.", - "manageTeamPlan": "Manage your Team Plan", - "manageTeamPlanDescription": "Choose a plan that fits your team's needs. You can upgrade or downgrade your plan at any time.", + "manageTeamPlan": "Manage your Company Plan", + "manageTeamPlanDescription": "Choose a plan that fits your company's needs. You can upgrade or downgrade your plan at any time.", "basePlan": "Base Plan", "billingInterval": { "label": "Choose your billing interval", @@ -34,9 +34,9 @@ "redirectingToPayment": "Redirecting to checkout. Please wait...", "proceedToPayment": "Proceed to Payment", "startTrial": "Start Trial", - "perTeamMember": "Per team member", + "perTeamMember": "Per company employee", "perUnit": "Per {{unit}} usage", - "teamMembers": "Team Members", + "teamMembers": "Company Employees", "includedUpTo": "Up to {{upTo}} {{unit}} included in the plan", "fromPreviousTierUpTo": "for each {{unit}} for the next {{ upTo }} {{ unit }}", "andAbove": "above {{ previousTier }} {{ unit }}", diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index c194ce3..8aade69 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -1,8 +1,8 @@ { "homeTabLabel": "Home", "homeTabDescription": "Welcome to your home page", - "accountMembers": "Team Members", - "membersTabDescription": "Here you can manage the members of your team.", + "accountMembers": "Company Employees", + "membersTabDescription": "Here you can manage the employees of your company.", "billingTabLabel": "Billing", "billingTabDescription": "Manage your billing and subscription", "dashboardTabLabel": "Dashboard", @@ -58,7 +58,7 @@ "routes": { "home": "Home", "account": "Account", - "members": "Members", + "members": "Employees", "billing": "Billing", "dashboard": "Dashboard", "settings": "Settings", @@ -70,7 +70,7 @@ "label": "Owner" }, "member": { - "label": "Member" + "label": "Employee" } }, "otp": { diff --git a/public/locales/ru/marketing.json b/public/locales/ru/marketing.json index 50076c7..a214fc2 100644 --- a/public/locales/ru/marketing.json +++ b/public/locales/ru/marketing.json @@ -36,5 +36,5 @@ "contactErrorDescription": "An error occurred while sending your message. Please try again later", "footerDescription": "Here you can add a description about your company or product", "copyright": "© Copyright {{year}} {{product}}. All Rights Reserved.", - "heroSubtitle": "Простой, удобный и быстрый обзор вашего состояния здоровья" + "heroSubtitle": "A simple, convenient, and quick overview of your health condition" } diff --git a/public/locales/ru/teams.json b/public/locales/ru/teams.json index 2a0b614..d09d78d 100644 --- a/public/locales/ru/teams.json +++ b/public/locales/ru/teams.json @@ -4,26 +4,26 @@ }, "settings": { "pageTitle": "Settings", - "pageDescription": "Manage your Team details", - "teamLogo": "Team Logo", - "teamLogoDescription": "Update your team's logo to make it easier to identify", - "teamName": "Team Name", - "teamNameDescription": "Update your team's name", + "pageDescription": "Manage your Company details", + "teamLogo": "Company Logo", + "teamLogoDescription": "Update your company's logo to make it easier to identify", + "teamName": "Company Name", + "teamNameDescription": "Update your company's name", "dangerZone": "Danger Zone", "dangerZoneDescription": "This section contains actions that are irreversible" }, "members": { - "pageTitle": "Members" + "pageTitle": "Employees" }, "billing": { "pageTitle": "Billing" }, - "yourTeams": "Your Teams ({{teamsCount}})", - "createTeam": "Create a Team", - "creatingTeam": "Creating Team...", + "yourTeams": "Your Companies ({{teamsCount}})", + "createTeam": "Create a Company", + "creatingTeam": "Creating Company...", "personalAccount": "Personal Account", "searchAccount": "Search Account...", - "membersTabLabel": "Members", + "membersTabLabel": "Employees", "memberName": "Name", "youLabel": "You", "emailLabel": "Email", @@ -31,108 +31,108 @@ "primaryOwnerLabel": "Primary Owner", "joinedAtLabel": "Joined at", "invitedAtLabel": "Invited at", - "inviteMembersPageSubheading": "Invite members to your Team", - "createTeamModalHeading": "Create Team", - "createTeamModalDescription": "Create a new Team to manage your projects and members.", - "teamNameLabel": "Team Name", - "teamNameDescription": "Your team name should be unique and descriptive", - "createTeamSubmitLabel": "Create Team", - "createTeamSuccess": "Team created successfully", - "createTeamError": "Team not created. Please try again.", - "createTeamLoading": "Creating team...", + "inviteMembersPageSubheading": "Invite employees to your Company", + "createTeamModalHeading": "Create Company", + "createTeamModalDescription": "Create a new Company to manage your projects and employees.", + "teamNameLabel": "Company Name", + "teamNameDescription": "Your company name should be unique and descriptive", + "createTeamSubmitLabel": "Create Company", + "createTeamSuccess": "Company created successfully", + "createTeamError": "Company not created. Please try again.", + "createTeamLoading": "Creating company...", "settingsPageLabel": "General", - "createTeamDropdownLabel": "New team", + "createTeamDropdownLabel": "New company", "changeRole": "Change Role", "removeMember": "Remove from Account", - "inviteMembersSuccess": "Members invited successfully!", + "inviteMembersSuccess": "Employees invited successfully!", "inviteMembersError": "Sorry, we encountered an error! Please try again", - "inviteMembersLoading": "Inviting members...", + "inviteMembersLoading": "Inviting employees...", "removeInviteButtonLabel": "Remove invite", "addAnotherMemberButtonLabel": "Add another one", "inviteMembersButtonLabel": "Send Invites", "removeMemberModalHeading": "You are removing this user", - "removeMemberModalDescription": "Remove this member from the team. They will no longer have access to the team.", - "removeMemberSuccessMessage": "Member removed successfully", + "removeMemberModalDescription": "Remove this employee from the company. They will no longer have access to the company.", + "removeMemberSuccessMessage": "Employee removed successfully", "removeMemberErrorMessage": "Sorry, we encountered an error. Please try again", - "removeMemberErrorHeading": "Sorry, we couldn't remove the selected member.", - "removeMemberLoadingMessage": "Removing member...", - "removeMemberSubmitLabel": "Remove User from Team", + "removeMemberErrorHeading": "Sorry, we couldn't remove the selected employee.", + "removeMemberLoadingMessage": "Removing employee...", + "removeMemberSubmitLabel": "Remove User from Company", "chooseDifferentRoleError": "Role is the same as the current one", "updateRole": "Update Role", "updateRoleLoadingMessage": "Updating role...", "updateRoleSuccessMessage": "Role updated successfully", "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.", "roleMustBeDifferent": "Role must be different from the current one", "memberRoleInputLabel": "Member role", "updateRoleDescription": "Pick a role for this member.", "updateRoleSubmitLabel": "Update Role", "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.", - "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", - "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", "deleteInviteErrorMessage": "Invite not deleted. Please try again.", "deleteInviteLoadingMessage": "Deleting invite. Please wait...", "confirmDeletingMemberInvite": "You are deleting the invite to {{ email }}", - "transferOwnershipDisclaimer": "You are transferring ownership of the selected team to {{ member }}.", + "transferOwnershipDisclaimer": "You are transferring ownership of the selected company account to {{ member }}.", "transferringOwnership": "Transferring ownership...", "transferOwnershipSuccess": "Ownership successfully transferred", "transferOwnershipError": "Sorry, we could not transfer ownership to the selected member. Please try again.", "deleteInviteSubmitLabel": "Delete Invite", "youBadgeLabel": "You", - "updateTeamLoadingMessage": "Updating Team...", - "updateTeamSuccessMessage": "Team successfully updated", - "updateTeamErrorMessage": "Could not update Team. Please try again.", + "updateTeamLoadingMessage": "Updating Company...", + "updateTeamSuccessMessage": "Company successfully updated", + "updateTeamErrorMessage": "Could not update Company. Please try again.", "updateLogoErrorMessage": "Could not update Logo. Please try again.", - "teamNameInputLabel": "Team Name", - "teamLogoInputHeading": "Upload your team's Logo", - "teamLogoInputSubheading": "Please choose a photo to upload as your team logo.", - "updateTeamSubmitLabel": "Update Team", - "inviteMembersHeading": "Invite Members to your Team", - "inviteMembersDescription": "Invite members to your team by entering their email and role.", - "emailPlaceholder": "member@email.com", - "membersPageHeading": "Members", - "inviteMembersButton": "Invite Members", - "invitingMembers": "Inviting members...", - "inviteMembersSuccessMessage": "Members invited successfully", - "inviteMembersErrorMessage": "Sorry, members could not be invited. Please try again.", + "teamNameInputLabel": "Company Name", + "teamLogoInputHeading": "Upload your company's Logo", + "teamLogoInputSubheading": "Please choose a photo to upload as your company logo.", + "updateTeamSubmitLabel": "Update Company", + "inviteMembersHeading": "Invite Employees to your Company", + "inviteMembersDescription": "Invite employees to your company by entering their email and role.", + "emailPlaceholder": "employee@email.com", + "membersPageHeading": "Employees", + "inviteMembersButton": "Invite Employees", + "invitingMembers": "Inviting employees...", + "inviteMembersSuccessMessage": "Employees invited successfully", + "inviteMembersErrorMessage": "Sorry, employees could not be invited. Please try again.", "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", - "loadingMembers": "Loading members...", - "loadMembersError": "Sorry, we couldn't fetch your team's members.", - "loadInvitedMembersError": "Sorry, we couldn't fetch your team's invited members.", - "loadingInvitedMembers": "Loading invited members...", + "loadingMembers": "Loading employees...", + "loadMembersError": "Sorry, we couldn't fetch your company's employees.", + "loadInvitedMembersError": "Sorry, we couldn't fetch your company's invited employees.", + "loadingInvitedMembers": "Loading invited employees...", "invitedBadge": "Invited", "duplicateInviteEmailError": "You have already entered this email address", "invitingOwnAccountError": "Hey, that's your email!", "dangerZone": "Danger Zone", - "dangerZoneSubheading": "Delete or leave your team", - "deleteTeam": "Delete Team", - "deleteTeamDescription": "This action cannot be undone. All data associated with this team will be deleted.", - "deletingTeam": "Deleting team", - "deleteTeamModalHeading": "Deleting Team", - "deletingTeamDescription": "You are about to delete the team {{ teamName }}. This action cannot be undone.", - "deleteTeamInputField": "Type the name of the team to confirm", - "leaveTeam": "Leave Team", - "leavingTeamModalHeading": "Leaving Team", - "leavingTeamModalDescription": "You are about to leave this team. 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.", - "deleteTeamDisclaimer": "You are deleting the team {{ teamName }}. This action cannot be undone.", - "leaveTeamDisclaimer": "You are leaving the team {{ teamName }}. You will no longer have access to it.", - "deleteTeamErrorHeading": "Sorry, we couldn't delete your team.", - "leaveTeamErrorHeading": "Sorry, we couldn't leave your team.", - "searchMembersPlaceholder": "Search members", - "createTeamErrorHeading": "Sorry, we couldn't create your team.", - "createTeamErrorMessage": "We encountered an error creating your team. Please try again.", - "transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your team.", - "transferTeamErrorMessage": "We encountered an error transferring ownership of your team. Please try again.", - "updateRoleErrorHeading": "Sorry, we couldn't update the role of the selected member.", - "updateRoleErrorMessage": "We encountered an error updating the role of the selected member. Please try again.", + "dangerZoneSubheading": "Delete or leave your company", + "deleteTeam": "Delete Company", + "deleteTeamDescription": "This action cannot be undone. All data associated with this company will be deleted.", + "deletingTeam": "Deleting company", + "deleteTeamModalHeading": "Deleting Company", + "deletingTeamDescription": "You are about to delete the company {{ teamName }}. This action cannot be undone.", + "deleteTeamInputField": "Type the name of the company to confirm", + "leaveTeam": "Leave Company", + "leavingTeamModalHeading": "Leaving Company", + "leavingTeamModalDescription": "You are about to leave this company. You will no longer have access to it.", + "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 company {{ teamName }}. This action cannot be undone.", + "leaveTeamDisclaimer": "You are leaving the company {{ teamName }}. You will no longer have access to it.", + "deleteTeamErrorHeading": "Sorry, we couldn't delete your company.", + "leaveTeamErrorHeading": "Sorry, we couldn't leave your company.", + "searchMembersPlaceholder": "Search employees", + "createTeamErrorHeading": "Sorry, we couldn't create your company.", + "createTeamErrorMessage": "We encountered an error creating your company. Please try again.", + "transferTeamErrorHeading": "Sorry, we couldn't transfer ownership of your company account.", + "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 employee.", + "updateRoleErrorMessage": "We encountered an error updating the role of the selected employee. Please try again.", "searchInvitations": "Search Invitations", "updateInvitation": "Update Invitation", "removeInvitation": "Remove Invitation", @@ -144,20 +144,20 @@ "active": "Active", "inviteStatus": "Status", "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", - "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.", "renewInvitationErrorDescription": "We encountered an error renewing the invitation. Please try again.", "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.", "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}}", - "joinTeamAccount": "Join Team", - "joiningTeam": "Joining team...", - "leaveTeamInputLabel": "Please type LEAVE to confirm leaving the team.", - "leaveTeamInputDescription": "By leaving the team, you will no longer have access to it.", + "joinTeamAccount": "Join Company", + "joiningTeam": "Joining company...", + "leaveTeamInputLabel": "Please type LEAVE to confirm leaving the company.", + "leaveTeamInputDescription": "By leaving the company, you will no longer have access to it.", "reservedNameError": "This name is reserved. Please choose a different one.", "specialCharactersError": "This name cannot contain special characters. Please choose a different one." }