Skip to content

chore: edit CLI/UI copy #2247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: update UI copy
  • Loading branch information
Katie Horne committed Jun 10, 2022
commit ac10e6c87bb667ad3ec9e9d6d4a130076bb0e390
4 changes: 2 additions & 2 deletions site/src/components/HelpTooltip/HelpTooltip.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export default {

const Template: Story<HelpTooltipProps> = (args) => (
<HelpTooltip {...args}>
<HelpTooltipTitle>What is template?</HelpTooltipTitle>
<HelpTooltipTitle>What is a template?</HelpTooltipTitle>
<HelpTooltipText>
With templates you can create a common configuration for your workspaces using Terraform. So, you and your team
With templates, you can create a common configuration for your team's workspaces using Terraform so that everyone
can use the same environment to deliver great software.
</HelpTooltipText>
<HelpTooltipLinksGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const WorkspaceScheduleForm: FC<WorkspaceScheduleFormProps> = ({
]

return (
<FullPageForm onCancel={onCancel} title="Workspace Schedule">
<FullPageForm onCancel={onCancel} title="Workspace schedule">
<form onSubmit={form.handleSubmit} className={styles.form}>
<Stack>
<TextField
Expand Down
2 changes: 1 addition & 1 deletion site/src/pages/TemplatePage/TemplatePageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { WorkspaceSection } from "../../components/WorkspaceSection/WorkspaceSec

const Language = {
createButton: "Create workspace",
noDescription: "No description",
noDescription: "",
readmeTitle: "README",
resourcesTitle: "Resources",
}
Expand Down
6 changes: 3 additions & 3 deletions site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export const Language = {
filterName: "Filters",
yourWorkspacesButton: "Your workspaces",
allWorkspacesButton: "All workspaces",
workspaceTooltipTitle: "What is workspace?",
workspaceTooltipTitle: "What is a workspace?",
workspaceTooltipText:
"It is your workstation. It is a workspace that will provide you the necessary compute and access to your development environment.",
"A workspace is your development environment in the cloud. It includes the compute infrastructure and tools you need to work on your project",
workspaceTooltipLink1: "Create workspaces",
workspaceTooltipLink2: "Connect with SSH",
workspaceTooltipLink3: "Editors and IDEs",
Expand Down Expand Up @@ -135,7 +135,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({ loading, works
<PageHeaderText>
Create a new workspace from a{" "}
<Link component={RouterLink} to="/templates">
Template
template
</Link>
.
</PageHeaderText>
Expand Down