Add SNR indicator localization and update UI references for nearby repeaters

This commit is contained in:
Winston Lowe
2026-02-15 17:04:54 -08:00
parent e6814b4f48
commit 75a7f437f6
32 changed files with 149 additions and 17 deletions
+2 -2
View File
@@ -149,7 +149,7 @@ class _SNRIndicatorState extends State<SNRIndicator> {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text("Nearby Repeaters"),
title: Text(l10n.snrIndicator_nearByRepeaters),
content: Expanded(
child: Scrollbar(
child: ListView.separated(
@@ -179,7 +179,7 @@ class _SNRIndicatorState extends State<SNRIndicator> {
.padLeft(2, '0'),
),
subtitle: Text(
'SNR: ${repeater.snr.toStringAsFixed(1)} dB\nLast seen: ${_formatLastUpdated(repeater.lastUpdated)}',
'SNR: ${repeater.snr.toStringAsFixed(1)} dB\n${l10n.snrIndicator_lastSeen}: ${_formatLastUpdated(repeater.lastUpdated)}',
),
),
],