diff --git a/web/multinode/src/app/views/WelcomeScreen.vue b/web/multinode/src/app/views/WelcomeScreen.vue
index 046d0649c..d6fb2f886 100644
--- a/web/multinode/src/app/views/WelcomeScreen.vue
+++ b/web/multinode/src/app/views/WelcomeScreen.vue
@@ -10,7 +10,7 @@
Welcome to Multinode Dashboard
- This App allow Storage Node Operators to add one or multiple nodes that are under their control to a single dashboard to easily monitor combined data about storage&bandwidth usage, payouts across multiple nodes and satellites, interact with nodes config, etc.
+ This App allow Storage Node Operators to add one or multiple nodes that are under their control to a single dashboard to easily monitor combined data about storage&egress usage, payouts across multiple nodes and satellites, interact with nodes config, etc.
diff --git a/web/satellite/src/components/account/billing/billingTabs/Overview.vue b/web/satellite/src/components/account/billing/billingTabs/Overview.vue
index fc9f1de5b..02b029e9b 100644
--- a/web/satellite/src/components/account/billing/billingTabs/Overview.vue
+++ b/web/satellite/src/components/account/billing/billingTabs/Overview.vue
@@ -25,7 +25,7 @@
v-if="showChargesTooltip"
class="total-cost__card__charges-tooltip"
>
- If you still have Storage and Bandwidth remaining in your free tier, you won't be charged. This information is to help you estimate what the charges would have been had you graduated to the paid tier.
+ If you still have Storage and Egress remaining in your free tier, you won't be charged. This information is to help you estimate what the charges would have been had you graduated to the paid tier.
{
await projectsStore.updateProjectBandwidthLimit(updatedProject);
analytics.eventTriggered(AnalyticsEvent.PROJECT_BANDWIDTH_LIMIT_UPDATED);
- notify.success('Project bandwidth limit updated successfully!');
+ notify.success('Project egress limit updated successfully!');
} else {
const updatedProject = new ProjectLimits(0, 0, limit);
await projectsStore.updateProjectStorageLimit(updatedProject);
diff --git a/web/satellite/src/components/modals/LimitWarningModal.vue b/web/satellite/src/components/modals/LimitWarningModal.vue
index f3cbb075a..5a1e2829d 100644
--- a/web/satellite/src/components/modals/LimitWarningModal.vue
+++ b/web/satellite/src/components/modals/LimitWarningModal.vue
@@ -7,7 +7,7 @@
{{ title }}
-
To get more {{ limitType }} limit, upgrade to a Pro Account. You will still get {{ bytesToBase10String(limits.storageUsed) }} free storage and bandwidth per month, and only pay what you use beyond that.
+
To get more {{ limitType }} limit, upgrade to a Pro Account. You will still get {{ bytesToBase10String(limits.storageUsed) }} free storage and egress per month, and only pay what you use beyond that.
-
+
@@ -38,7 +38,7 @@
-
+
{{ downloadMoreInfo }}
diff --git a/web/satellite/src/components/objects/BucketItem.vue b/web/satellite/src/components/objects/BucketItem.vue
index c26b4224c..4e7dc8505 100644
--- a/web/satellite/src/components/objects/BucketItem.vue
+++ b/web/satellite/src/components/objects/BucketItem.vue
@@ -92,7 +92,7 @@ const itemToRender = computed((): { [key: string]: string | string[] } => {
return { info: [
props.itemData.name,
`Storage ${props.itemData.storage.toFixed(2)}GB`,
- `Bandwidth ${props.itemData.egress.toFixed(2)}GB`,
+ `Egress ${props.itemData.egress.toFixed(2)}GB`,
`Objects ${props.itemData.objectCount.toString()}`,
`Segments ${props.itemData.segmentCount.toString()}`,
`Created ${formattedDate.value}`,
diff --git a/web/satellite/src/components/objects/BucketsTable.vue b/web/satellite/src/components/objects/BucketsTable.vue
index 0ec31abba..cfd11aa4b 100644
--- a/web/satellite/src/components/objects/BucketsTable.vue
+++ b/web/satellite/src/components/objects/BucketsTable.vue
@@ -43,7 +43,7 @@
Name |
Storage |
- Bandwidth |
+ Egress |
Objects |
Segments |
Date Added |
diff --git a/web/satellite/src/components/onboardingTour/steps/PricingPlanStep.vue b/web/satellite/src/components/onboardingTour/steps/PricingPlanStep.vue
index 0ad4d1dd4..5a1f254ea 100644
--- a/web/satellite/src/components/onboardingTour/steps/PricingPlanStep.vue
+++ b/web/satellite/src/components/onboardingTour/steps/PricingPlanStep.vue
@@ -51,7 +51,7 @@ const plans = ref([
'*Additional per-segment fee of $0.0000088 applies.',
null,
null,
- 'Add a credit card to activate your Pro Account.
Get 25GB free storage and bandwidth. Only pay for what you use beyond that.',
+ 'Add a credit card to activate your Pro Account.
Get 25GB free storage and egress. Only pay for what you use beyond that.',
'No charge today',
'25GB Free',
),
diff --git a/web/satellite/src/components/project/EditProjectDetails.vue b/web/satellite/src/components/project/EditProjectDetails.vue
index 3bec468ae..3406d8888 100644
--- a/web/satellite/src/components/project/EditProjectDetails.vue
+++ b/web/satellite/src/components/project/EditProjectDetails.vue
@@ -128,7 +128,7 @@
/>
- Bandwidth Limit
+ Egress Limit
{{ bandwidthLimitFormatted }}
{
toggleBandwidthLimitEditing();
analytics.eventTriggered(AnalyticsEvent.PROJECT_BANDWIDTH_LIMIT_UPDATED);
- notify.success('Project bandwidth limit updated successfully!');
+ notify.success('Project egress limit updated successfully!');
}
/**
diff --git a/web/satellite/src/components/project/dashboard/DashboardFunctionalHeader.vue b/web/satellite/src/components/project/dashboard/DashboardFunctionalHeader.vue
index 7394a3fb4..82b7719c4 100644
--- a/web/satellite/src/components/project/dashboard/DashboardFunctionalHeader.vue
+++ b/web/satellite/src/components/project/dashboard/DashboardFunctionalHeader.vue
@@ -45,7 +45,7 @@