Skip to content

Commit 4cd7e80

Browse files
authored
tweak language around the app (#1470)
1 parent eaa5bd2 commit 4cd7e80

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

www/src/components/create-cluster/CreateCluster.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export function CreateCluster() {
166166
</SidebarWrapperSC>
167167
<ContentWrapperSC>
168168
<ContentHeaderSC>
169-
<span css={theme.partials.text.title2}>Create Cluster</span>
169+
<span css={theme.partials.text.title2}>Create Plural instance</span>
170170
<Button
171171
secondary
172172
startIcon={<SendMessageIcon />}

www/src/components/create-cluster/steps/ChooseCloudStep.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ export function ChooseCloudStep() {
3131
icon={<CloudIcon size={40} />}
3232
chip={<Chip>Free Plan</Chip>}
3333
header="Deploy Yourself"
34-
description="Host your control plane in your own cloud."
34+
description="Host your management plane in your own cloud."
3535
/>
3636
<CloudOption
3737
selected={cloudOption === 'cloud'}
3838
onClick={() => setCloudOption('cloud')}
3939
icon={<ConsoleIcon size={40} />}
4040
chip={<Chip severity="info">Pro Plan</Chip>}
4141
header="Use Plural Cloud"
42-
description="Host your control plane in a Plural Cloud instance."
42+
description="Host your management plane in a Plural Cloud instance."
4343
/>
4444
</Flex>
4545
{cloudOption === 'cloud' &&

www/src/components/create-cluster/steps/ConfigureCloudInstanceStep.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ export function ConfigureCloudInstanceStep() {
9494
to deploy. It will run in the background as you proceed.
9595
</Callout>
9696
<FormFieldSC
97-
label="Cluster name"
97+
label="Instance name"
9898
hint={
9999
showNameError && (
100100
<ValidationHintSC>{nameErrorMessage}</ValidationHintSC>
101101
)
102102
}
103103
>
104104
<Input
105-
placeholder="Enter cluster name"
105+
placeholder="Enter instance name"
106106
borderColor={
107107
name === '' || isNameValid
108108
? undefined
@@ -112,7 +112,7 @@ export function ConfigureCloudInstanceStep() {
112112
onChange={(e) => setName(e.target.value.trim())}
113113
/>
114114
</FormFieldSC>
115-
<FormFieldSC label="Cluster size">
115+
<FormFieldSC label="Instance size">
116116
<Select
117117
selectedKey={size}
118118
onSelectionChange={(size) => setSize(size as ConsoleSize)}
@@ -131,11 +131,11 @@ export function ConfigureCloudInstanceStep() {
131131
<Confirm
132132
open={confirm}
133133
error={error}
134-
title={`Create cluster`}
135-
text={`Would you like to proceed with cluster creation?`}
134+
title="Create cloud instance"
135+
text="Would you like to proceed with cloud instance creation?"
136136
submit={() => mutation()}
137137
close={() => setConfirm(false)}
138-
label="Create cluster"
138+
label="Create cloud instance"
139139
loading={loading}
140140
/>
141141
</>

www/src/components/create-cluster/steps/InstallCliStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function InstallCliStep() {
1313
>
1414
{cloudOption === 'cloud' && (
1515
<Callout title="The next two steps are in your local terminal">
16-
This will help to setup and properly configure the control plane and
16+
This will help to setup and properly configure the management plane and
1717
Plural Cloud instance with your local environment.
1818
</Callout>
1919
)}

www/src/components/layout/Sidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ type MenuItem = {
4747

4848
const MENU_ITEMS: MenuItem[] = [
4949
{
50-
text: 'Clusters',
50+
text: 'Management planes',
5151
icon: <ClusterIcon />,
5252
path: '/overview',
5353
pathRegexp: /^\/(overview|clusters|apps)/,
5454
},
5555
{
56-
text: 'Cloud Shell',
56+
text: 'Cloud shell',
5757
icon: <TerminalIcon />,
5858
path: '/shell',
5959
pathRegexp: /^\/(shell|oauth\/callback\/.+\/shell)/,

www/src/components/overview/OverviewHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { LinkTabWrap } from '../utils/Tabs'
77

88
const DIRECTORY = [
99
{ path: '/overview/clusters/all', label: 'All' },
10-
{ path: '/overview/clusters/self-hosted', label: 'Self-hosted clusters' },
10+
{ path: '/overview/clusters/self-hosted', label: 'Self-hosted instances' },
1111
{ path: '/overview/clusters/plural-cloud', label: 'Plural cloud instances' },
1212
]
1313

www/src/components/overview/clusters/ClusterListEmptyState.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ export function ClusterListEmptyState() {
2424
textAlign="center"
2525
>
2626
<Title2H1 css={{ fontWeight: 400 }}>
27-
Create your first cluster
27+
Create your first Plural instance
2828
</Title2H1>
2929
<Body2P
3030
$color="text-light"
3131
css={{ maxWidth: 450 }}
3232
>
33-
Once you create your first cluster, you will find an overview of its
33+
Once you create your first management plane, you will find an overview of its
3434
details here.
3535
</Body2P>
3636
</Flex>
@@ -39,7 +39,7 @@ export function ClusterListEmptyState() {
3939
to="/create-cluster"
4040
style={{ maxWidth: 300, width: '100%' }}
4141
>
42-
{showUnfinished ? 'Resume cluster creation' : 'Create cluster'}
42+
{showUnfinished ? 'Resume instance creation' : 'Create new Plural instance'}
4343
</Button>
4444
{showUnfinished && (
4545
<Button
@@ -48,7 +48,7 @@ export function ClusterListEmptyState() {
4848
css={{ maxWidth: 300, width: '100%' }}
4949
onClick={triggerDelete}
5050
>
51-
Cancel cluster creation
51+
Cancel instance creation
5252
</Button>
5353
)}
5454
</CreateClusterCardSC>

www/src/components/overview/clusters/Clusters.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export function Clusters(): ReactElement | null {
115115
first="Welcome to Plural"
116116
firstPartialType="title2"
117117
firstColor="text"
118-
second="To get started with Plural, create your first management cluster."
118+
second="To get started with Plural, create your first management plane."
119119
secondPartialType="body2"
120120
gap="small"
121121
css={{ '& *': { fontWeight: 400, fontFamily: 'Inter' } }}
@@ -126,7 +126,7 @@ export function Clusters(): ReactElement | null {
126126
as={Link}
127127
to="/create-cluster"
128128
>
129-
Create cluster
129+
Create new Plural instance
130130
</Button>
131131
)}
132132
</Flex>

www/src/components/overview/clusters/self-hosted/SelfHostedClusters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function SelfHostedClusters() {
2424
<Table
2525
data={selfHostedClusters}
2626
columns={columns}
27-
emptyStateProps={{ message: 'No self-hosted clusters found' }}
27+
emptyStateProps={{ message: 'No self-hosted instances found' }}
2828
onRowClick={(_, { original }: Row<ClusterListElement>) =>
2929
original.accessible && navigate(`/clusters/${original.id}`)
3030
}

0 commit comments

Comments
 (0)