Add untranslated messages file and update localization keys

- Added `untranslated.json` to track untranslated messages.
- Updated localization keys in various language files to use camelCase format for consistency.
- Modified `neighbours_screen.dart` to reference updated localization keys.
This commit is contained in:
zjs81
2026-01-19 19:13:22 -07:00
parent 31d633ee0b
commit ee3b0a3126
30 changed files with 287 additions and 126 deletions
+2 -3
View File
@@ -32,7 +32,6 @@ class _NeighboursScreenState extends State<NeighboursScreen> {
static const int _statusResponseBytes =
_statusPayloadOffset + _statusStatsSize;
Uint8List _tagData = Uint8List(4);
//int _timeEstment = 0;
int _neighbourCount = 0;
bool _isLoading = false;
@@ -140,7 +139,7 @@ class _NeighboursScreenState extends State<NeighboursScreen> {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(context.l10n.neighbors_ReceivedData),
content: Text(context.l10n.neighbors_receivedData),
backgroundColor: Colors.green,
),
);
@@ -205,7 +204,7 @@ class _NeighboursScreenState extends State<NeighboursScreen> {
});
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(context.l10n.neighbors_RequestTimedOut),
content: Text(context.l10n.neighbors_requestTimedOut),
backgroundColor: Colors.red,
),
);