Skip to content

Commit ac10e6c

Browse files
author
Katie Horne
committed
chore: update UI copy
1 parent 110ea81 commit ac10e6c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

site/src/components/HelpTooltip/HelpTooltip.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ export default {
1515

1616
const Template: Story<HelpTooltipProps> = (args) => (
1717
<HelpTooltip {...args}>
18-
<HelpTooltipTitle>What is template?</HelpTooltipTitle>
18+
<HelpTooltipTitle>What is a template?</HelpTooltipTitle>
1919
<HelpTooltipText>
20-
With templates you can create a common configuration for your workspaces using Terraform. So, you and your team
20+
With templates, you can create a common configuration for your team's workspaces using Terraform so that everyone
2121
can use the same environment to deliver great software.
2222
</HelpTooltipText>
2323
<HelpTooltipLinksGroup>

site/src/components/WorkspaceScheduleForm/WorkspaceScheduleForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export const WorkspaceScheduleForm: FC<WorkspaceScheduleFormProps> = ({
210210
]
211211

212212
return (
213-
<FullPageForm onCancel={onCancel} title="Workspace Schedule">
213+
<FullPageForm onCancel={onCancel} title="Workspace schedule">
214214
<form onSubmit={form.handleSubmit} className={styles.form}>
215215
<Stack>
216216
<TextField

site/src/pages/TemplatePage/TemplatePageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { WorkspaceSection } from "../../components/WorkspaceSection/WorkspaceSec
1616

1717
const Language = {
1818
createButton: "Create workspace",
19-
noDescription: "No description",
19+
noDescription: "",
2020
readmeTitle: "README",
2121
resourcesTitle: "Resources",
2222
}

site/src/pages/WorkspacesPage/WorkspacesPageView.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ export const Language = {
4848
filterName: "Filters",
4949
yourWorkspacesButton: "Your workspaces",
5050
allWorkspacesButton: "All workspaces",
51-
workspaceTooltipTitle: "What is workspace?",
51+
workspaceTooltipTitle: "What is a workspace?",
5252
workspaceTooltipText:
53-
"It is your workstation. It is a workspace that will provide you the necessary compute and access to your development environment.",
53+
"A workspace is your development environment in the cloud. It includes the compute infrastructure and tools you need to work on your project",
5454
workspaceTooltipLink1: "Create workspaces",
5555
workspaceTooltipLink2: "Connect with SSH",
5656
workspaceTooltipLink3: "Editors and IDEs",
@@ -135,7 +135,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({ loading, works
135135
<PageHeaderText>
136136
Create a new workspace from a{" "}
137137
<Link component={RouterLink} to="/templates">
138-
Template
138+
template
139139
</Link>
140140
.
141141
</PageHeaderText>

0 commit comments

Comments
 (0)