diff --git a/Localizable.xcstrings b/Localizable.xcstrings index 7defa649..843bfbe1 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -14398,7 +14398,7 @@ } } }, - "How often sensor metrics are sent out over the mesh. Default is 30 minutes." : { + "How often environment metrics are sent out over the mesh. Default is 30 minutes." : { "localizations" : { "it" : { "stringUnit" : { @@ -31075,7 +31075,7 @@ } } }, - "Sensor Metrics" : { + "Environment Metrics" : { "localizations" : { "it" : { "stringUnit" : { diff --git a/Meshtastic/Views/Settings/Config/Module/TelemetryConfig.swift b/Meshtastic/Views/Settings/Config/Module/TelemetryConfig.swift index 6d78316c..3f7f0dcf 100644 --- a/Meshtastic/Views/Settings/Config/Module/TelemetryConfig.swift +++ b/Meshtastic/Views/Settings/Config/Module/TelemetryConfig.swift @@ -46,7 +46,7 @@ struct TelemetryConfig: View { .foregroundColor(.gray) .font(.callout) .listRowSeparator(.visible) - Picker("Sensor Metrics", selection: $environmentUpdateInterval ) { + Picker("Environment Metrics", selection: $environmentUpdateInterval ) { ForEach(UpdateIntervals.allCases) { ui in if ui.rawValue >= 900 { Text(ui.description) @@ -55,7 +55,7 @@ struct TelemetryConfig: View { } .pickerStyle(DefaultPickerStyle()) .listRowSeparator(.hidden) - Text("How often sensor metrics are sent out over the mesh. Default is 30 minutes.") + Text("How often environment metrics are sent out over the mesh. Default is 30 minutes.") .foregroundColor(.gray) .font(.callout) }