mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-12 20:02:01 +10:00
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:
@@ -1635,10 +1635,11 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
String get repeater_cliSubtitle => 'Envoyer des commandes au répétiteur';
|
||||
|
||||
@override
|
||||
String get repeater_neighbours => 'Neighbors';
|
||||
String get repeater_neighbours => 'Voisins';
|
||||
|
||||
@override
|
||||
String get repeater_neighboursSubtitle => 'View zero hop neighbors.';
|
||||
String get repeater_neighboursSubtitle =>
|
||||
'Afficher les voisins de saut nuls.';
|
||||
|
||||
@override
|
||||
String get repeater_settings => 'Paramètres';
|
||||
@@ -2333,21 +2334,32 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
}
|
||||
|
||||
@override
|
||||
String get neighbors_ReceivedData => 'Received Neighbours Data';
|
||||
String get neighbors_receivedData => 'Données des voisins reçues';
|
||||
|
||||
@override
|
||||
String get neighbors_RequestTimedOut => 'Neighbours request timed out.';
|
||||
String get neighbors_requestTimedOut => 'Les voisins demandent un délai.';
|
||||
|
||||
@override
|
||||
String neighbors_errorLoading(String error) {
|
||||
return 'Error loading neighbors: $error';
|
||||
return 'Erreur lors du chargement des voisins : $error';
|
||||
}
|
||||
|
||||
@override
|
||||
String get neighbors_repeatersNeighbours => 'Repeaters Neighbours';
|
||||
String get neighbors_repeatersNeighbours => 'Répéteurs Voisins';
|
||||
|
||||
@override
|
||||
String get neighbors_noData => 'No neighbours data available.';
|
||||
String get neighbors_noData =>
|
||||
'Aucune donnée concernant les voisins disponible.';
|
||||
|
||||
@override
|
||||
String neighbors_unknownContact(String pubkey) {
|
||||
return 'Clé publique inconnue $pubkey';
|
||||
}
|
||||
|
||||
@override
|
||||
String neighbors_heardAgo(String time) {
|
||||
return 'Écouté : $time auparavant';
|
||||
}
|
||||
|
||||
@override
|
||||
String get channelPath_title => 'Chemin de paquet';
|
||||
|
||||
Reference in New Issue
Block a user