Skip to content

Commit b0298a3

Browse files
author
Katie Horne
authored
chore: fix in-product copy casing (#1671)
1 parent 7ac3cbe commit b0298a3

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

cli/templatelist.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func templateList() *cobra.Command {
3535
}
3636

3737
tableWriter := cliui.Table()
38-
tableWriter.AppendHeader(table.Row{"Name", "Last Updated", "Used By"})
38+
tableWriter.AppendHeader(table.Row{"Name", "Last updated", "Used by"})
3939

4040
for _, template := range templates {
4141
suffix := ""

site/src/components/SettingsLayout/SettingsLayout.tsx

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

88
export const Language = {
99
accountLabel: "Account",
10-
sshKeysLabel: "SSH Keys",
10+
sshKeysLabel: "SSH keys",
1111
settingsLabel: "Settings",
1212
}
1313

site/src/components/WorkspaceStats/WorkspaceStats.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ export const WorkspaceStats: React.FC<WorkspaceStatsProps> = ({ workspace }) =>
4343
<span className={styles.statsLabel}>Version</span>
4444
<span className={styles.statsValue}>
4545
{workspace.outdated ? (
46-
<span style={{ color: theme.palette.error.main }}>outdated</span>
46+
<span style={{ color: theme.palette.error.main }}>Outdated</span>
4747
) : (
48-
<span style={{ color: theme.palette.text.secondary }}>up to date</span>
48+
<span style={{ color: theme.palette.text.secondary }}>Up to date</span>
4949
)}
5050
</span>
5151
</div>
5252
<div className={styles.statsDivider} />
5353
<div className={styles.statItem}>
54-
<span className={styles.statsLabel}>Last Built</span>
54+
<span className={styles.statsLabel}>Last built</span>
5555
<span className={styles.statsValue}>{dayjs().to(dayjs(workspace.latest_build.created_at))}</span>
5656
</div>
5757
</div>

site/src/pages/SettingsPages/SSHKeysPage/SSHKeysPage.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MockGitSSHKey, renderWithAuth } from "../../../testHelpers/renderHelper
66
import { Language as authXServiceLanguage } from "../../../xServices/auth/authXService"
77
import { Language as SSHKeysPageLanguage, SSHKeysPage } from "./SSHKeysPage"
88

9-
describe("SSH Keys Page", () => {
9+
describe("SSH keys Page", () => {
1010
it("shows the SSH key", async () => {
1111
renderWithAuth(<SSHKeysPage />)
1212
await screen.findByText(MockGitSSHKey.public_key)

site/src/pages/SettingsPages/SSHKeysPage/SSHKeysPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import { Stack } from "../../../components/Stack/Stack"
1010
import { XServiceContext } from "../../../xServices/StateContext"
1111

1212
export const Language = {
13-
title: "SSH Keys",
13+
title: "SSH keys",
1414
description:
1515
"Coder automatically inserts a private key into every workspace; you can add the corresponding public key to any services (such as Git) that you need access to from your workspace.",
1616
regenerateLabel: "Regenerate",
17-
regenerateDialogTitle: "Regenerate SSH Key?",
17+
regenerateDialogTitle: "Regenerate SSH key?",
1818
regenerateDialogMessage:
1919
"You will need to replace the public SSH key on services you use it with, and you'll need to rebuild existing workspaces.",
2020
confirmLabel: "Confirm",

site/src/pages/TemplatesPage/TemplatesPageView.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ import { firstLetter } from "../../util/firstLetter"
2222
dayjs.extend(relativeTime)
2323

2424
export const Language = {
25-
createButton: "Create Template",
25+
createButton: "Create template",
2626
developerCount: (ownerCount: number): string => {
2727
return `${ownerCount} developer${ownerCount !== 1 ? "s" : ""}`
2828
},
2929
nameLabel: "Name",
30-
usedByLabel: "Used By",
31-
lastUpdatedLabel: "Last Updated",
30+
usedByLabel: "Used by",
31+
lastUpdatedLabel: "Last updated",
3232
emptyViewCreateCTA: "Create a template",
3333
emptyViewCreate: "to standardize development workspaces for your team.",
3434
emptyViewNoPerms: "No templates have been created! Contact your Coder administrator.",

site/src/pages/UsersPage/UsersPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { UsersTable } from "../../components/UsersTable/UsersTable"
88

99
export const Language = {
1010
pageTitle: "Users",
11-
newUserButton: "New User",
11+
newUserButton: "New user",
1212
}
1313

1414
export interface UsersPageViewProps {

site/src/pages/WorkspacesPage/WorkspacesPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { getDisplayStatus } from "../../util/workspace"
2222
dayjs.extend(relativeTime)
2323

2424
export const Language = {
25-
createButton: "Create Workspace",
25+
createButton: "Create workspace",
2626
emptyView: "so you can check out your repositories, edit your source code, and build and test your software.",
2727
}
2828

0 commit comments

Comments
 (0)