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
+18 -7
View File
@@ -1629,10 +1629,10 @@ class AppLocalizationsEs extends AppLocalizations {
String get repeater_cliSubtitle => 'Enviar comandos al repetidor';
@override
String get repeater_neighbours => 'Neighbors';
String get repeater_neighbours => 'Vecinos';
@override
String get repeater_neighboursSubtitle => 'View zero hop neighbors.';
String get repeater_neighboursSubtitle => 'Ver vecinos de salto cero.';
@override
String get repeater_settings => 'Configuración';
@@ -2319,21 +2319,32 @@ class AppLocalizationsEs extends AppLocalizations {
}
@override
String get neighbors_ReceivedData => 'Received Neighbours Data';
String get neighbors_receivedData => 'Recibidas Datos de Vecinos';
@override
String get neighbors_RequestTimedOut => 'Neighbours request timed out.';
String get neighbors_requestTimedOut =>
'Los vecinos solicitan que se desconecte.';
@override
String neighbors_errorLoading(String error) {
return 'Error loading neighbors: $error';
return 'Error al cargar vecinos: $error';
}
@override
String get neighbors_repeatersNeighbours => 'Repeaters Neighbours';
String get neighbors_repeatersNeighbours => 'Repetidores Vecinos';
@override
String get neighbors_noData => 'No neighbours data available.';
String get neighbors_noData => 'No hay datos de vecinos disponibles.';
@override
String neighbors_unknownContact(String pubkey) {
return 'Clave pública desconocida $pubkey';
}
@override
String neighbors_heardAgo(String time) {
return 'Escuchado: $time hace atrás';
}
@override
String get channelPath_title => 'Ruta del Paquete';