diff --git a/frontend/src/components/bucket/BucketChildConfig.vue b/frontend/src/components/bucket/BucketChildConfig.vue index df7424f7..7af9c654 100644 --- a/frontend/src/components/bucket/BucketChildConfig.vue +++ b/frontend/src/components/bucket/BucketChildConfig.vue @@ -48,7 +48,7 @@ const onSubmit = async (values: any) => { // refresh stores await bucketStore.fetchBuckets({ userId: getUserId.value, objectPerms: true }); showDialog(false); - toast.success('Adding Folder to a bucket', 'Folder configuration successful'); + toast.success('Adding subfolder', 'Folder configuration successful'); } catch (error: any) { validationMessages.value = []; validationMessages.value.push(error.response.data.detail); @@ -61,9 +61,9 @@ const onCancel = () => {

{{ props.parentBucket.bucketName }}

{ name="bucketName" label="Folder display name *" placeholder="My Documents" - help-text="Your custom display name for the bucket - any name as you would like to see it listed in BCBox." + help-text="Your custom display name for the subfolder - any name as you would like to see it listed in BCBox." autofocus /> @@ -105,7 +105,7 @@ const { getConfig } = storeToRefs(useConfigStore());
-

Versioning, metadata, tagging, syncing with existing buckets and more

+

Versioning, metadata, tagging, syncing and more

Contact @@ -115,12 +115,12 @@ const { getConfig } = storeToRefs(useConfigStore()); > NRIDS Optimization - or your ministry's service desk. You will need a bucket to get started. + or your ministry's service desk to get "bucket" storage location source credentials and get started.

@@ -161,7 +161,8 @@ const { getConfig } = storeToRefs(useConfigStore()); indicating your BCeID-related intentions
  • - All other inquiries around getting or using buckets should be directed to + All other inquiries around getting or using "bucket" + storage location sources should be directed to
  • - Storage and custodianship of metadata and tags (not the objects themselves in your bucket) is maintained - by Natural Resource Information & Digital Services + Storage and custodianship of just the metadata and tags, not the objects themselves, + is maintained by Natural Resource Information & Digital Services
  • You will refer to and adhere to diff --git a/frontend/src/views/invite/InviteView.vue b/frontend/src/views/invite/InviteView.vue index a9b8495c..6fb78d45 100644 --- a/frontend/src/views/invite/InviteView.vue +++ b/frontend/src/views/invite/InviteView.vue @@ -49,7 +49,7 @@ const setErrorMessage = (errorCode: number): void => { break; case 409: title.value = 'Not found'; - detail.value = 'Invalid object or bucket'; + detail.value = 'Invalid object or folder'; break; case 410: title.value = 'Gone'; @@ -105,7 +105,7 @@ onMounted(() => {
    diff --git a/frontend/src/views/list/ListObjectsView.vue b/frontend/src/views/list/ListObjectsView.vue index 29d6c5f7..5199cf93 100644 --- a/frontend/src/views/list/ListObjectsView.vue +++ b/frontend/src/views/list/ListObjectsView.vue @@ -30,7 +30,7 @@ const bucket: Ref = ref(undefined); onErrorCaptured((e: Error) => { const toast = useToast(); - toast.error('Loading bucket', e.message); + toast.error('Loading folder', e.message); }); onBeforeMount(async () => { diff --git a/frontend/tests/unit/components/bucket/BucketSidebar.spec.ts b/frontend/tests/unit/components/bucket/BucketSidebar.spec.ts index c77f07b9..854c6c46 100644 --- a/frontend/tests/unit/components/bucket/BucketSidebar.spec.ts +++ b/frontend/tests/unit/components/bucket/BucketSidebar.spec.ts @@ -106,8 +106,8 @@ describe('BucketSidebar.vue', async () => { wrapper.findAll('div').forEach((ele) => { textArray.push(ele.text()); }); - expect(textArray).toContain(`Bucket ID:${testSidebarInfo.bucketId}`); - expect(textArray).toContain(`Bucket Name:${testSidebarInfo.bucketName}`); + expect(textArray).toContain(`Source storage location ID:${testSidebarInfo.bucketId}`); + expect(textArray).toContain(`Folder name:${testSidebarInfo.bucketName}`); }); it('emits close modal', async () => { diff --git a/frontend/tests/unit/components/layout/Navbar.spec.ts b/frontend/tests/unit/components/layout/Navbar.spec.ts index db86313e..7be9128b 100644 --- a/frontend/tests/unit/components/layout/Navbar.spec.ts +++ b/frontend/tests/unit/components/layout/Navbar.spec.ts @@ -55,7 +55,7 @@ describe('Navbar.vue', () => { const linkEle = wrapper.findAll('a'); expect(linkEle).toHaveLength(3); expect(linkEle[0].text()).toBe('Home'); - expect(linkEle[1].text()).toBe('My Buckets'); + expect(linkEle[1].text()).toBe('My Files'); expect(linkEle[2].text()).toBe('Help'); });