Skip to content

Commit 9040a1a

Browse files
committed
Clean up picker title
1 parent 24c0e99 commit 9040a1a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CodeEdit/Features/UtilityArea/OutputUtility/View/UtilityAreaOutputSourcePicker.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct UtilityAreaOutputSourcePicker: View {
2929
Text("No Language Servers")
3030
} else {
3131
ForEach(languageServerClients, id: \.languageId) { server in
32-
Text(server.languageId.rawValue)
32+
Text(Sources.languageServer(server.logContainer).title)
3333
.tag(Sources.languageServer(server.logContainer))
3434
}
3535
}
@@ -40,14 +40,14 @@ struct UtilityAreaOutputSourcePicker: View {
4040
Text("No Extensions")
4141
} else {
4242
ForEach(extensionManager.extensions) { extensionInfo in
43-
Text(extensionInfo.name)
43+
Text(Sources.extensions(.init(extensionInfo: extensionInfo)).title)
4444
.tag(Sources.extensions(.init(extensionInfo: extensionInfo)))
4545
}
4646
}
4747

4848
if showInternalDevelopmentInspector {
4949
Divider()
50-
Text("Development Output")
50+
Text(Sources.devOutput.title)
5151
.tag(Sources.devOutput)
5252
}
5353
}

0 commit comments

Comments
 (0)