diff --git a/Localizable.xcstrings b/Localizable.xcstrings index d3cc60ca..b18b2c18 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -4251,6 +4251,9 @@ } } } + }, + "Community Support" : { + }, "Config" : { "localizations" : { @@ -10673,6 +10676,9 @@ } } } + }, + "Full Support" : { + }, "gas" : { "extractionState" : "manual", diff --git a/Meshtastic/Views/Nodes/Helpers/NodeInfoItem.swift b/Meshtastic/Views/Nodes/Helpers/NodeInfoItem.swift index 9f3b8105..67ea1c10 100644 --- a/Meshtastic/Views/Nodes/Helpers/NodeInfoItem.swift +++ b/Meshtastic/Views/Nodes/Helpers/NodeInfoItem.swift @@ -22,12 +22,12 @@ struct NodeInfoItem: View { if user.hwModel != "UNSET" { VStack(alignment: .center) { Spacer() - Image(systemName: currentDevice?.activelySupported ?? false ? "checkmark.seal.fill" : "x.circle") + Image(systemName: currentDevice?.activelySupported ?? false ? "checkmark.seal.fill" : "xmark.seal") .resizable() .aspectRatio(contentMode: .fill) .frame(width: 75, height: 75) .foregroundStyle(currentDevice?.activelySupported ?? false ? .green : .red) - Text( currentDevice?.activelySupported ?? false ? "Supported" : "Unsupported") + Text( currentDevice?.activelySupported ?? false ? "Full Support" : "Community Support") .foregroundStyle(.gray) .font(.callout) }