diff --git a/src/cloud/components/molecules/Banner/SubLimitReachedBanner.tsx b/src/cloud/components/molecules/Banner/SubLimitReachedBanner.tsx
index 167860b3a3..610aee892d 100644
--- a/src/cloud/components/molecules/Banner/SubLimitReachedBanner.tsx
+++ b/src/cloud/components/molecules/Banner/SubLimitReachedBanner.tsx
@@ -29,8 +29,8 @@ const DocLimitReachedBanner = () => {
{subscription == null
- ? `Your workspace exceeds the limit of your current plan. (${freePlanDocLimit} created documents)`
- : `Your workspace exceeds the limit of your current plan. (${subscription.seats} team members)`}
+ ? `Your space exceeds the limit of your current plan. (${freePlanDocLimit} created documents)`
+ : `Your space exceeds the limit of your current plan. (${subscription.seats} team members)`}
)
diff --git a/src/cloud/components/organisms/Modal/contents/Workspace/WorkspaceModalForm.tsx b/src/cloud/components/organisms/Modal/contents/Workspace/WorkspaceModalForm.tsx
index 7f5a795142..5dfa408cfc 100644
--- a/src/cloud/components/organisms/Modal/contents/Workspace/WorkspaceModalForm.tsx
+++ b/src/cloud/components/organisms/Modal/contents/Workspace/WorkspaceModalForm.tsx
@@ -141,13 +141,13 @@ const WorkspaceModalForm = ({ workspace }: WorkspaceModalFormProps) => {
setSending(true)
try {
if (body.name.trim() === '') {
- throw new Error('Workspace name has to be filled.')
+ throw new Error('Folder name has to be filled.')
}
if (workspace != null) {
await submitEditWorkSpaceHandler(team, workspace, body)
pushMessage({
title: 'Success',
- description: 'Your workspace has been updated',
+ description: 'Your folder has been updated',
type: 'success',
})
} else {
@@ -189,7 +189,7 @@ const WorkspaceModalForm = ({ workspace }: WorkspaceModalFormProps) => {
@@ -202,7 +202,7 @@ const WorkspaceModalForm = ({ workspace }: WorkspaceModalFormProps) => {
- This default workspace is public and can't have its access
+ This default folder is public and can't have its access
modified.
@@ -216,11 +216,11 @@ const WorkspaceModalForm = ({ workspace }: WorkspaceModalFormProps) => {
{isPublic ? (
- This workspace is public. Anyone from the team can access it
+ This folder is public. Anyone from the team can access it
) : (
- This workspace is private.{' '}
+ This folder is private.{' '}
{isOwner && 'You can set individual member access below.'}
)}
@@ -242,7 +242,7 @@ const WorkspaceModalForm = ({ workspace }: WorkspaceModalFormProps) => {
)}
{!isOwner && (
- Only the workspace owner can change its access.
+ Only the folder owner can change its access.
)}
{!isPublic && (
diff --git a/src/cloud/components/organisms/error/ErrorPage.tsx b/src/cloud/components/organisms/error/ErrorPage.tsx
index 724f4c89fb..aa88f845ed 100644
--- a/src/cloud/components/organisms/error/ErrorPage.tsx
+++ b/src/cloud/components/organisms/error/ErrorPage.tsx
@@ -77,7 +77,9 @@ const ErrorPage = ({ error }: ErrorPageProps) => {
width: 200,
}}
>
- {currentUser == null ? 'Go to homepage' : 'Go to workspace'}
+ {currentUser == null
+ ? 'Go to homepage'
+ : 'Go back to your default space'}
)}
{currentUser == null && statusCode === 401 && (
diff --git a/src/cloud/components/organisms/settings/TeamSubLimit.tsx b/src/cloud/components/organisms/settings/TeamSubLimit.tsx
index 126987b56e..fa4e702604 100644
--- a/src/cloud/components/organisms/settings/TeamSubLimit.tsx
+++ b/src/cloud/components/organisms/settings/TeamSubLimit.tsx
@@ -41,7 +41,7 @@ const TeamSubLimit = ({
>
Upgrade to go unlimited
- Your workspace's trial of the Pro plan lasts through{' '}
+ Your space's trial of the Pro plan lasts through{' '}
{currentSubInfo.info.formattedEndDate}
diff --git a/src/cloud/lib/hooks/sidebar/useCloudSidebarDnd.ts b/src/cloud/lib/hooks/sidebar/useCloudSidebarDnd.ts
index 061fee1598..a502a2f777 100644
--- a/src/cloud/lib/hooks/sidebar/useCloudSidebarDnd.ts
+++ b/src/cloud/lib/hooks/sidebar/useCloudSidebarDnd.ts
@@ -43,7 +43,7 @@ export function useCloudSidebarDnd() {
if (draggedResource.current.result.workspaceId === workspaceId) {
pushMessage({
title: 'Oops',
- description: 'Resource is already present in this workspace',
+ description: 'Resource is already present in this space',
})
return
}
diff --git a/src/cloud/lib/hooks/sidebar/useCloudSidebarTree.tsx b/src/cloud/lib/hooks/sidebar/useCloudSidebarTree.tsx
index a965ba81ee..dd56e18334 100644
--- a/src/cloud/lib/hooks/sidebar/useCloudSidebarTree.tsx
+++ b/src/cloud/lib/hooks/sidebar/useCloudSidebarTree.tsx
@@ -591,7 +591,7 @@ export function useCloudSidebarTree() {
})
tree.push({
- label: 'Workspaces',
+ label: 'Folders',
rows: navTree,
controls: currentUserIsCoreMember
? [
diff --git a/src/cloud/lib/hooks/useCloudResourceModals.tsx b/src/cloud/lib/hooks/useCloudResourceModals.tsx
index 753ec99351..b21154528f 100644
--- a/src/cloud/lib/hooks/useCloudResourceModals.tsx
+++ b/src/cloud/lib/hooks/useCloudResourceModals.tsx
@@ -195,8 +195,8 @@ export function useCloudResourceModals() {
return
}
messageBox({
- title: `Delete the workspace?`,
- message: `Are you sure to delete this workspace? You will not be able to revert this action.`,
+ title: `Delete the folder?`,
+ message: `Are you sure to delete this folder? You will not be able to revert this action.`,
buttons: [
{
variant: 'secondary',
diff --git a/src/cloud/lib/hooks/useWorkspaceDelete.ts b/src/cloud/lib/hooks/useWorkspaceDelete.ts
index 2cdc554496..0b45c86f0d 100644
--- a/src/cloud/lib/hooks/useWorkspaceDelete.ts
+++ b/src/cloud/lib/hooks/useWorkspaceDelete.ts
@@ -32,7 +32,7 @@ export function useWorkspaceDelete() {
pushMessage({
title: 'Success',
type: 'success',
- description: 'Your workspace has been deleted',
+ description: 'Your folder has been deleted',
})
const workspaceDocs = [...docsMap.values()].filter(
@@ -69,8 +69,8 @@ export function useWorkspaceDelete() {
return
}
messageBox({
- title: `Delete the workspace?`,
- message: `Are you sure to delete this workspace? You will not be able to revert this action.`,
+ title: `Delete the folder?`,
+ message: `Are you sure to delete this folder? You will not be able to revert this action.`,
buttons: [
{
variant: 'secondary',
diff --git a/src/cloud/lib/sidebar.ts b/src/cloud/lib/sidebar.ts
index 07a1402db3..cdc1ff9bcd 100644
--- a/src/cloud/lib/sidebar.ts
+++ b/src/cloud/lib/sidebar.ts
@@ -1,7 +1,7 @@
export const cloudSidebaCategoryLabels = [
'Bookmarks',
'Smart Folders',
- 'Workspaces',
+ 'Folders',
'Private',
'Labels',
'More',
diff --git a/src/cloud/pages/[teamId]/workspaces/[workspaceId].tsx b/src/cloud/pages/[teamId]/workspaces/[workspaceId].tsx
index 36008e356b..df6d3c1c27 100644
--- a/src/cloud/pages/[teamId]/workspaces/[workspaceId].tsx
+++ b/src/cloud/pages/[teamId]/workspaces/[workspaceId].tsx
@@ -23,7 +23,7 @@ const WorkspaceShowPage = ({