mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-24 17:49:03 +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:
@@ -1336,11 +1336,47 @@ abstract class AppLocalizations {
|
||||
/// **'Contacts will appear when devices advertise'**
|
||||
String get contacts_contactsWillAppear;
|
||||
|
||||
/// No description provided for @contacts_unread.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Unread'**
|
||||
String get contacts_unread;
|
||||
|
||||
/// No description provided for @contacts_searchContactsNoNumber.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Search Contacts...'**
|
||||
String get contacts_searchContactsNoNumber;
|
||||
|
||||
/// No description provided for @contacts_searchContacts.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Search contacts...'**
|
||||
String get contacts_searchContacts;
|
||||
/// **'Search {number}{str} Contacts...'**
|
||||
String contacts_searchContacts(int number, String str);
|
||||
|
||||
/// No description provided for @contacts_searchFavorites.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Search {number}{str} Favorites...'**
|
||||
String contacts_searchFavorites(int number, String str);
|
||||
|
||||
/// No description provided for @contacts_searchUsers.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Search {number}{str} Users...'**
|
||||
String contacts_searchUsers(int number, String str);
|
||||
|
||||
/// No description provided for @contacts_searchRepeaters.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Search {number}{str} Repeaters...'**
|
||||
String contacts_searchRepeaters(int number, String str);
|
||||
|
||||
/// No description provided for @contacts_searchRoomServers.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Search {number}{str} Room servers...'**
|
||||
String contacts_searchRoomServers(int number, String str);
|
||||
|
||||
/// No description provided for @contacts_noUnreadContacts.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user