diff --git a/Widgets/WidgetsLiveActivity.swift b/Widgets/WidgetsLiveActivity.swift index f667d3af..0235f566 100644 --- a/Widgets/WidgetsLiveActivity.swift +++ b/Widgets/WidgetsLiveActivity.swift @@ -38,7 +38,7 @@ struct WidgetsLiveActivity: Widget { .fixedSize() Spacer() } - Text("\(context.state.nodesOnline) online") + Text("\(context.state.nodesOnline) nodes online") .font(.caption) .foregroundStyle(.secondary) .fixedSize() @@ -66,15 +66,15 @@ struct WidgetsLiveActivity: Widget { .fixedSize() Spacer() } - Text("Sent \(context.state.sentPackets)") + Text("Sent: \(context.state.sentPackets)") .font(.caption) .foregroundStyle(.secondary) .fixedSize() - Text("Received \(context.state.receivedPackets)") + Text("Received: \(context.state.receivedPackets)") .font(.caption) .foregroundStyle(.secondary) .fixedSize() - Text("Bad \(context.state.badReceivedPackets)") + Text("Dupe / Bad: \(context.state.badReceivedPackets)") .font(.caption) .foregroundStyle(.secondary) .fixedSize() @@ -196,19 +196,19 @@ struct NodeInfoView: View { .foregroundStyle(.secondary) .opacity(isLuminanceReduced ? 0.8 : 1.0) .fixedSize() - Text("Packets Sent \(sentPackets)") + Text("Packets Sent: \(sentPackets)") .font(.caption) .fontWeight(.medium) .foregroundStyle(.secondary) .opacity(isLuminanceReduced ? 0.8 : 1.0) .fixedSize() - Text("Packets Received \(receivedPackets)") + Text("Packets Received: \(receivedPackets)") .font(.caption) .fontWeight(.medium) .foregroundStyle(.secondary) .opacity(isLuminanceReduced ? 0.8 : 1.0) .fixedSize() - Text("Bad Packets Received \(badReceivedPackets)") + Text("Dupe / Bad Packets: \(badReceivedPackets)") .font(.caption) .fontWeight(.medium) .foregroundStyle(.secondary)