mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-29 14:58:44 +10:00
Add localized search functionality for contacts (#244)
- Introduced new localization keys for searching contacts, users, favorites, repeaters, and room servers in multiple languages. - Updated localization files for Italian, Bulgarian, German, English, Spanish, French, Dutch, Polish, Portuguese, Russian, Slovak, Slovenian, Swedish, Ukrainian, and Chinese. - Enhanced the contacts screen to dynamically display search hints based on the selected contact type filter. - Modified the map screen to utilize the new search functionality for contacts without a number.
This commit is contained in:
@@ -681,7 +681,35 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
'Les contacts apparaîtront lorsque les appareils font leur annonce.';
|
||||
|
||||
@override
|
||||
String get contacts_searchContacts => 'Rechercher des contacts...';
|
||||
String get contacts_unread => 'Non lu';
|
||||
|
||||
@override
|
||||
String get contacts_searchContactsNoNumber => 'Rechercher des contacts...';
|
||||
|
||||
@override
|
||||
String contacts_searchContacts(int number, String str) {
|
||||
return 'Rechercher des contacts...';
|
||||
}
|
||||
|
||||
@override
|
||||
String contacts_searchFavorites(int number, String str) {
|
||||
return 'Rechercher $number$str Favoris...';
|
||||
}
|
||||
|
||||
@override
|
||||
String contacts_searchUsers(int number, String str) {
|
||||
return 'Rechercher $number$str utilisateurs...';
|
||||
}
|
||||
|
||||
@override
|
||||
String contacts_searchRepeaters(int number, String str) {
|
||||
return 'Rechercher $number$str Répéteurs...';
|
||||
}
|
||||
|
||||
@override
|
||||
String contacts_searchRoomServers(int number, String str) {
|
||||
return 'Rechercher $number$str serveurs de salle...';
|
||||
}
|
||||
|
||||
@override
|
||||
String get contacts_noUnreadContacts => 'Aucun contact non lu';
|
||||
|
||||
Reference in New Issue
Block a user