Get rid of a few more translation keys

This commit is contained in:
Garth Vander Houwen 2025-04-26 16:05:09 -07:00
parent 973216374f
commit b8f874439d
16 changed files with 30 additions and 30 deletions

View file

@ -64,7 +64,7 @@ struct TelemetryConfig: View {
.foregroundColor(.gray)
.font(.callout)
Toggle(isOn: $environmentMeasurementEnabled) {
Label("enabled", systemImage: "chart.xyaxis.line")
Label("Enabled", systemImage: "chart.xyaxis.line")
}
.toggleStyle(SwitchToggleStyle(tint: .accentColor))
Toggle(isOn: $environmentScreenEnabled) {
@ -78,7 +78,7 @@ struct TelemetryConfig: View {
}
Section(header: Text("Power Options")) {
Toggle(isOn: $powerMeasurementEnabled) {
Label("enabled", systemImage: "bolt")
Label("Enabled", systemImage: "bolt")
}
.toggleStyle(SwitchToggleStyle(tint: .accentColor))
.listRowSeparator(.visible)