Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1b65ccf

Browse files
Katie Hornekylecarbs
Katie Horne
authored andcommitted
chore: fix in-product copy casing (#1671)
1 parentc387d34 commit1b65ccf

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","LastUpdated","UsedBy"})
38+
tableWriter.AppendHeader(table.Row{"Name","Lastupdated","Usedby"})
3939

4040
for_,template:=rangetemplates {
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
exportconstLanguage={
99
accountLabel:"Account",
10-
sshKeysLabel:"SSHKeys",
10+
sshKeysLabel:"SSHkeys",
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
<spanclassName={styles.statsLabel}>Version</span>
4444
<spanclassName={styles.statsValue}>
4545
{workspace.outdated ?(
46-
<spanstyle={{color:theme.palette.error.main}}>outdated</span>
46+
<spanstyle={{color:theme.palette.error.main}}>Outdated</span>
4747
) :(
48-
<spanstyle={{color:theme.palette.text.secondary}}>up to date</span>
48+
<spanstyle={{color:theme.palette.text.secondary}}>Up to date</span>
4949
)}
5050
</span>
5151
</div>
5252
<divclassName={styles.statsDivider}/>
5353
<divclassName={styles.statItem}>
54-
<spanclassName={styles.statsLabel}>LastBuilt</span>
54+
<spanclassName={styles.statsLabel}>Lastbuilt</span>
5555
<spanclassName={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{LanguageasauthXServiceLanguage}from"../../../xServices/auth/authXService"
77
import{LanguageasSSHKeysPageLanguage,SSHKeysPage}from"./SSHKeysPage"
88

9-
describe("SSHKeys Page",()=>{
9+
describe("SSHkeys Page",()=>{
1010
it("shows the SSH key",async()=>{
1111
renderWithAuth(<SSHKeysPage/>)
1212
awaitscreen.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
exportconstLanguage={
13-
title:"SSHKeys",
13+
title:"SSHkeys",
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 SSHKey?",
17+
regenerateDialogTitle:"Regenerate SSHkey?",
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
exportconstLanguage={
25-
createButton:"CreateTemplate",
25+
createButton:"Createtemplate",
2626
developerCount:(ownerCount:number):string=>{
2727
return`${ownerCount} developer${ownerCount!==1 ?"s" :""}`
2828
},
2929
nameLabel:"Name",
30-
usedByLabel:"UsedBy",
31-
lastUpdatedLabel:"LastUpdated",
30+
usedByLabel:"Usedby",
31+
lastUpdatedLabel:"Lastupdated",
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
exportconstLanguage={
1010
pageTitle:"Users",
11-
newUserButton:"NewUser",
11+
newUserButton:"Newuser",
1212
}
1313

1414
exportinterfaceUsersPageViewProps{

‎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
exportconstLanguage={
25-
createButton:"CreateWorkspace",
25+
createButton:"Createworkspace",
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)

[8]ページ先頭

©2009-2025 Movatter.jp