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
+12 -2
View File
@@ -2284,10 +2284,10 @@ class AppLocalizationsEn extends AppLocalizations {
}
@override
String get neighbors_ReceivedData => 'Received Neighbours Data';
String get neighbors_receivedData => 'Received Neighbours Data';
@override
String get neighbors_RequestTimedOut => 'Neighbours request timed out.';
String get neighbors_requestTimedOut => 'Neighbours request timed out.';
@override
String neighbors_errorLoading(String error) {
@@ -2300,6 +2300,16 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get neighbors_noData => 'No neighbours data available.';
@override
String neighbors_unknownContact(String pubkey) {
return 'Unknown $pubkey';
}
@override
String neighbors_heardAgo(String time) {
return 'Heard: $time ago';
}
@override
String get channelPath_title => 'Packet Path';