From 8d2288fbb443dd7d75adc2fd8a1721b25aa4cf64 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 15 Nov 2024 15:22:27 +0530 Subject: [PATCH 1/6] [mob][photos] super key --- mobile/lib/ui/components/notification_widget.dart | 4 ++-- mobile/lib/ui/home/header_widget.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mobile/lib/ui/components/notification_widget.dart b/mobile/lib/ui/components/notification_widget.dart index 864e4c29c0..430b8a247b 100644 --- a/mobile/lib/ui/components/notification_widget.dart +++ b/mobile/lib/ui/components/notification_widget.dart @@ -25,7 +25,7 @@ class NotificationWidget extends StatelessWidget { final bool isBlackFriday; const NotificationWidget({ - Key? key, + super.key, required this.startIcon, required this.actionIcon, required this.text, @@ -33,7 +33,7 @@ class NotificationWidget extends StatelessWidget { this.isBlackFriday = false, this.subText, this.type = NotificationType.warning, - }) : super(key: key); + }); @override Widget build(BuildContext context) { diff --git a/mobile/lib/ui/home/header_widget.dart b/mobile/lib/ui/home/header_widget.dart index a322382f14..04ec237f37 100644 --- a/mobile/lib/ui/home/header_widget.dart +++ b/mobile/lib/ui/home/header_widget.dart @@ -5,8 +5,8 @@ import 'package:photos/ui/home/status_bar_widget.dart'; class HeaderWidget extends StatelessWidget { const HeaderWidget({ - Key? key, - }) : super(key: key); + super.key, + }); @override Widget build(BuildContext context) { From 8a7e11e4af499175dbe832123182cf7eed22f65d Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 15 Nov 2024 15:37:35 +0530 Subject: [PATCH 2/6] [mob][photos] Enable ml banner --- mobile/lib/ui/home/status_bar_widget.dart | 36 ++++++++++++++++--- .../lib/ui/settings/ml/enable_ml_consent.dart | 4 +++ mobile/lib/utils/local_settings.dart | 7 ++++ 3 files changed, 42 insertions(+), 5 deletions(-) diff --git a/mobile/lib/ui/home/status_bar_widget.dart b/mobile/lib/ui/home/status_bar_widget.dart index df3efa0c1d..1eddcb1337 100644 --- a/mobile/lib/ui/home/status_bar_widget.dart +++ b/mobile/lib/ui/home/status_bar_widget.dart @@ -10,6 +10,7 @@ import 'package:photos/events/sync_status_update_event.dart'; import "package:photos/generated/l10n.dart"; import "package:photos/service_locator.dart"; import 'package:photos/services/sync_service.dart'; +import "package:photos/services/user_remote_flag_service.dart"; import "package:photos/theme/ente_theme.dart"; import 'package:photos/theme/text_style.dart'; import 'package:photos/ui/account/verify_recovery_page.dart'; @@ -17,12 +18,13 @@ import 'package:photos/ui/components/home_header_widget.dart'; import 'package:photos/ui/components/notification_widget.dart'; import 'package:photos/ui/home/header_error_widget.dart'; import "package:photos/ui/settings/backup/backup_status_screen.dart"; +import "package:photos/ui/settings/ml/enable_ml_consent.dart"; import 'package:photos/utils/navigation_util.dart'; const double kContainerHeight = 36; class StatusBarWidget extends StatefulWidget { - const StatusBarWidget({Key? key}) : super(key: key); + const StatusBarWidget({super.key}); @override State createState() => _StatusBarWidgetState(); @@ -35,6 +37,9 @@ class _StatusBarWidgetState extends State { late StreamSubscription _notificationSubscription; bool _showStatus = false; bool _showErrorBanner = false; + final bool _showMlBanner = !userRemoteFlagService + .getCachedBoolValue(UserRemoteFlagService.mlEnabled) && + !localSettings.hasSeenMLEnablingBanner; Error? _syncError; @override @@ -112,8 +117,29 @@ class _StatusBarWidgetState extends State { _showErrorBanner ? HeaderErrorWidget(error: _syncError) : const SizedBox.shrink(), + _showMlBanner && !_showErrorBanner + ? Padding( + padding: + const EdgeInsets.symmetric(horizontal: 2.0, vertical: 12), + child: NotificationWidget( + startIcon: Icons.offline_bolt, + actionIcon: Icons.arrow_forward, + text: + "Enable machine learning for magic search and face recognition", + type: NotificationType.greenBanner, + onTap: () async => { + await routeToPage( + context, + const EnableMachineLearningConsent(), + forceCustomPageRoute: true, + ), + }, + ), + ) + : const SizedBox.shrink(), userRemoteFlagService.shouldShowRecoveryVerification() && - !_showErrorBanner + !_showErrorBanner && + !_showMlBanner ? Padding( padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12), @@ -138,7 +164,7 @@ class _StatusBarWidgetState extends State { } class SyncStatusWidget extends StatefulWidget { - const SyncStatusWidget({Key? key}) : super(key: key); + const SyncStatusWidget({super.key}); @override State createState() => _SyncStatusWidgetState(); @@ -195,7 +221,7 @@ class RefreshIndicatorWidget extends StatelessWidget { final SyncStatusUpdate? event; - const RefreshIndicatorWidget(this.event, {Key? key}) : super(key: key); + const RefreshIndicatorWidget(this.event, {super.key}); @override Widget build(BuildContext context) { @@ -275,7 +301,7 @@ class RefreshIndicatorWidget extends StatelessWidget { } class SyncStatusCompletedWidget extends StatelessWidget { - const SyncStatusCompletedWidget({Key? key}) : super(key: key); + const SyncStatusCompletedWidget({super.key}); @override Widget build(BuildContext context) { diff --git a/mobile/lib/ui/settings/ml/enable_ml_consent.dart b/mobile/lib/ui/settings/ml/enable_ml_consent.dart index 66ee553c81..ea11e132aa 100644 --- a/mobile/lib/ui/settings/ml/enable_ml_consent.dart +++ b/mobile/lib/ui/settings/ml/enable_ml_consent.dart @@ -1,4 +1,6 @@ import "package:flutter/material.dart"; +import "package:photos/core/event_bus.dart"; +import "package:photos/events/notification_event.dart"; import "package:photos/generated/l10n.dart"; import "package:photos/service_locator.dart"; import "package:photos/services/user_remote_flag_service.dart"; @@ -120,6 +122,8 @@ class _EnableMachineLearningConsentState buttonType: ButtonType.secondary, labelText: S.of(context).cancel, onTap: () async { + await localSettings.setHasSeenMLEnablingBanner(); + Bus.instance.fire(NotificationEvent()); Navigator.of(context).pop(); }, ), diff --git a/mobile/lib/utils/local_settings.dart b/mobile/lib/utils/local_settings.dart index e293375653..78923805f4 100644 --- a/mobile/lib/utils/local_settings.dart +++ b/mobile/lib/utils/local_settings.dart @@ -12,6 +12,7 @@ class LocalSettings { static const kCollectionSortPref = "collection_sort_pref"; static const kPhotoGridSize = "photo_grid_size"; static const _kisMLLocalIndexingEnabled = "ls.ml_local_indexing"; + static const _kHasSeenMLEnablingBanner = "ls.has_seen_ml_enabling_banner"; static const kRateUsShownCount = "rate_us_shown_count"; static const kEnableMultiplePart = "ls.enable_multiple_part"; static const kRateUsPromptThreshold = 2; @@ -75,6 +76,12 @@ class LocalSettings { return isMLLocalIndexingEnabled; } + bool get hasSeenMLEnablingBanner => + _prefs.getBool(_kHasSeenMLEnablingBanner) ?? false; + Future setHasSeenMLEnablingBanner() async { + await _prefs.setBool(_kHasSeenMLEnablingBanner, true); + } + //#region todo:(NG) remove this section, only needed for internal testing to see // if the OS stops the app during indexing bool get remoteFetchEnabled => _prefs.getBool("remoteFetchEnabled") ?? true; From 0f3e490699d77d54b172d2498c782cd3633076ff Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 15 Nov 2024 15:45:23 +0530 Subject: [PATCH 3/6] [mob][photos] Don't keep showing the banner --- mobile/lib/ui/home/status_bar_widget.dart | 5 ++++- mobile/lib/ui/settings/ml/enable_ml_consent.dart | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mobile/lib/ui/home/status_bar_widget.dart b/mobile/lib/ui/home/status_bar_widget.dart index 1eddcb1337..bd23dd34dc 100644 --- a/mobile/lib/ui/home/status_bar_widget.dart +++ b/mobile/lib/ui/home/status_bar_widget.dart @@ -37,7 +37,7 @@ class _StatusBarWidgetState extends State { late StreamSubscription _notificationSubscription; bool _showStatus = false; bool _showErrorBanner = false; - final bool _showMlBanner = !userRemoteFlagService + bool _showMlBanner = !userRemoteFlagService .getCachedBoolValue(UserRemoteFlagService.mlEnabled) && !localSettings.hasSeenMLEnablingBanner; Error? _syncError; @@ -75,6 +75,9 @@ class _StatusBarWidgetState extends State { _notificationSubscription = Bus.instance.on().listen((event) { if (mounted) { + _showMlBanner = !userRemoteFlagService + .getCachedBoolValue(UserRemoteFlagService.mlEnabled) && + !localSettings.hasSeenMLEnablingBanner; setState(() {}); } }); diff --git a/mobile/lib/ui/settings/ml/enable_ml_consent.dart b/mobile/lib/ui/settings/ml/enable_ml_consent.dart index ea11e132aa..e9fb4ffb6e 100644 --- a/mobile/lib/ui/settings/ml/enable_ml_consent.dart +++ b/mobile/lib/ui/settings/ml/enable_ml_consent.dart @@ -149,6 +149,7 @@ class _EnableMachineLearningConsentState UserRemoteFlagService.mlEnabled, true, ); + Bus.instance.fire(NotificationEvent()); Navigator.of(context).pop(true); } catch (e) { // ignore: unawaited_futures From d4479a1a66653e6723582d356af9fd0aaea41985 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 15 Nov 2024 15:49:58 +0530 Subject: [PATCH 4/6] [mob][photos] Extract to string --- mobile/lib/generated/intl/messages_ar.dart | 2 ++ mobile/lib/generated/intl/messages_be.dart | 2 ++ mobile/lib/generated/intl/messages_bg.dart | 4 +++- mobile/lib/generated/intl/messages_ca.dart | 4 +++- mobile/lib/generated/intl/messages_cs.dart | 2 ++ mobile/lib/generated/intl/messages_da.dart | 2 ++ mobile/lib/generated/intl/messages_de.dart | 2 ++ mobile/lib/generated/intl/messages_el.dart | 2 ++ mobile/lib/generated/intl/messages_en.dart | 2 ++ mobile/lib/generated/intl/messages_es.dart | 2 ++ mobile/lib/generated/intl/messages_et.dart | 2 ++ mobile/lib/generated/intl/messages_fa.dart | 2 ++ mobile/lib/generated/intl/messages_fr.dart | 2 ++ mobile/lib/generated/intl/messages_gu.dart | 4 +++- mobile/lib/generated/intl/messages_he.dart | 2 ++ mobile/lib/generated/intl/messages_hi.dart | 2 ++ mobile/lib/generated/intl/messages_id.dart | 2 ++ mobile/lib/generated/intl/messages_it.dart | 2 ++ mobile/lib/generated/intl/messages_ja.dart | 2 ++ mobile/lib/generated/intl/messages_km.dart | 4 +++- mobile/lib/generated/intl/messages_ko.dart | 2 ++ mobile/lib/generated/intl/messages_lt.dart | 2 ++ mobile/lib/generated/intl/messages_nl.dart | 2 ++ mobile/lib/generated/intl/messages_no.dart | 2 ++ mobile/lib/generated/intl/messages_pl.dart | 2 ++ mobile/lib/generated/intl/messages_pt.dart | 2 ++ mobile/lib/generated/intl/messages_ro.dart | 2 ++ mobile/lib/generated/intl/messages_ru.dart | 2 ++ mobile/lib/generated/intl/messages_sl.dart | 4 +++- mobile/lib/generated/intl/messages_sv.dart | 2 ++ mobile/lib/generated/intl/messages_ta.dart | 2 ++ mobile/lib/generated/intl/messages_te.dart | 4 +++- mobile/lib/generated/intl/messages_th.dart | 2 ++ mobile/lib/generated/intl/messages_ti.dart | 4 +++- mobile/lib/generated/intl/messages_tr.dart | 2 ++ mobile/lib/generated/intl/messages_uk.dart | 2 ++ mobile/lib/generated/intl/messages_zh.dart | 2 ++ mobile/lib/generated/l10n.dart | 10 ++++++++++ mobile/lib/l10n/intl_ar.arb | 3 ++- mobile/lib/l10n/intl_be.arb | 3 ++- mobile/lib/l10n/intl_bg.arb | 3 ++- mobile/lib/l10n/intl_ca.arb | 3 ++- mobile/lib/l10n/intl_cs.arb | 3 ++- mobile/lib/l10n/intl_da.arb | 3 ++- mobile/lib/l10n/intl_de.arb | 3 ++- mobile/lib/l10n/intl_el.arb | 3 ++- mobile/lib/l10n/intl_en.arb | 3 ++- mobile/lib/l10n/intl_es.arb | 3 ++- mobile/lib/l10n/intl_et.arb | 3 ++- mobile/lib/l10n/intl_fa.arb | 3 ++- mobile/lib/l10n/intl_fr.arb | 3 ++- mobile/lib/l10n/intl_gu.arb | 3 ++- mobile/lib/l10n/intl_he.arb | 3 ++- mobile/lib/l10n/intl_hi.arb | 3 ++- mobile/lib/l10n/intl_id.arb | 3 ++- mobile/lib/l10n/intl_it.arb | 3 ++- mobile/lib/l10n/intl_ja.arb | 3 ++- mobile/lib/l10n/intl_km.arb | 3 ++- mobile/lib/l10n/intl_ko.arb | 3 ++- mobile/lib/l10n/intl_lt.arb | 3 ++- mobile/lib/l10n/intl_nl.arb | 3 ++- mobile/lib/l10n/intl_no.arb | 3 ++- mobile/lib/l10n/intl_pl.arb | 3 ++- mobile/lib/l10n/intl_pt.arb | 3 ++- mobile/lib/l10n/intl_ro.arb | 3 ++- mobile/lib/l10n/intl_ru.arb | 3 ++- mobile/lib/l10n/intl_sl.arb | 3 ++- mobile/lib/l10n/intl_sv.arb | 3 ++- mobile/lib/l10n/intl_ta.arb | 3 ++- mobile/lib/l10n/intl_te.arb | 3 ++- mobile/lib/l10n/intl_th.arb | 3 ++- mobile/lib/l10n/intl_ti.arb | 3 ++- mobile/lib/l10n/intl_tr.arb | 3 ++- mobile/lib/l10n/intl_uk.arb | 3 ++- mobile/lib/l10n/intl_zh.arb | 3 ++- mobile/lib/ui/home/status_bar_widget.dart | 2 +- 76 files changed, 166 insertions(+), 45 deletions(-) diff --git a/mobile/lib/generated/intl/messages_ar.dart b/mobile/lib/generated/intl/messages_ar.dart index 95665bd0d1..3eef00968a 100644 --- a/mobile/lib/generated/intl/messages_ar.dart +++ b/mobile/lib/generated/intl/messages_ar.dart @@ -31,6 +31,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Checking models..."), "decrypting": MessageLookupByLibrary.simpleMessage("فك التشفير..."), "email": MessageLookupByLibrary.simpleMessage("البريد الإلكتروني"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enterYourEmailAddress": MessageLookupByLibrary.simpleMessage("أدخل عنوان بريدك الإلكتروني"), "enterYourRecoveryKey": diff --git a/mobile/lib/generated/intl/messages_be.dart b/mobile/lib/generated/intl/messages_be.dart index 42791a7935..0073d42dfa 100644 --- a/mobile/lib/generated/intl/messages_be.dart +++ b/mobile/lib/generated/intl/messages_be.dart @@ -112,6 +112,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Зрабіць гэта пазней"), "done": MessageLookupByLibrary.simpleMessage("Гатова"), "email": MessageLookupByLibrary.simpleMessage("Электронная пошта"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "encryption": MessageLookupByLibrary.simpleMessage("Шыфраванне"), "encryptionKeys": MessageLookupByLibrary.simpleMessage("Ключы шыфравання"), diff --git a/mobile/lib/generated/intl/messages_bg.dart b/mobile/lib/generated/intl/messages_bg.dart index e3f8835ae7..d5e56669cc 100644 --- a/mobile/lib/generated/intl/messages_bg.dart +++ b/mobile/lib/generated/intl/messages_bg.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_ca.dart b/mobile/lib/generated/intl/messages_ca.dart index 73cf74ac9b..f90fa8ca1a 100644 --- a/mobile/lib/generated/intl/messages_ca.dart +++ b/mobile/lib/generated/intl/messages_ca.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_cs.dart b/mobile/lib/generated/intl/messages_cs.dart index 7c3ab0ebe2..2d2e4f11da 100644 --- a/mobile/lib/generated/intl/messages_cs.dart +++ b/mobile/lib/generated/intl/messages_cs.dart @@ -28,6 +28,8 @@ class MessageLookup extends MessageLookupByLibrary { "Zkontrolujte prosím svou doručenou poštu (a spam) pro dokončení ověření"), "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "incorrectRecoveryKeyBody": MessageLookupByLibrary.simpleMessage("") }; } diff --git a/mobile/lib/generated/intl/messages_da.dart b/mobile/lib/generated/intl/messages_da.dart index 530acf8fc2..aa1a66c7a5 100644 --- a/mobile/lib/generated/intl/messages_da.dart +++ b/mobile/lib/generated/intl/messages_da.dart @@ -73,6 +73,8 @@ class MessageLookup extends MessageLookupByLibrary { "developerSettingsWarning": MessageLookupByLibrary.simpleMessage( "Er du sikker på, at du vil ændre udviklerindstillingerne?"), "email": MessageLookupByLibrary.simpleMessage("Email"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enterPin": MessageLookupByLibrary.simpleMessage("Indtast PIN"), "enterValidEmail": MessageLookupByLibrary.simpleMessage( "Indtast venligst en gyldig email adresse."), diff --git a/mobile/lib/generated/intl/messages_de.dart b/mobile/lib/generated/intl/messages_de.dart index 461b93dfd3..19b4d90ed6 100644 --- a/mobile/lib/generated/intl/messages_de.dart +++ b/mobile/lib/generated/intl/messages_de.dart @@ -738,6 +738,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Aktivieren"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente unterstützt maschinelles Lernen für Gesichtserkennung, magische Suche und andere erweiterte Suchfunktionen auf dem Gerät"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Karten aktivieren"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Dies zeigt Ihre Fotos auf einer Weltkarte.\n\nDiese Karte wird von OpenStreetMap gehostet und die genauen Standorte Ihrer Fotos werden niemals geteilt.\n\nSie können diese Funktion jederzeit in den Einstellungen deaktivieren."), diff --git a/mobile/lib/generated/intl/messages_el.dart b/mobile/lib/generated/intl/messages_el.dart index 3977b079de..7bd1109fa5 100644 --- a/mobile/lib/generated/intl/messages_el.dart +++ b/mobile/lib/generated/intl/messages_el.dart @@ -24,6 +24,8 @@ class MessageLookup extends MessageLookupByLibrary { static Map _notInlinedMessages(_) => { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enterYourEmailAddress": MessageLookupByLibrary.simpleMessage( "Εισάγετε την διεύθυνση ηλ. ταχυδρομείου σας") }; diff --git a/mobile/lib/generated/intl/messages_en.dart b/mobile/lib/generated/intl/messages_en.dart index 940af4877f..01701f4d73 100644 --- a/mobile/lib/generated/intl/messages_en.dart +++ b/mobile/lib/generated/intl/messages_en.dart @@ -712,6 +712,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Enable"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente supports on-device machine learning for face recognition, magic search and other advanced search features"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Enable Maps"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "This will show your photos on a world map.\n\nThis map is hosted by Open Street Map, and the exact locations of your photos are never shared.\n\nYou can disable this feature anytime from Settings."), diff --git a/mobile/lib/generated/intl/messages_es.dart b/mobile/lib/generated/intl/messages_es.dart index f3f666ba1e..7f5dfe4011 100644 --- a/mobile/lib/generated/intl/messages_es.dart +++ b/mobile/lib/generated/intl/messages_es.dart @@ -730,6 +730,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Habilitar"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente soporta aprendizaje automático en el dispositivo para la detección de caras, búsqueda mágica y otras características de búsqueda avanzada"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Activar Mapas"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Esto mostrará tus fotos en el mapa mundial.\n\nEste mapa está gestionado por Open Street Map, y la ubicación exacta de tus fotos nunca se comparte.\n\nPuedes deshabilitar esta función en cualquier momento en Ajustes."), diff --git a/mobile/lib/generated/intl/messages_et.dart b/mobile/lib/generated/intl/messages_et.dart index 801f75c33c..2e446b5ad3 100644 --- a/mobile/lib/generated/intl/messages_et.dart +++ b/mobile/lib/generated/intl/messages_et.dart @@ -100,6 +100,8 @@ class MessageLookup extends MessageLookupByLibrary { "done": MessageLookupByLibrary.simpleMessage("Valmis"), "edit": MessageLookupByLibrary.simpleMessage("Muuda"), "email": MessageLookupByLibrary.simpleMessage("E-post"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "encryption": MessageLookupByLibrary.simpleMessage("Krüpteerimine"), "enterCode": MessageLookupByLibrary.simpleMessage("Sisesta kood"), "enterEmail": MessageLookupByLibrary.simpleMessage("Sisesta e-post"), diff --git a/mobile/lib/generated/intl/messages_fa.dart b/mobile/lib/generated/intl/messages_fa.dart index b4778b9f8d..e976091b99 100644 --- a/mobile/lib/generated/intl/messages_fa.dart +++ b/mobile/lib/generated/intl/messages_fa.dart @@ -170,6 +170,8 @@ class MessageLookup extends MessageLookupByLibrary { "editLocationTagTitle": MessageLookupByLibrary.simpleMessage("ویرایش مکان"), "email": MessageLookupByLibrary.simpleMessage("ایمیل"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "encryption": MessageLookupByLibrary.simpleMessage("رمزگذاری"), "encryptionKeys": MessageLookupByLibrary.simpleMessage("کلیدهای رمزنگاری"), diff --git a/mobile/lib/generated/intl/messages_fr.dart b/mobile/lib/generated/intl/messages_fr.dart index c159cbf564..bfa7298e1e 100644 --- a/mobile/lib/generated/intl/messages_fr.dart +++ b/mobile/lib/generated/intl/messages_fr.dart @@ -746,6 +746,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Activer"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente prend en charge l\'apprentissage automatique sur l\'appareil pour la reconnaissance faciale, la recherche magique et d\'autres fonctionnalités de recherche avancée"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Activer la carte"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Vos photos seront affichées sur une carte du monde.\n\nCette carte est hébergée par Open Street Map, et les emplacements exacts de vos photos ne sont jamais partagés.\n\nVous pouvez désactiver cette fonction à tout moment dans les Paramètres."), diff --git a/mobile/lib/generated/intl/messages_gu.dart b/mobile/lib/generated/intl/messages_gu.dart index 4bef7ab5f7..e408bb1370 100644 --- a/mobile/lib/generated/intl/messages_gu.dart +++ b/mobile/lib/generated/intl/messages_gu.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_he.dart b/mobile/lib/generated/intl/messages_he.dart index eb9ee49a9d..0234c08f71 100644 --- a/mobile/lib/generated/intl/messages_he.dart +++ b/mobile/lib/generated/intl/messages_he.dart @@ -412,6 +412,8 @@ class MessageLookup extends MessageLookupByLibrary { "emailVerificationToggle": MessageLookupByLibrary.simpleMessage("אימות מייל"), "empty": MessageLookupByLibrary.simpleMessage("ריק"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "encryption": MessageLookupByLibrary.simpleMessage("הצפנה"), "encryptionKeys": MessageLookupByLibrary.simpleMessage("מפתחות ההצפנה"), "endtoendEncryptedByDefault": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_hi.dart b/mobile/lib/generated/intl/messages_hi.dart index 057c2e52e8..fa5ae3c05e 100644 --- a/mobile/lib/generated/intl/messages_hi.dart +++ b/mobile/lib/generated/intl/messages_hi.dart @@ -58,6 +58,8 @@ class MessageLookup extends MessageLookupByLibrary { "deleteRequestSLAText": MessageLookupByLibrary.simpleMessage( "आपका अनुरोध 72 घंटों के भीतर संसाधित किया जाएगा।"), "email": MessageLookupByLibrary.simpleMessage("ईमेल"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "entePhotosPerm": MessageLookupByLibrary.simpleMessage( "Ente को आपकी तस्वीरों को संरक्षित करने के लिए अनुमति की आवश्यकता है"), "enterValidEmail": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_id.dart b/mobile/lib/generated/intl/messages_id.dart index a2b4f6a619..47790fc6cf 100644 --- a/mobile/lib/generated/intl/messages_id.dart +++ b/mobile/lib/generated/intl/messages_id.dart @@ -614,6 +614,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Verifikasi email"), "empty": MessageLookupByLibrary.simpleMessage("Kosongkan"), "emptyTrash": MessageLookupByLibrary.simpleMessage("Kosongkan sampah?"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Aktifkan Peta"), "encryptingBackup": MessageLookupByLibrary.simpleMessage("Mengenkripsi cadangan..."), diff --git a/mobile/lib/generated/intl/messages_it.dart b/mobile/lib/generated/intl/messages_it.dart index fb76c9f87a..3186b9a2a1 100644 --- a/mobile/lib/generated/intl/messages_it.dart +++ b/mobile/lib/generated/intl/messages_it.dart @@ -734,6 +734,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Abilita"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente supporta l\'apprendimento automatico eseguito sul dispositivo per il riconoscimento dei volti, la ricerca magica e altre funzioni di ricerca avanzata"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Abilita le Mappe"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Questo mostrerà le tue foto su una mappa del mondo.\n\nQuesta mappa è ospitata da Open Street Map e le posizioni esatte delle tue foto non sono mai condivise.\n\nPuoi disabilitare questa funzionalità in qualsiasi momento, dalle Impostazioni."), diff --git a/mobile/lib/generated/intl/messages_ja.dart b/mobile/lib/generated/intl/messages_ja.dart index 06006f5621..cb41bbf92c 100644 --- a/mobile/lib/generated/intl/messages_ja.dart +++ b/mobile/lib/generated/intl/messages_ja.dart @@ -623,6 +623,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("有効化"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Enteは顔認識、マジック検索、その他の高度な検索機能のため、あなたのデバイス上で機械学習をしています"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("マップを有効にする"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "世界地図上にあなたの写真を表示します。\n\n地図はOpenStreetMapを利用しており、あなたの写真の位置情報が外部に共有されることはありません。\n\nこの機能は設定から無効にすることができます"), diff --git a/mobile/lib/generated/intl/messages_km.dart b/mobile/lib/generated/intl/messages_km.dart index 14989cc411..b650b83a43 100644 --- a/mobile/lib/generated/intl/messages_km.dart +++ b/mobile/lib/generated/intl/messages_km.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_ko.dart b/mobile/lib/generated/intl/messages_ko.dart index 1f72356e6c..03fb9e08d1 100644 --- a/mobile/lib/generated/intl/messages_ko.dart +++ b/mobile/lib/generated/intl/messages_ko.dart @@ -35,6 +35,8 @@ class MessageLookup extends MessageLookupByLibrary { "deleteAccountPermanentlyButton": MessageLookupByLibrary.simpleMessage("계정을 영구적으로 삭제"), "email": MessageLookupByLibrary.simpleMessage("이메일"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enterValidEmail": MessageLookupByLibrary.simpleMessage("올바른 이메일 주소를 입력하세요."), "enterYourEmailAddress": diff --git a/mobile/lib/generated/intl/messages_lt.dart b/mobile/lib/generated/intl/messages_lt.dart index 66bab14616..769f912743 100644 --- a/mobile/lib/generated/intl/messages_lt.dart +++ b/mobile/lib/generated/intl/messages_lt.dart @@ -412,6 +412,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Įjungti"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "„Ente“ palaiko įrenginyje mašininį mokymąsi, skirtą veidų atpažinimui, magiškai paieškai ir kitoms išplėstinėms paieškos funkcijoms"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Tai parodys jūsų nuotraukas pasaulio žemėlapyje.\n\nŠį žemėlapį talpina „OpenStreetMap“, o tiksliomis nuotraukų vietovėmis niekada nebendrinama.\n\nŠią funkciją bet kada galite išjungti iš nustatymų."), "enabled": MessageLookupByLibrary.simpleMessage("Įjungta"), diff --git a/mobile/lib/generated/intl/messages_nl.dart b/mobile/lib/generated/intl/messages_nl.dart index 11bcb82b4e..558411f1c1 100644 --- a/mobile/lib/generated/intl/messages_nl.dart +++ b/mobile/lib/generated/intl/messages_nl.dart @@ -726,6 +726,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Inschakelen"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente ondersteunt on-device machine learning voor gezichtsherkenning, magisch zoeken en andere geavanceerde zoekfuncties"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Kaarten inschakelen"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_no.dart b/mobile/lib/generated/intl/messages_no.dart index 6426bdbbcb..0f984787c0 100644 --- a/mobile/lib/generated/intl/messages_no.dart +++ b/mobile/lib/generated/intl/messages_no.dart @@ -189,6 +189,8 @@ class MessageLookup extends MessageLookupByLibrary { "dropSupportEmail": m25, "duplicateItemsGroup": m27, "email": MessageLookupByLibrary.simpleMessage("E-post"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "encryption": MessageLookupByLibrary.simpleMessage("Kryptering"), "encryptionKeys": MessageLookupByLibrary.simpleMessage("Krypteringsnøkkel"), diff --git a/mobile/lib/generated/intl/messages_pl.dart b/mobile/lib/generated/intl/messages_pl.dart index d446bb852b..55ac3cb004 100644 --- a/mobile/lib/generated/intl/messages_pl.dart +++ b/mobile/lib/generated/intl/messages_pl.dart @@ -732,6 +732,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Włącz"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente obsługuje uczenie maszynowe na urządzeniu dla rozpoznawania twarzy, wyszukiwania magicznego i innych zaawansowanych funkcji wyszukiwania"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Włącz mapy"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "To pokaże Twoje zdjęcia na mapie świata.\n\nTa mapa jest hostowana przez Open Street Map, a dokładne lokalizacje Twoich zdjęć nigdy nie są udostępniane.\n\nMożesz wyłączyć tę funkcję w każdej chwili w ustawieniach."), diff --git a/mobile/lib/generated/intl/messages_pt.dart b/mobile/lib/generated/intl/messages_pt.dart index 017fd3d557..8321a7a958 100644 --- a/mobile/lib/generated/intl/messages_pt.dart +++ b/mobile/lib/generated/intl/messages_pt.dart @@ -729,6 +729,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Ativar"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente suporta aprendizagem de máquina para reconhecimento facial, busca mágica e outros recursos de busca avançados"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Ativar mapas"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Isso exibirá suas fotos em um mapa mundial.\n\nEste mapa é hospedado por Open Street Map, e as exatas localizações das fotos nunca serão compartilhadas.\n\nVocê pode desativar esta função a qualquer momento em Opções."), diff --git a/mobile/lib/generated/intl/messages_ro.dart b/mobile/lib/generated/intl/messages_ro.dart index fd6bd7ddd0..52eeea8e1d 100644 --- a/mobile/lib/generated/intl/messages_ro.dart +++ b/mobile/lib/generated/intl/messages_ro.dart @@ -605,6 +605,8 @@ class MessageLookup extends MessageLookupByLibrary { "emptyTrash": MessageLookupByLibrary.simpleMessage("Goliți coșul de gunoi?"), "enable": MessageLookupByLibrary.simpleMessage("Activare"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enabled": MessageLookupByLibrary.simpleMessage("Activat"), "encryption": MessageLookupByLibrary.simpleMessage("Criptarea"), "encryptionKeys": diff --git a/mobile/lib/generated/intl/messages_ru.dart b/mobile/lib/generated/intl/messages_ru.dart index b2baeda55b..1ae4375355 100644 --- a/mobile/lib/generated/intl/messages_ru.dart +++ b/mobile/lib/generated/intl/messages_ru.dart @@ -681,6 +681,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Включить"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente поддерживает машинное обучение на устройстве для распознавания лиц, умного поиска и других расширенных функций поиска"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Включить карты"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Ваши фотографии будут показаны на карте мира.\n\nЭта карта размещена на Open Street Map, и точное местоположение ваших фотографий никогда не разглашается.\n\nВы можете отключить эту функцию в любое время в настройках."), diff --git a/mobile/lib/generated/intl/messages_sl.dart b/mobile/lib/generated/intl/messages_sl.dart index 88252dd5d5..ab72175346 100644 --- a/mobile/lib/generated/intl/messages_sl.dart +++ b/mobile/lib/generated/intl/messages_sl.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_sv.dart b/mobile/lib/generated/intl/messages_sv.dart index 3c2d8049a8..e3dd48662a 100644 --- a/mobile/lib/generated/intl/messages_sv.dart +++ b/mobile/lib/generated/intl/messages_sv.dart @@ -244,6 +244,8 @@ class MessageLookup extends MessageLookupByLibrary { "edit": MessageLookupByLibrary.simpleMessage("Redigera"), "email": MessageLookupByLibrary.simpleMessage("E-post"), "emailNoEnteAccount": m29, + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "encryption": MessageLookupByLibrary.simpleMessage("Kryptering"), "encryptionKeys": MessageLookupByLibrary.simpleMessage("Krypteringsnycklar"), diff --git a/mobile/lib/generated/intl/messages_ta.dart b/mobile/lib/generated/intl/messages_ta.dart index a293e51fc1..14d84e0d10 100644 --- a/mobile/lib/generated/intl/messages_ta.dart +++ b/mobile/lib/generated/intl/messages_ta.dart @@ -41,6 +41,8 @@ class MessageLookup extends MessageLookupByLibrary { "deleteReason1": MessageLookupByLibrary.simpleMessage( "எனக்கு தேவையான ஒரு முக்கிய அம்சம் இதில் இல்லை"), "email": MessageLookupByLibrary.simpleMessage("மின்னஞ்சல்"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enterValidEmail": MessageLookupByLibrary.simpleMessage( "சரியான மின்னஞ்சல் முகவரியை உள்ளிடவும்."), "enterYourEmailAddress": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_te.dart b/mobile/lib/generated/intl/messages_te.dart index 9f7ed5e4df..c6bca6a9e2 100644 --- a/mobile/lib/generated/intl/messages_te.dart +++ b/mobile/lib/generated/intl/messages_te.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_th.dart b/mobile/lib/generated/intl/messages_th.dart index ba95cc741b..318e6500d8 100644 --- a/mobile/lib/generated/intl/messages_th.dart +++ b/mobile/lib/generated/intl/messages_th.dart @@ -151,6 +151,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("แก้ไขตำแหน่ง"), "eligible": MessageLookupByLibrary.simpleMessage("มีสิทธิ์"), "email": MessageLookupByLibrary.simpleMessage("อีเมล"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("เปิดใช้งานแผนที่"), "encryption": MessageLookupByLibrary.simpleMessage("การเข้ารหัส"), "enterCode": MessageLookupByLibrary.simpleMessage("ป้อนรหัส"), diff --git a/mobile/lib/generated/intl/messages_ti.dart b/mobile/lib/generated/intl/messages_ti.dart index 4c54aa4ee8..0068f54713 100644 --- a/mobile/lib/generated/intl/messages_ti.dart +++ b/mobile/lib/generated/intl/messages_ti.dart @@ -23,6 +23,8 @@ class MessageLookup extends MessageLookupByLibrary { final messages = _notInlinedMessages(_notInlinedMessages); static Map _notInlinedMessages(_) => { "checkingModels": - MessageLookupByLibrary.simpleMessage("Checking models...") + MessageLookupByLibrary.simpleMessage("Checking models..."), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition") }; } diff --git a/mobile/lib/generated/intl/messages_tr.dart b/mobile/lib/generated/intl/messages_tr.dart index 864c0df840..8d1e9494ba 100644 --- a/mobile/lib/generated/intl/messages_tr.dart +++ b/mobile/lib/generated/intl/messages_tr.dart @@ -606,6 +606,8 @@ class MessageLookup extends MessageLookupByLibrary { "empty": MessageLookupByLibrary.simpleMessage("Boşalt"), "emptyTrash": MessageLookupByLibrary.simpleMessage("Çöp kutusu boşaltılsın mı?"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Haritaları Etkinleştir"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_uk.dart b/mobile/lib/generated/intl/messages_uk.dart index 8d4c85a99e..2fb8869353 100644 --- a/mobile/lib/generated/intl/messages_uk.dart +++ b/mobile/lib/generated/intl/messages_uk.dart @@ -731,6 +731,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("Увімкнути"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente підтримує машинне навчання для розпізнавання обличчя, магічний пошук та інші розширені функції пошуку"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("Увімкнути мапи"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "Це покаже ваші фотографії на мапі світу.\n\nЦя мапа розміщена на OpenStreetMap, і точне розташування ваших фотографій ніколи не розголошується.\n\nВи можете будь-коли вимкнути цю функцію в налаштуваннях."), diff --git a/mobile/lib/generated/intl/messages_zh.dart b/mobile/lib/generated/intl/messages_zh.dart index 22109eeb32..c046e58cfa 100644 --- a/mobile/lib/generated/intl/messages_zh.dart +++ b/mobile/lib/generated/intl/messages_zh.dart @@ -599,6 +599,8 @@ class MessageLookup extends MessageLookupByLibrary { "enable": MessageLookupByLibrary.simpleMessage("启用"), "enableMLIndexingDesc": MessageLookupByLibrary.simpleMessage( "Ente 支持设备上的机器学习,实现人脸识别、魔法搜索和其他高级搜索功能"), + "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( + "Enable machine learning for magic search and face recognition"), "enableMaps": MessageLookupByLibrary.simpleMessage("启用地图"), "enableMapsDesc": MessageLookupByLibrary.simpleMessage( "这将在世界地图上显示您的照片。\n\n该地图由 Open Street Map 托管,并且您的照片的确切位置永远不会共享。\n\n您可以随时从“设置”中禁用此功能。"), diff --git a/mobile/lib/generated/l10n.dart b/mobile/lib/generated/l10n.dart index a33c0511ea..625468eba7 100644 --- a/mobile/lib/generated/l10n.dart +++ b/mobile/lib/generated/l10n.dart @@ -9915,6 +9915,16 @@ class S { args: [], ); } + + /// `Enable machine learning for magic search and face recognition` + String get enableMachineLearningBanner { + return Intl.message( + 'Enable machine learning for magic search and face recognition', + name: 'enableMachineLearningBanner', + desc: '', + args: [], + ); + } } class AppLocalizationDelegate extends LocalizationsDelegate { diff --git a/mobile/lib/l10n/intl_ar.arb b/mobile/lib/l10n/intl_ar.arb index d094e442f1..f371a61c36 100644 --- a/mobile/lib/l10n/intl_ar.arb +++ b/mobile/lib/l10n/intl_ar.arb @@ -24,5 +24,6 @@ "verifyEmail": "التحقق من البريد الإلكتروني", "toResetVerifyEmail": "لإعادة تعيين كلمة المرور، يرجى التحقق من بريدك الإلكتروني أولاً.", "ackPasswordLostWarning": "أُدركُ أنّني فقدتُ كلمة مروري، فقد أفقد بياناتي لأن بياناتي مشفرة تشفيرًا تامًّا من النهاية إلى النهاية.", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_be.arb b/mobile/lib/l10n/intl_be.arb index 0d33674d8a..9eaea845ec 100644 --- a/mobile/lib/l10n/intl_be.arb +++ b/mobile/lib/l10n/intl_be.arb @@ -200,5 +200,6 @@ "systemTheme": "Сістэма", "freeTrial": "Бясплатная пробная версія", "faqs": "Частыя пытанні", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_bg.arb b/mobile/lib/l10n/intl_bg.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_bg.arb +++ b/mobile/lib/l10n/intl_bg.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ca.arb b/mobile/lib/l10n/intl_ca.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_ca.arb +++ b/mobile/lib/l10n/intl_ca.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_cs.arb b/mobile/lib/l10n/intl_cs.arb index e6b421ac6f..47380fc3b6 100644 --- a/mobile/lib/l10n/intl_cs.arb +++ b/mobile/lib/l10n/intl_cs.arb @@ -3,5 +3,6 @@ "askDeleteReason": "Jaký je váš hlavní důvod, proč mažete svůj účet?", "incorrectRecoveryKeyBody": "", "checkInboxAndSpamFolder": "Zkontrolujte prosím svou doručenou poštu (a spam) pro dokončení ověření", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_da.arb b/mobile/lib/l10n/intl_da.arb index d346545b28..abc8d34fa1 100644 --- a/mobile/lib/l10n/intl_da.arb +++ b/mobile/lib/l10n/intl_da.arb @@ -85,5 +85,6 @@ "developerSettingsWarning": "Er du sikker på, at du vil ændre udviklerindstillingerne?", "next": "Næste", "enterPin": "Indtast PIN", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_de.arb b/mobile/lib/l10n/intl_de.arb index 6e76bed407..03d670ab60 100644 --- a/mobile/lib/l10n/intl_de.arb +++ b/mobile/lib/l10n/intl_de.arb @@ -1360,5 +1360,6 @@ "allPersonGroupingWillReset": "Alle Gruppierungen für diese Person werden zurückgesetzt und du wirst alle Vorschläge für diese Person verlieren", "yesResetPerson": "Ja, Person zurücksetzen", "onlyThem": "Nur diese", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_el.arb b/mobile/lib/l10n/intl_el.arb index 479cab3eb2..ac1eb831e6 100644 --- a/mobile/lib/l10n/intl_el.arb +++ b/mobile/lib/l10n/intl_el.arb @@ -1,5 +1,6 @@ { "@@locale ": "en", "enterYourEmailAddress": "Εισάγετε την διεύθυνση ηλ. ταχυδρομείου σας", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_en.arb b/mobile/lib/l10n/intl_en.arb index 88629cf49f..a5debb542a 100644 --- a/mobile/lib/l10n/intl_en.arb +++ b/mobile/lib/l10n/intl_en.arb @@ -1360,5 +1360,6 @@ "allPersonGroupingWillReset": "All groupings for this person will be reset, and you will lose all suggestions made for this person", "yesResetPerson": "Yes, reset person", "onlyThem": "Only them", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_es.arb b/mobile/lib/l10n/intl_es.arb index 66d62e0e9f..1d0928fca4 100644 --- a/mobile/lib/l10n/intl_es.arb +++ b/mobile/lib/l10n/intl_es.arb @@ -1344,5 +1344,6 @@ "mostRelevant": "Más relevante", "loadingYourPhotos": "Cargando tus fotos...", "processingImport": "Procesando {folderName}...", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_et.arb b/mobile/lib/l10n/intl_et.arb index 5b2dd4da34..8e5e6a92ed 100644 --- a/mobile/lib/l10n/intl_et.arb +++ b/mobile/lib/l10n/intl_et.arb @@ -219,5 +219,6 @@ "@storageBreakupYou": { "description": "Label to indicate how much storage you are using when you are part of a family plan" }, - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_fa.arb b/mobile/lib/l10n/intl_fa.arb index 8253c7b631..29a87ba96c 100644 --- a/mobile/lib/l10n/intl_fa.arb +++ b/mobile/lib/l10n/intl_fa.arb @@ -308,5 +308,6 @@ "search": "جستجو", "whatsNew": "تغییرات جدید", "reviewSuggestions": "مرور پیشنهادها", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_fr.arb b/mobile/lib/l10n/intl_fr.arb index fb12933bb9..3f1b2b5ed6 100644 --- a/mobile/lib/l10n/intl_fr.arb +++ b/mobile/lib/l10n/intl_fr.arb @@ -1348,5 +1348,6 @@ "areYouSureYouWantToResetThisPerson": "Êtes-vous certain de vouloir réinitialiser cette personne ?", "allPersonGroupingWillReset": "Tous les groupements pour cette personne seront réinitialisés, et vous perdrez toutes les suggestions faites pour cette personne", "yesResetPerson": "Oui, réinitialiser la personne", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_gu.arb b/mobile/lib/l10n/intl_gu.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_gu.arb +++ b/mobile/lib/l10n/intl_gu.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_he.arb b/mobile/lib/l10n/intl_he.arb index 788e45608d..171f0f4cdc 100644 --- a/mobile/lib/l10n/intl_he.arb +++ b/mobile/lib/l10n/intl_he.arb @@ -817,5 +817,6 @@ "create": "צור", "viewAll": "הצג הכל", "hiding": "מחביא...", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_hi.arb b/mobile/lib/l10n/intl_hi.arb index 686c13003b..3d6bc0c35e 100644 --- a/mobile/lib/l10n/intl_hi.arb +++ b/mobile/lib/l10n/intl_hi.arb @@ -49,5 +49,6 @@ "noRecoveryKeyNoDecryption": "हमारे एंड-टू-एंड एन्क्रिप्शन प्रोटोकॉल की प्रकृति के कारण, आपके डेटा को आपके पासवर्ड या रिकवरी कुंजी के बिना डिक्रिप्ट नहीं किया जा सकता है", "verifyEmail": "ईमेल सत्यापित करें", "toResetVerifyEmail": "अपना पासवर्ड रीसेट करने के लिए, कृपया पहले अपना ईमेल सत्यापित करें।", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_id.arb b/mobile/lib/l10n/intl_id.arb index 50e9d43505..b758ad7afa 100644 --- a/mobile/lib/l10n/intl_id.arb +++ b/mobile/lib/l10n/intl_id.arb @@ -1144,5 +1144,6 @@ "left": "Kiri", "right": "Kanan", "whatsNew": "Hal yang baru", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_it.arb b/mobile/lib/l10n/intl_it.arb index 778f80de26..d698526c93 100644 --- a/mobile/lib/l10n/intl_it.arb +++ b/mobile/lib/l10n/intl_it.arb @@ -1360,5 +1360,6 @@ "allPersonGroupingWillReset": "Tutti i raggruppamenti per questa persona saranno resettati e perderai tutti i suggerimenti fatti per questa persona", "yesResetPerson": "Sì, resetta persona", "onlyThem": "Solo loro", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ja.arb b/mobile/lib/l10n/intl_ja.arb index d1d7e61049..b61bd4eaeb 100644 --- a/mobile/lib/l10n/intl_ja.arb +++ b/mobile/lib/l10n/intl_ja.arb @@ -1344,5 +1344,6 @@ "mostRelevant": "関連度順", "loadingYourPhotos": "写真を読み込んでいます...", "processingImport": "{folderName} を処理中...", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_km.arb b/mobile/lib/l10n/intl_km.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_km.arb +++ b/mobile/lib/l10n/intl_km.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ko.arb b/mobile/lib/l10n/intl_ko.arb index 72dce82729..10a0c441d4 100644 --- a/mobile/lib/l10n/intl_ko.arb +++ b/mobile/lib/l10n/intl_ko.arb @@ -13,5 +13,6 @@ "confirmAccountDeletion": "계정 삭제 확인", "deleteAccountPermanentlyButton": "계정을 영구적으로 삭제", "yourAccountHasBeenDeleted": "계정이 삭제되었습니다.", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_lt.arb b/mobile/lib/l10n/intl_lt.arb index 2cab8e5276..fb419e9b67 100644 --- a/mobile/lib/l10n/intl_lt.arb +++ b/mobile/lib/l10n/intl_lt.arb @@ -801,5 +801,6 @@ "allPersonGroupingWillReset": "Visi šio asmens grupavimai bus iš naujo nustatyti, o jūs neteksite visų šiam asmeniui pateiktų pasiūlymų", "yesResetPerson": "Taip, nustatyti asmenį iš naujo", "onlyThem": "Tik jiems", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_nl.arb b/mobile/lib/l10n/intl_nl.arb index 1b46c6ac1b..2c00bb0718 100644 --- a/mobile/lib/l10n/intl_nl.arb +++ b/mobile/lib/l10n/intl_nl.arb @@ -1344,5 +1344,6 @@ "mostRelevant": "Meest relevant", "loadingYourPhotos": "Je foto's worden geladen...", "processingImport": "Verwerken van {folderName}...", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_no.arb b/mobile/lib/l10n/intl_no.arb index bea3834ff2..5775677c35 100644 --- a/mobile/lib/l10n/intl_no.arb +++ b/mobile/lib/l10n/intl_no.arb @@ -372,5 +372,6 @@ "general": "Generelt", "security": "Sikkerhet", "authToViewYourRecoveryKey": "Vennligst autentiser deg for å se gjennopprettingsnøkkelen din", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_pl.arb b/mobile/lib/l10n/intl_pl.arb index 182563ad0c..5837abc41b 100644 --- a/mobile/lib/l10n/intl_pl.arb +++ b/mobile/lib/l10n/intl_pl.arb @@ -1359,5 +1359,6 @@ "areYouSureYouWantToResetThisPerson": "Czy na pewno chcesz zresetować tę osobę?", "allPersonGroupingWillReset": "Wszystkie grupy dla tej osoby zostaną zresetowane i stracisz wszystkie sugestie dla tej osoby", "yesResetPerson": "Tak, zresetuj osobę", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_pt.arb b/mobile/lib/l10n/intl_pt.arb index 7641231b3b..3c6d5d28a8 100644 --- a/mobile/lib/l10n/intl_pt.arb +++ b/mobile/lib/l10n/intl_pt.arb @@ -1360,5 +1360,6 @@ "allPersonGroupingWillReset": "Todos os agrupamentos dessa pessoa serão redefinidos, e você perderá todas as sugestões feitas por essa pessoa.", "yesResetPerson": "Sim, redefinir pessoa", "onlyThem": "Apenas eles", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ro.arb b/mobile/lib/l10n/intl_ro.arb index 9032e9b8a8..b83ae18460 100644 --- a/mobile/lib/l10n/intl_ro.arb +++ b/mobile/lib/l10n/intl_ro.arb @@ -1093,5 +1093,6 @@ "enable": "Activare", "enabled": "Activat", "moreDetails": "Mai multe detalii", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ru.arb b/mobile/lib/l10n/intl_ru.arb index 1d4bf614e1..6559fb214e 100644 --- a/mobile/lib/l10n/intl_ru.arb +++ b/mobile/lib/l10n/intl_ru.arb @@ -1301,5 +1301,6 @@ "thisWillRemovePublicLinksOfAllSelectedQuickLinks": "Это удалит публичные ссылки на все выбранные быстрые ссылки.", "guestView": "Гостевой вид", "guestViewEnablePreSteps": "Чтобы включить гостевой вид, настройте пароль устройства или блокировку экрана в настройках системы.", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_sl.arb b/mobile/lib/l10n/intl_sl.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_sl.arb +++ b/mobile/lib/l10n/intl_sl.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_sv.arb b/mobile/lib/l10n/intl_sv.arb index 97475b7857..6145982e61 100644 --- a/mobile/lib/l10n/intl_sv.arb +++ b/mobile/lib/l10n/intl_sv.arb @@ -456,5 +456,6 @@ "newPerson": "Ny person", "addName": "Lägg till namn", "add": "Lägg till", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ta.arb b/mobile/lib/l10n/intl_ta.arb index e8217d2d3a..e900512449 100644 --- a/mobile/lib/l10n/intl_ta.arb +++ b/mobile/lib/l10n/intl_ta.arb @@ -16,5 +16,6 @@ "confirmAccountDeletion": "கணக்கு நீக்குதலை உறுதிப்படுத்தவும்", "deleteAccountPermanentlyButton": "கணக்கை நிரந்தரமாக நீக்கவும்", "deleteReason1": "எனக்கு தேவையான ஒரு முக்கிய அம்சம் இதில் இல்லை", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_te.arb b/mobile/lib/l10n/intl_te.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_te.arb +++ b/mobile/lib/l10n/intl_te.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_th.arb b/mobile/lib/l10n/intl_th.arb index 8793ad7410..e4862e1245 100644 --- a/mobile/lib/l10n/intl_th.arb +++ b/mobile/lib/l10n/intl_th.arb @@ -296,5 +296,6 @@ }, "maps": "แผนที่", "enableMaps": "เปิดใช้งานแผนที่", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ti.arb b/mobile/lib/l10n/intl_ti.arb index c9d5b5480b..17136b96a6 100644 --- a/mobile/lib/l10n/intl_ti.arb +++ b/mobile/lib/l10n/intl_ti.arb @@ -1,4 +1,5 @@ { "@@locale ": "en", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_tr.arb b/mobile/lib/l10n/intl_tr.arb index f9483721b5..2bae81401e 100644 --- a/mobile/lib/l10n/intl_tr.arb +++ b/mobile/lib/l10n/intl_tr.arb @@ -1170,5 +1170,6 @@ "invalidEndpointMessage": "Üzgünüz, girdiğiniz uç nokta geçersiz. Lütfen geçerli bir uç nokta girin ve tekrar deneyin.", "endpointUpdatedMessage": "Fatura başarıyla güncellendi", "customEndpoint": "{endpoint}'e bağlanıldı", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_uk.arb b/mobile/lib/l10n/intl_uk.arb index 1dbb7458a0..8c3c7ba1ab 100644 --- a/mobile/lib/l10n/intl_uk.arb +++ b/mobile/lib/l10n/intl_uk.arb @@ -1359,5 +1359,6 @@ "areYouSureYouWantToResetThisPerson": "Ви впевнені, що хочете скинути цю особу?", "allPersonGroupingWillReset": "Усі групи для цієї особи будуть скинуті, і ви втратите всі пропозиції, зроблені для неї", "yesResetPerson": "Так, скинути особу", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_zh.arb b/mobile/lib/l10n/intl_zh.arb index 90bc60ed3e..30a28cce31 100644 --- a/mobile/lib/l10n/intl_zh.arb +++ b/mobile/lib/l10n/intl_zh.arb @@ -1344,5 +1344,6 @@ "mostRelevant": "最相关", "loadingYourPhotos": "正在加载您的照片...", "processingImport": "正在处理 {folderName}...", - "checkingModels": "Checking models..." + "checkingModels": "Checking models...", + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" } \ No newline at end of file diff --git a/mobile/lib/ui/home/status_bar_widget.dart b/mobile/lib/ui/home/status_bar_widget.dart index bd23dd34dc..391675b2b5 100644 --- a/mobile/lib/ui/home/status_bar_widget.dart +++ b/mobile/lib/ui/home/status_bar_widget.dart @@ -128,7 +128,7 @@ class _StatusBarWidgetState extends State { startIcon: Icons.offline_bolt, actionIcon: Icons.arrow_forward, text: - "Enable machine learning for magic search and face recognition", + S.of(context).enableMachineLearningBanner, type: NotificationType.greenBanner, onTap: () async => { await routeToPage( From 4ce2d0a1e253e58ef8d819b939ef1363e1f57fe1 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 15 Nov 2024 16:02:45 +0530 Subject: [PATCH 5/6] [mob][photos] ml section empty copy --- mobile/lib/generated/intl/messages_ar.dart | 4 ++++ mobile/lib/generated/intl/messages_be.dart | 4 ++++ mobile/lib/generated/intl/messages_bg.dart | 6 +++++- mobile/lib/generated/intl/messages_ca.dart | 6 +++++- mobile/lib/generated/intl/messages_cs.dart | 6 +++++- mobile/lib/generated/intl/messages_da.dart | 4 ++++ mobile/lib/generated/intl/messages_de.dart | 2 ++ mobile/lib/generated/intl/messages_el.dart | 6 +++++- mobile/lib/generated/intl/messages_en.dart | 2 ++ mobile/lib/generated/intl/messages_es.dart | 2 ++ mobile/lib/generated/intl/messages_et.dart | 4 ++++ mobile/lib/generated/intl/messages_fa.dart | 4 ++++ mobile/lib/generated/intl/messages_fr.dart | 2 ++ mobile/lib/generated/intl/messages_gu.dart | 6 +++++- mobile/lib/generated/intl/messages_he.dart | 4 ++++ mobile/lib/generated/intl/messages_hi.dart | 4 ++++ mobile/lib/generated/intl/messages_id.dart | 4 ++++ mobile/lib/generated/intl/messages_it.dart | 2 ++ mobile/lib/generated/intl/messages_ja.dart | 2 ++ mobile/lib/generated/intl/messages_km.dart | 6 +++++- mobile/lib/generated/intl/messages_ko.dart | 4 ++++ mobile/lib/generated/intl/messages_lt.dart | 4 ++++ mobile/lib/generated/intl/messages_nl.dart | 2 ++ mobile/lib/generated/intl/messages_no.dart | 4 ++++ mobile/lib/generated/intl/messages_pl.dart | 2 ++ mobile/lib/generated/intl/messages_pt.dart | 2 ++ mobile/lib/generated/intl/messages_ro.dart | 2 ++ mobile/lib/generated/intl/messages_ru.dart | 2 ++ mobile/lib/generated/intl/messages_sl.dart | 6 +++++- mobile/lib/generated/intl/messages_sv.dart | 4 ++++ mobile/lib/generated/intl/messages_ta.dart | 4 ++++ mobile/lib/generated/intl/messages_te.dart | 6 +++++- mobile/lib/generated/intl/messages_th.dart | 4 ++++ mobile/lib/generated/intl/messages_ti.dart | 6 +++++- mobile/lib/generated/intl/messages_tr.dart | 2 ++ mobile/lib/generated/intl/messages_uk.dart | 2 ++ mobile/lib/generated/intl/messages_zh.dart | 2 ++ mobile/lib/generated/l10n.dart | 10 ++++++++++ mobile/lib/l10n/intl_ar.arb | 4 +++- mobile/lib/l10n/intl_be.arb | 4 +++- mobile/lib/l10n/intl_bg.arb | 4 +++- mobile/lib/l10n/intl_ca.arb | 4 +++- mobile/lib/l10n/intl_cs.arb | 4 +++- mobile/lib/l10n/intl_da.arb | 4 +++- mobile/lib/l10n/intl_de.arb | 3 ++- mobile/lib/l10n/intl_el.arb | 4 +++- mobile/lib/l10n/intl_en.arb | 3 ++- mobile/lib/l10n/intl_es.arb | 3 ++- mobile/lib/l10n/intl_et.arb | 4 +++- mobile/lib/l10n/intl_fa.arb | 4 +++- mobile/lib/l10n/intl_fr.arb | 3 ++- mobile/lib/l10n/intl_gu.arb | 4 +++- mobile/lib/l10n/intl_he.arb | 4 +++- mobile/lib/l10n/intl_hi.arb | 4 +++- mobile/lib/l10n/intl_id.arb | 4 +++- mobile/lib/l10n/intl_it.arb | 3 ++- mobile/lib/l10n/intl_ja.arb | 3 ++- mobile/lib/l10n/intl_km.arb | 4 +++- mobile/lib/l10n/intl_ko.arb | 4 +++- mobile/lib/l10n/intl_lt.arb | 4 +++- mobile/lib/l10n/intl_nl.arb | 3 ++- mobile/lib/l10n/intl_no.arb | 4 +++- mobile/lib/l10n/intl_pl.arb | 3 ++- mobile/lib/l10n/intl_pt.arb | 3 ++- mobile/lib/l10n/intl_ro.arb | 3 ++- mobile/lib/l10n/intl_ru.arb | 3 ++- mobile/lib/l10n/intl_sl.arb | 4 +++- mobile/lib/l10n/intl_sv.arb | 4 +++- mobile/lib/l10n/intl_ta.arb | 4 +++- mobile/lib/l10n/intl_te.arb | 4 +++- mobile/lib/l10n/intl_th.arb | 4 +++- mobile/lib/l10n/intl_ti.arb | 4 +++- mobile/lib/l10n/intl_tr.arb | 3 ++- mobile/lib/l10n/intl_uk.arb | 3 ++- mobile/lib/l10n/intl_zh.arb | 3 ++- mobile/lib/models/search/search_types.dart | 4 ++-- 76 files changed, 238 insertions(+), 48 deletions(-) diff --git a/mobile/lib/generated/intl/messages_ar.dart b/mobile/lib/generated/intl/messages_ar.dart index 3eef00968a..1e772e9a1d 100644 --- a/mobile/lib/generated/intl/messages_ar.dart +++ b/mobile/lib/generated/intl/messages_ar.dart @@ -52,6 +52,10 @@ class MessageLookup extends MessageLookupByLibrary { "recoverButton": MessageLookupByLibrary.simpleMessage("استرداد"), "recoverySuccessful": MessageLookupByLibrary.simpleMessage("نجح الاسترداد!"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "sorry": MessageLookupByLibrary.simpleMessage("المعذرة"), "terminate": MessageLookupByLibrary.simpleMessage("إنهاء"), "terminateSession": diff --git a/mobile/lib/generated/intl/messages_be.dart b/mobile/lib/generated/intl/messages_be.dart index 0073d42dfa..5dfdc901fa 100644 --- a/mobile/lib/generated/intl/messages_be.dart +++ b/mobile/lib/generated/intl/messages_be.dart @@ -223,6 +223,10 @@ class MessageLookup extends MessageLookupByLibrary { "retry": MessageLookupByLibrary.simpleMessage("Паўтарыць"), "saveKey": MessageLookupByLibrary.simpleMessage("Захаваць ключ"), "scanCode": MessageLookupByLibrary.simpleMessage("Сканіраваць код"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("Бяспека"), "selectAll": MessageLookupByLibrary.simpleMessage("Абраць усё"), "selectReason": diff --git a/mobile/lib/generated/intl/messages_bg.dart b/mobile/lib/generated/intl/messages_bg.dart index d5e56669cc..6090389084 100644 --- a/mobile/lib/generated/intl/messages_bg.dart +++ b/mobile/lib/generated/intl/messages_bg.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_ca.dart b/mobile/lib/generated/intl/messages_ca.dart index f90fa8ca1a..b9dd77cc86 100644 --- a/mobile/lib/generated/intl/messages_ca.dart +++ b/mobile/lib/generated/intl/messages_ca.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_cs.dart b/mobile/lib/generated/intl/messages_cs.dart index 2d2e4f11da..8004045c76 100644 --- a/mobile/lib/generated/intl/messages_cs.dart +++ b/mobile/lib/generated/intl/messages_cs.dart @@ -30,6 +30,10 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( "Enable machine learning for magic search and face recognition"), - "incorrectRecoveryKeyBody": MessageLookupByLibrary.simpleMessage("") + "incorrectRecoveryKeyBody": MessageLookupByLibrary.simpleMessage(""), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_da.dart b/mobile/lib/generated/intl/messages_da.dart index aa1a66c7a5..f0a1e5f8b0 100644 --- a/mobile/lib/generated/intl/messages_da.dart +++ b/mobile/lib/generated/intl/messages_da.dart @@ -118,8 +118,12 @@ class MessageLookup extends MessageLookupByLibrary { "scanThisBarcodeWithnyourAuthenticatorApp": MessageLookupByLibrary.simpleMessage( "Skan denne QR-kode med godkendelses-appen"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchHint1": MessageLookupByLibrary.simpleMessage("Hurtig, søgning på enheden"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "selectReason": MessageLookupByLibrary.simpleMessage("Vælg årsag"), "selectedPhotos": m4, "sendEmail": MessageLookupByLibrary.simpleMessage("Send email"), diff --git a/mobile/lib/generated/intl/messages_de.dart b/mobile/lib/generated/intl/messages_de.dart index 19b4d90ed6..0f4e19f9cf 100644 --- a/mobile/lib/generated/intl/messages_de.dart +++ b/mobile/lib/generated/intl/messages_de.dart @@ -1436,6 +1436,8 @@ class MessageLookup extends MessageLookupByLibrary { "Füge Beschreibungen wie \"#trip\" in der Fotoinfo hinzu um diese schnell hier wiederzufinden"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Suche nach Datum, Monat oder Jahr"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Personen werden hier angezeigt, sobald die Indizierung abgeschlossen ist"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_el.dart b/mobile/lib/generated/intl/messages_el.dart index 7bd1109fa5..cd7cefc67d 100644 --- a/mobile/lib/generated/intl/messages_el.dart +++ b/mobile/lib/generated/intl/messages_el.dart @@ -27,6 +27,10 @@ class MessageLookup extends MessageLookupByLibrary { "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( "Enable machine learning for magic search and face recognition"), "enterYourEmailAddress": MessageLookupByLibrary.simpleMessage( - "Εισάγετε την διεύθυνση ηλ. ταχυδρομείου σας") + "Εισάγετε την διεύθυνση ηλ. ταχυδρομείου σας"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_en.dart b/mobile/lib/generated/intl/messages_en.dart index 01701f4d73..79cda6fb51 100644 --- a/mobile/lib/generated/intl/messages_en.dart +++ b/mobile/lib/generated/intl/messages_en.dart @@ -1371,6 +1371,8 @@ class MessageLookup extends MessageLookupByLibrary { "Add descriptions like \"#trip\" in photo info to quickly find them here"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Search by a date, month or year"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once indexing is done"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_es.dart b/mobile/lib/generated/intl/messages_es.dart index 7f5dfe4011..e095c5777c 100644 --- a/mobile/lib/generated/intl/messages_es.dart +++ b/mobile/lib/generated/intl/messages_es.dart @@ -1421,6 +1421,8 @@ class MessageLookup extends MessageLookupByLibrary { "Agrega descripciones como \"#viaje\" en la información de la foto para encontrarlas aquí rápidamente"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage("Buscar por fecha, mes o año"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Las personas se mostrarán aquí una vez que se haya hecho la indexación"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_et.dart b/mobile/lib/generated/intl/messages_et.dart index 2e446b5ad3..e2cf2affdc 100644 --- a/mobile/lib/generated/intl/messages_et.dart +++ b/mobile/lib/generated/intl/messages_et.dart @@ -207,6 +207,10 @@ class MessageLookup extends MessageLookupByLibrary { "scanThisBarcodeWithnyourAuthenticatorApp": MessageLookupByLibrary.simpleMessage( "Skaneeri seda QR koodi\noma autentimisrakendusega"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("Turvalisus"), "selectAll": MessageLookupByLibrary.simpleMessage("Vali kõik"), "selectLanguage": MessageLookupByLibrary.simpleMessage("Vali keel"), diff --git a/mobile/lib/generated/intl/messages_fa.dart b/mobile/lib/generated/intl/messages_fa.dart index e976091b99..5eb7669028 100644 --- a/mobile/lib/generated/intl/messages_fa.dart +++ b/mobile/lib/generated/intl/messages_fa.dart @@ -326,6 +326,10 @@ class MessageLookup extends MessageLookupByLibrary { "safelyStored": MessageLookupByLibrary.simpleMessage("به طور ایمن"), "saveKey": MessageLookupByLibrary.simpleMessage("ذخیره کلید"), "search": MessageLookupByLibrary.simpleMessage("جستجو"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("امنیت"), "selectAll": MessageLookupByLibrary.simpleMessage("انتخاب همه"), "selectFoldersForBackup": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_fr.dart b/mobile/lib/generated/intl/messages_fr.dart index bfa7298e1e..41941d6b79 100644 --- a/mobile/lib/generated/intl/messages_fr.dart +++ b/mobile/lib/generated/intl/messages_fr.dart @@ -1445,6 +1445,8 @@ class MessageLookup extends MessageLookupByLibrary { "Ajoutez des descriptions comme \"#trip\" dans les infos photo pour les retrouver ici plus rapidement"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Recherche par date, mois ou année"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Les personnes seront affichées ici une fois l\'indexation terminée"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_gu.dart b/mobile/lib/generated/intl/messages_gu.dart index e408bb1370..c87e295b8a 100644 --- a/mobile/lib/generated/intl/messages_gu.dart +++ b/mobile/lib/generated/intl/messages_gu.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_he.dart b/mobile/lib/generated/intl/messages_he.dart index 0234c08f71..68bb9df9b6 100644 --- a/mobile/lib/generated/intl/messages_he.dart +++ b/mobile/lib/generated/intl/messages_he.dart @@ -744,6 +744,10 @@ class MessageLookup extends MessageLookupByLibrary { "סרוק את הברקוד הזה\nבעזרת אפליקציית האימות שלך"), "searchByAlbumNameHint": MessageLookupByLibrary.simpleMessage("שם האלבום"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("אבטחה"), "selectAlbum": MessageLookupByLibrary.simpleMessage("בחר אלבום"), "selectAll": MessageLookupByLibrary.simpleMessage("בחר הכל"), diff --git a/mobile/lib/generated/intl/messages_hi.dart b/mobile/lib/generated/intl/messages_hi.dart index fa5ae3c05e..a5cc80662b 100644 --- a/mobile/lib/generated/intl/messages_hi.dart +++ b/mobile/lib/generated/intl/messages_hi.dart @@ -89,6 +89,10 @@ class MessageLookup extends MessageLookupByLibrary { "recoverButton": MessageLookupByLibrary.simpleMessage("पुनः प्राप्त"), "recoverySuccessful": MessageLookupByLibrary.simpleMessage("रिकवरी सफल हुई!"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "selectReason": MessageLookupByLibrary.simpleMessage("कारण चुनें"), "sendEmail": MessageLookupByLibrary.simpleMessage("ईमेल भेजें"), "somethingWentWrongPleaseTryAgain": diff --git a/mobile/lib/generated/intl/messages_id.dart b/mobile/lib/generated/intl/messages_id.dart index 47790fc6cf..4bb33304fd 100644 --- a/mobile/lib/generated/intl/messages_id.dart +++ b/mobile/lib/generated/intl/messages_id.dart @@ -1179,6 +1179,8 @@ class MessageLookup extends MessageLookupByLibrary { "Tambah keterangan seperti \"#trip\" pada info foto agar mudah ditemukan di sini"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Telusuri dengan tanggal, bulan, atau tahun"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Orang akan ditampilkan di sini setelah pengindeksan selesai"), "searchFileTypesAndNamesEmptySection": @@ -1189,6 +1191,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Album, nama dan jenis file"), "searchHint5": MessageLookupByLibrary.simpleMessage( "Segera tiba: Penelusuran wajah & ajaib ✨"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Keamanan"), "selectALocation": MessageLookupByLibrary.simpleMessage("Pilih lokasi"), diff --git a/mobile/lib/generated/intl/messages_it.dart b/mobile/lib/generated/intl/messages_it.dart index 3186b9a2a1..2ea988ce06 100644 --- a/mobile/lib/generated/intl/messages_it.dart +++ b/mobile/lib/generated/intl/messages_it.dart @@ -1427,6 +1427,8 @@ class MessageLookup extends MessageLookupByLibrary { "Aggiungi descrizioni come \"#viaggio\" nelle informazioni delle foto per trovarle rapidamente qui"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Ricerca per data, mese o anno"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Le persone saranno mostrate qui una volta completata l\'indicizzazione"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_ja.dart b/mobile/lib/generated/intl/messages_ja.dart index cb41bbf92c..c72ea6645f 100644 --- a/mobile/lib/generated/intl/messages_ja.dart +++ b/mobile/lib/generated/intl/messages_ja.dart @@ -1204,6 +1204,8 @@ class MessageLookup extends MessageLookupByLibrary { "写真情報に \"#trip\" のように説明を追加すれば、ここで簡単に見つけることができます"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage("日付、月または年で検索"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage("学習が完了すると、ここに人が表示されます"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_km.dart b/mobile/lib/generated/intl/messages_km.dart index b650b83a43..100cf69418 100644 --- a/mobile/lib/generated/intl/messages_km.dart +++ b/mobile/lib/generated/intl/messages_km.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_ko.dart b/mobile/lib/generated/intl/messages_ko.dart index 03fb9e08d1..e4286ee7a6 100644 --- a/mobile/lib/generated/intl/messages_ko.dart +++ b/mobile/lib/generated/intl/messages_ko.dart @@ -44,6 +44,10 @@ class MessageLookup extends MessageLookupByLibrary { "feedback": MessageLookupByLibrary.simpleMessage("피드백"), "invalidEmailAddress": MessageLookupByLibrary.simpleMessage("잘못된 이메일 주소"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "verify": MessageLookupByLibrary.simpleMessage("인증"), "yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage("계정이 삭제되었습니다.") diff --git a/mobile/lib/generated/intl/messages_lt.dart b/mobile/lib/generated/intl/messages_lt.dart index 769f912743..da787568e6 100644 --- a/mobile/lib/generated/intl/messages_lt.dart +++ b/mobile/lib/generated/intl/messages_lt.dart @@ -826,9 +826,13 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage( "Skenuokite šį QR kodą\nsu autentifikatoriaus programa"), "search": MessageLookupByLibrary.simpleMessage("Ieškoti"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchHint4": MessageLookupByLibrary.simpleMessage("Vietovė"), "searchLocationEmptySection": MessageLookupByLibrary.simpleMessage( "Grupės nuotraukos, kurios padarytos tam tikru spinduliu nuo nuotraukos"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "selectALocation": MessageLookupByLibrary.simpleMessage("Pasirinkite vietovę"), diff --git a/mobile/lib/generated/intl/messages_nl.dart b/mobile/lib/generated/intl/messages_nl.dart index 558411f1c1..fce47ff806 100644 --- a/mobile/lib/generated/intl/messages_nl.dart +++ b/mobile/lib/generated/intl/messages_nl.dart @@ -1411,6 +1411,8 @@ class MessageLookup extends MessageLookupByLibrary { "Voeg beschrijvingen zoals \"#weekendje weg\" toe in foto-info om ze snel hier te vinden"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Zoeken op een datum, maand of jaar"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Mensen worden hier getoond als het indexeren klaar is"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_no.dart b/mobile/lib/generated/intl/messages_no.dart index 0f984787c0..250c61eb0b 100644 --- a/mobile/lib/generated/intl/messages_no.dart +++ b/mobile/lib/generated/intl/messages_no.dart @@ -352,6 +352,10 @@ class MessageLookup extends MessageLookupByLibrary { "scanThisBarcodeWithnyourAuthenticatorApp": MessageLookupByLibrary.simpleMessage( "Skann denne strekkoden med\nautentiseringsappen din"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("Sikkerhet"), "selectAll": MessageLookupByLibrary.simpleMessage("Velg alle"), "selectFoldersForBackup": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_pl.dart b/mobile/lib/generated/intl/messages_pl.dart index 55ac3cb004..5778f31676 100644 --- a/mobile/lib/generated/intl/messages_pl.dart +++ b/mobile/lib/generated/intl/messages_pl.dart @@ -1427,6 +1427,8 @@ class MessageLookup extends MessageLookupByLibrary { "Dodaj opisy takie jak \"#trip\" w informacji o zdjęciu, aby szybko znaleźć je tutaj"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Szukaj według daty, miesiąca lub roku"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Po zakończeniu indeksowania ludzie będą tu wyświetlani"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_pt.dart b/mobile/lib/generated/intl/messages_pt.dart index 8321a7a958..0e6b7b1a70 100644 --- a/mobile/lib/generated/intl/messages_pt.dart +++ b/mobile/lib/generated/intl/messages_pt.dart @@ -1421,6 +1421,8 @@ class MessageLookup extends MessageLookupByLibrary { "Adicione marcações como \"#viagem\" nas informações das fotos para encontrá-las aqui com facilidade"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage("Buscar por data, mês ou ano"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "As pessoas apareceram aqui quando a indexação for concluída"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_ro.dart b/mobile/lib/generated/intl/messages_ro.dart index 52eeea8e1d..09609b3400 100644 --- a/mobile/lib/generated/intl/messages_ro.dart +++ b/mobile/lib/generated/intl/messages_ro.dart @@ -1162,6 +1162,8 @@ class MessageLookup extends MessageLookupByLibrary { "Adăugați descrieri precum „#excursie” în informațiile fotografiilor pentru a le găsi ușor aici"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Căutare după o dată, o lună sau un an"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Persoanele vor fi afișate aici odată ce indexarea este finalizată"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_ru.dart b/mobile/lib/generated/intl/messages_ru.dart index 1ae4375355..6b9cf9f933 100644 --- a/mobile/lib/generated/intl/messages_ru.dart +++ b/mobile/lib/generated/intl/messages_ru.dart @@ -1353,6 +1353,8 @@ class MessageLookup extends MessageLookupByLibrary { "Добавьте описания типа \"#поездка\" в информацию о фото и быстро найдите их здесь"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Поиск по дате, месяцу или году"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Люди будут показаны здесь, как только будет выполнено индексирование"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_sl.dart b/mobile/lib/generated/intl/messages_sl.dart index ab72175346..72e3aba9a4 100644 --- a/mobile/lib/generated/intl/messages_sl.dart +++ b/mobile/lib/generated/intl/messages_sl.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_sv.dart b/mobile/lib/generated/intl/messages_sv.dart index e3dd48662a..be17ec8ab8 100644 --- a/mobile/lib/generated/intl/messages_sv.dart +++ b/mobile/lib/generated/intl/messages_sv.dart @@ -457,8 +457,12 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Album"), "searchByAlbumNameHint": MessageLookupByLibrary.simpleMessage("Albumnamn"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFileTypesAndNamesEmptySection": MessageLookupByLibrary.simpleMessage("Filtyper och namn"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "selectAlbum": MessageLookupByLibrary.simpleMessage("Välj album"), "selectLanguage": MessageLookupByLibrary.simpleMessage("Välj språk"), diff --git a/mobile/lib/generated/intl/messages_ta.dart b/mobile/lib/generated/intl/messages_ta.dart index 14d84e0d10..296e3ad91b 100644 --- a/mobile/lib/generated/intl/messages_ta.dart +++ b/mobile/lib/generated/intl/messages_ta.dart @@ -52,6 +52,10 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("தவறான மின்னஞ்சல் முகவரி"), "kindlyHelpUsWithThisInformation": MessageLookupByLibrary.simpleMessage( "இந்த தகவலுடன் தயவுசெய்து எங்களுக்கு உதவுங்கள்"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "verify": MessageLookupByLibrary.simpleMessage("சரிபார்க்கவும்") }; } diff --git a/mobile/lib/generated/intl/messages_te.dart b/mobile/lib/generated/intl/messages_te.dart index c6bca6a9e2..9fd08625dd 100644 --- a/mobile/lib/generated/intl/messages_te.dart +++ b/mobile/lib/generated/intl/messages_te.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_th.dart b/mobile/lib/generated/intl/messages_th.dart index 318e6500d8..1b23328542 100644 --- a/mobile/lib/generated/intl/messages_th.dart +++ b/mobile/lib/generated/intl/messages_th.dart @@ -288,6 +288,10 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage( "บันทึกคีย์การกู้คืนของคุณหากคุณยังไม่ได้ทำ"), "scanCode": MessageLookupByLibrary.simpleMessage("สแกนรหัส"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "selectAll": MessageLookupByLibrary.simpleMessage("เลือกทั้งหมด"), "selectReason": MessageLookupByLibrary.simpleMessage("เลือกเหตุผล"), "sendEmail": MessageLookupByLibrary.simpleMessage("ส่งอีเมล"), diff --git a/mobile/lib/generated/intl/messages_ti.dart b/mobile/lib/generated/intl/messages_ti.dart index 0068f54713..ae38369d50 100644 --- a/mobile/lib/generated/intl/messages_ti.dart +++ b/mobile/lib/generated/intl/messages_ti.dart @@ -25,6 +25,10 @@ class MessageLookup extends MessageLookupByLibrary { "checkingModels": MessageLookupByLibrary.simpleMessage("Checking models..."), "enableMachineLearningBanner": MessageLookupByLibrary.simpleMessage( - "Enable machine learning for magic search and face recognition") + "Enable machine learning for magic search and face recognition"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), + "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_tr.dart b/mobile/lib/generated/intl/messages_tr.dart index 8d1e9494ba..1b858247da 100644 --- a/mobile/lib/generated/intl/messages_tr.dart +++ b/mobile/lib/generated/intl/messages_tr.dart @@ -1167,6 +1167,8 @@ class MessageLookup extends MessageLookupByLibrary { "Fotoğraf bilgilerini burada hızlı bir şekilde bulmak için \"#trip\" gibi açıklamalar ekleyin"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Tarihe, aya veya yıla göre arama yapın"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFileTypesAndNamesEmptySection": MessageLookupByLibrary.simpleMessage("Dosya türleri ve adları"), "searchHint1": diff --git a/mobile/lib/generated/intl/messages_uk.dart b/mobile/lib/generated/intl/messages_uk.dart index 2fb8869353..f9f2c56f98 100644 --- a/mobile/lib/generated/intl/messages_uk.dart +++ b/mobile/lib/generated/intl/messages_uk.dart @@ -1431,6 +1431,8 @@ class MessageLookup extends MessageLookupByLibrary { "Додавайте такі описи як «#подорож» в інформацію про фотографію, щоб швидко знайти їх тут"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage( "Шукати за датою, місяцем або роком"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage( "Люди будуть показані тут після завершення індексації"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/intl/messages_zh.dart b/mobile/lib/generated/intl/messages_zh.dart index c046e58cfa..005751d400 100644 --- a/mobile/lib/generated/intl/messages_zh.dart +++ b/mobile/lib/generated/intl/messages_zh.dart @@ -1137,6 +1137,8 @@ class MessageLookup extends MessageLookupByLibrary { "在照片信息中添加“#旅游”等描述,以便在此处快速找到它们"), "searchDatesEmptySection": MessageLookupByLibrary.simpleMessage("按日期搜索,月份或年份"), + "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( + "Images will be shown here once processing is complete"), "searchFaceEmptySection": MessageLookupByLibrary.simpleMessage("待索引完成后,人物将显示在此处"), "searchFileTypesAndNamesEmptySection": diff --git a/mobile/lib/generated/l10n.dart b/mobile/lib/generated/l10n.dart index 625468eba7..072fe8472a 100644 --- a/mobile/lib/generated/l10n.dart +++ b/mobile/lib/generated/l10n.dart @@ -9925,6 +9925,16 @@ class S { args: [], ); } + + /// `Images will be shown here once processing is complete` + String get searchDiscoverEmptySection { + return Intl.message( + 'Images will be shown here once processing is complete', + name: 'searchDiscoverEmptySection', + desc: '', + args: [], + ); + } } class AppLocalizationDelegate extends LocalizationsDelegate { diff --git a/mobile/lib/l10n/intl_ar.arb b/mobile/lib/l10n/intl_ar.arb index f371a61c36..3ea9676ec0 100644 --- a/mobile/lib/l10n/intl_ar.arb +++ b/mobile/lib/l10n/intl_ar.arb @@ -25,5 +25,7 @@ "toResetVerifyEmail": "لإعادة تعيين كلمة المرور، يرجى التحقق من بريدك الإلكتروني أولاً.", "ackPasswordLostWarning": "أُدركُ أنّني فقدتُ كلمة مروري، فقد أفقد بياناتي لأن بياناتي مشفرة تشفيرًا تامًّا من النهاية إلى النهاية.", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_be.arb b/mobile/lib/l10n/intl_be.arb index 9eaea845ec..04ee0bec6f 100644 --- a/mobile/lib/l10n/intl_be.arb +++ b/mobile/lib/l10n/intl_be.arb @@ -201,5 +201,7 @@ "freeTrial": "Бясплатная пробная версія", "faqs": "Частыя пытанні", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_bg.arb b/mobile/lib/l10n/intl_bg.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_bg.arb +++ b/mobile/lib/l10n/intl_bg.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ca.arb b/mobile/lib/l10n/intl_ca.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_ca.arb +++ b/mobile/lib/l10n/intl_ca.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_cs.arb b/mobile/lib/l10n/intl_cs.arb index 47380fc3b6..f687466154 100644 --- a/mobile/lib/l10n/intl_cs.arb +++ b/mobile/lib/l10n/intl_cs.arb @@ -4,5 +4,7 @@ "incorrectRecoveryKeyBody": "", "checkInboxAndSpamFolder": "Zkontrolujte prosím svou doručenou poštu (a spam) pro dokončení ověření", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_da.arb b/mobile/lib/l10n/intl_da.arb index abc8d34fa1..af05ff2bb5 100644 --- a/mobile/lib/l10n/intl_da.arb +++ b/mobile/lib/l10n/intl_da.arb @@ -86,5 +86,7 @@ "next": "Næste", "enterPin": "Indtast PIN", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_de.arb b/mobile/lib/l10n/intl_de.arb index 03d670ab60..8da762b17a 100644 --- a/mobile/lib/l10n/intl_de.arb +++ b/mobile/lib/l10n/intl_de.arb @@ -1361,5 +1361,6 @@ "yesResetPerson": "Ja, Person zurücksetzen", "onlyThem": "Nur diese", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_el.arb b/mobile/lib/l10n/intl_el.arb index ac1eb831e6..3cbebecbf7 100644 --- a/mobile/lib/l10n/intl_el.arb +++ b/mobile/lib/l10n/intl_el.arb @@ -2,5 +2,7 @@ "@@locale ": "en", "enterYourEmailAddress": "Εισάγετε την διεύθυνση ηλ. ταχυδρομείου σας", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_en.arb b/mobile/lib/l10n/intl_en.arb index a5debb542a..f7c5a6e75e 100644 --- a/mobile/lib/l10n/intl_en.arb +++ b/mobile/lib/l10n/intl_en.arb @@ -1361,5 +1361,6 @@ "yesResetPerson": "Yes, reset person", "onlyThem": "Only them", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_es.arb b/mobile/lib/l10n/intl_es.arb index 1d0928fca4..a0b348e5c4 100644 --- a/mobile/lib/l10n/intl_es.arb +++ b/mobile/lib/l10n/intl_es.arb @@ -1345,5 +1345,6 @@ "loadingYourPhotos": "Cargando tus fotos...", "processingImport": "Procesando {folderName}...", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_et.arb b/mobile/lib/l10n/intl_et.arb index 8e5e6a92ed..ac2aefa042 100644 --- a/mobile/lib/l10n/intl_et.arb +++ b/mobile/lib/l10n/intl_et.arb @@ -220,5 +220,7 @@ "description": "Label to indicate how much storage you are using when you are part of a family plan" }, "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_fa.arb b/mobile/lib/l10n/intl_fa.arb index 29a87ba96c..8065416cfe 100644 --- a/mobile/lib/l10n/intl_fa.arb +++ b/mobile/lib/l10n/intl_fa.arb @@ -309,5 +309,7 @@ "whatsNew": "تغییرات جدید", "reviewSuggestions": "مرور پیشنهادها", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_fr.arb b/mobile/lib/l10n/intl_fr.arb index 3f1b2b5ed6..b183bc144f 100644 --- a/mobile/lib/l10n/intl_fr.arb +++ b/mobile/lib/l10n/intl_fr.arb @@ -1349,5 +1349,6 @@ "allPersonGroupingWillReset": "Tous les groupements pour cette personne seront réinitialisés, et vous perdrez toutes les suggestions faites pour cette personne", "yesResetPerson": "Oui, réinitialiser la personne", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_gu.arb b/mobile/lib/l10n/intl_gu.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_gu.arb +++ b/mobile/lib/l10n/intl_gu.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_he.arb b/mobile/lib/l10n/intl_he.arb index 171f0f4cdc..936d19f8aa 100644 --- a/mobile/lib/l10n/intl_he.arb +++ b/mobile/lib/l10n/intl_he.arb @@ -818,5 +818,7 @@ "viewAll": "הצג הכל", "hiding": "מחביא...", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_hi.arb b/mobile/lib/l10n/intl_hi.arb index 3d6bc0c35e..7c5dc9799d 100644 --- a/mobile/lib/l10n/intl_hi.arb +++ b/mobile/lib/l10n/intl_hi.arb @@ -50,5 +50,7 @@ "verifyEmail": "ईमेल सत्यापित करें", "toResetVerifyEmail": "अपना पासवर्ड रीसेट करने के लिए, कृपया पहले अपना ईमेल सत्यापित करें।", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_id.arb b/mobile/lib/l10n/intl_id.arb index b758ad7afa..f5eaa5ad55 100644 --- a/mobile/lib/l10n/intl_id.arb +++ b/mobile/lib/l10n/intl_id.arb @@ -1145,5 +1145,7 @@ "right": "Kanan", "whatsNew": "Hal yang baru", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_it.arb b/mobile/lib/l10n/intl_it.arb index d698526c93..6ea1a49d3f 100644 --- a/mobile/lib/l10n/intl_it.arb +++ b/mobile/lib/l10n/intl_it.arb @@ -1361,5 +1361,6 @@ "yesResetPerson": "Sì, resetta persona", "onlyThem": "Solo loro", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ja.arb b/mobile/lib/l10n/intl_ja.arb index b61bd4eaeb..22e28e63d5 100644 --- a/mobile/lib/l10n/intl_ja.arb +++ b/mobile/lib/l10n/intl_ja.arb @@ -1345,5 +1345,6 @@ "loadingYourPhotos": "写真を読み込んでいます...", "processingImport": "{folderName} を処理中...", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_km.arb b/mobile/lib/l10n/intl_km.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_km.arb +++ b/mobile/lib/l10n/intl_km.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ko.arb b/mobile/lib/l10n/intl_ko.arb index 10a0c441d4..0ad9164f8b 100644 --- a/mobile/lib/l10n/intl_ko.arb +++ b/mobile/lib/l10n/intl_ko.arb @@ -14,5 +14,7 @@ "deleteAccountPermanentlyButton": "계정을 영구적으로 삭제", "yourAccountHasBeenDeleted": "계정이 삭제되었습니다.", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_lt.arb b/mobile/lib/l10n/intl_lt.arb index fb419e9b67..a60b13547c 100644 --- a/mobile/lib/l10n/intl_lt.arb +++ b/mobile/lib/l10n/intl_lt.arb @@ -802,5 +802,7 @@ "yesResetPerson": "Taip, nustatyti asmenį iš naujo", "onlyThem": "Tik jiems", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_nl.arb b/mobile/lib/l10n/intl_nl.arb index 2c00bb0718..b2ca04afdd 100644 --- a/mobile/lib/l10n/intl_nl.arb +++ b/mobile/lib/l10n/intl_nl.arb @@ -1345,5 +1345,6 @@ "loadingYourPhotos": "Je foto's worden geladen...", "processingImport": "Verwerken van {folderName}...", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_no.arb b/mobile/lib/l10n/intl_no.arb index 5775677c35..6fc83d3bf9 100644 --- a/mobile/lib/l10n/intl_no.arb +++ b/mobile/lib/l10n/intl_no.arb @@ -373,5 +373,7 @@ "security": "Sikkerhet", "authToViewYourRecoveryKey": "Vennligst autentiser deg for å se gjennopprettingsnøkkelen din", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_pl.arb b/mobile/lib/l10n/intl_pl.arb index 5837abc41b..98abaf3d92 100644 --- a/mobile/lib/l10n/intl_pl.arb +++ b/mobile/lib/l10n/intl_pl.arb @@ -1360,5 +1360,6 @@ "allPersonGroupingWillReset": "Wszystkie grupy dla tej osoby zostaną zresetowane i stracisz wszystkie sugestie dla tej osoby", "yesResetPerson": "Tak, zresetuj osobę", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_pt.arb b/mobile/lib/l10n/intl_pt.arb index 3c6d5d28a8..cf336a9ef8 100644 --- a/mobile/lib/l10n/intl_pt.arb +++ b/mobile/lib/l10n/intl_pt.arb @@ -1361,5 +1361,6 @@ "yesResetPerson": "Sim, redefinir pessoa", "onlyThem": "Apenas eles", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ro.arb b/mobile/lib/l10n/intl_ro.arb index b83ae18460..be4b48f576 100644 --- a/mobile/lib/l10n/intl_ro.arb +++ b/mobile/lib/l10n/intl_ro.arb @@ -1094,5 +1094,6 @@ "enabled": "Activat", "moreDetails": "Mai multe detalii", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ru.arb b/mobile/lib/l10n/intl_ru.arb index 6559fb214e..eb447765d9 100644 --- a/mobile/lib/l10n/intl_ru.arb +++ b/mobile/lib/l10n/intl_ru.arb @@ -1302,5 +1302,6 @@ "guestView": "Гостевой вид", "guestViewEnablePreSteps": "Чтобы включить гостевой вид, настройте пароль устройства или блокировку экрана в настройках системы.", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_sl.arb b/mobile/lib/l10n/intl_sl.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_sl.arb +++ b/mobile/lib/l10n/intl_sl.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_sv.arb b/mobile/lib/l10n/intl_sv.arb index 6145982e61..6d981953d9 100644 --- a/mobile/lib/l10n/intl_sv.arb +++ b/mobile/lib/l10n/intl_sv.arb @@ -457,5 +457,7 @@ "addName": "Lägg till namn", "add": "Lägg till", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ta.arb b/mobile/lib/l10n/intl_ta.arb index e900512449..a3e14d5201 100644 --- a/mobile/lib/l10n/intl_ta.arb +++ b/mobile/lib/l10n/intl_ta.arb @@ -17,5 +17,7 @@ "deleteAccountPermanentlyButton": "கணக்கை நிரந்தரமாக நீக்கவும்", "deleteReason1": "எனக்கு தேவையான ஒரு முக்கிய அம்சம் இதில் இல்லை", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_te.arb b/mobile/lib/l10n/intl_te.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_te.arb +++ b/mobile/lib/l10n/intl_te.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_th.arb b/mobile/lib/l10n/intl_th.arb index e4862e1245..260d1e76be 100644 --- a/mobile/lib/l10n/intl_th.arb +++ b/mobile/lib/l10n/intl_th.arb @@ -297,5 +297,7 @@ "maps": "แผนที่", "enableMaps": "เปิดใช้งานแผนที่", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ti.arb b/mobile/lib/l10n/intl_ti.arb index 17136b96a6..d2e533e382 100644 --- a/mobile/lib/l10n/intl_ti.arb +++ b/mobile/lib/l10n/intl_ti.arb @@ -1,5 +1,7 @@ { "@@locale ": "en", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchPeopleEmptySection": "People will be shown here once processing is complete", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_tr.arb b/mobile/lib/l10n/intl_tr.arb index 2bae81401e..c40483e539 100644 --- a/mobile/lib/l10n/intl_tr.arb +++ b/mobile/lib/l10n/intl_tr.arb @@ -1171,5 +1171,6 @@ "endpointUpdatedMessage": "Fatura başarıyla güncellendi", "customEndpoint": "{endpoint}'e bağlanıldı", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_uk.arb b/mobile/lib/l10n/intl_uk.arb index 8c3c7ba1ab..b7229aac6b 100644 --- a/mobile/lib/l10n/intl_uk.arb +++ b/mobile/lib/l10n/intl_uk.arb @@ -1360,5 +1360,6 @@ "allPersonGroupingWillReset": "Усі групи для цієї особи будуть скинуті, і ви втратите всі пропозиції, зроблені для неї", "yesResetPerson": "Так, скинути особу", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_zh.arb b/mobile/lib/l10n/intl_zh.arb index 30a28cce31..3596891e3e 100644 --- a/mobile/lib/l10n/intl_zh.arb +++ b/mobile/lib/l10n/intl_zh.arb @@ -1345,5 +1345,6 @@ "loadingYourPhotos": "正在加载您的照片...", "processingImport": "正在处理 {folderName}...", "checkingModels": "Checking models...", - "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition" + "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", + "searchDiscoverEmptySection": "Images will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/models/search/search_types.dart b/mobile/lib/models/search/search_types.dart index cd66acdee7..5b21dc4e86 100644 --- a/mobile/lib/models/search/search_types.dart +++ b/mobile/lib/models/search/search_types.dart @@ -77,9 +77,9 @@ extension SectionTypeExtensions on SectionType { String getEmptyStateText(BuildContext context) { switch (this) { case SectionType.face: - return S.of(context).searchFaceEmptySection; + return S.of(context).searchPeopleEmptySection; case SectionType.magic: - return "Discover"; + return S.of(context).searchDiscoverEmptySection; case SectionType.moment: return S.of(context).searchDatesEmptySection; case SectionType.location: From 93986461ddce746ffd4a880d15d1a40510ee2ff7 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 15 Nov 2024 16:06:11 +0530 Subject: [PATCH 6/6] [mob][photos] Copy changes --- mobile/lib/generated/intl/messages_ar.dart | 2 ++ mobile/lib/generated/intl/messages_be.dart | 2 ++ mobile/lib/generated/intl/messages_bg.dart | 2 ++ mobile/lib/generated/intl/messages_ca.dart | 2 ++ mobile/lib/generated/intl/messages_cs.dart | 2 ++ mobile/lib/generated/intl/messages_da.dart | 2 ++ mobile/lib/generated/intl/messages_de.dart | 2 ++ mobile/lib/generated/intl/messages_el.dart | 2 ++ mobile/lib/generated/intl/messages_en.dart | 2 ++ mobile/lib/generated/intl/messages_es.dart | 2 ++ mobile/lib/generated/intl/messages_et.dart | 2 ++ mobile/lib/generated/intl/messages_fa.dart | 2 ++ mobile/lib/generated/intl/messages_fr.dart | 2 ++ mobile/lib/generated/intl/messages_gu.dart | 2 ++ mobile/lib/generated/intl/messages_he.dart | 2 ++ mobile/lib/generated/intl/messages_hi.dart | 2 ++ mobile/lib/generated/intl/messages_id.dart | 2 ++ mobile/lib/generated/intl/messages_it.dart | 2 ++ mobile/lib/generated/intl/messages_ja.dart | 2 ++ mobile/lib/generated/intl/messages_km.dart | 2 ++ mobile/lib/generated/intl/messages_ko.dart | 2 ++ mobile/lib/generated/intl/messages_lt.dart | 2 ++ mobile/lib/generated/intl/messages_nl.dart | 2 ++ mobile/lib/generated/intl/messages_no.dart | 2 ++ mobile/lib/generated/intl/messages_pl.dart | 2 ++ mobile/lib/generated/intl/messages_pt.dart | 2 ++ mobile/lib/generated/intl/messages_ro.dart | 2 ++ mobile/lib/generated/intl/messages_ru.dart | 2 ++ mobile/lib/generated/intl/messages_sl.dart | 2 ++ mobile/lib/generated/intl/messages_sv.dart | 2 ++ mobile/lib/generated/intl/messages_ta.dart | 2 ++ mobile/lib/generated/intl/messages_te.dart | 2 ++ mobile/lib/generated/intl/messages_th.dart | 2 ++ mobile/lib/generated/intl/messages_ti.dart | 2 ++ mobile/lib/generated/intl/messages_tr.dart | 2 ++ mobile/lib/generated/intl/messages_uk.dart | 2 ++ mobile/lib/generated/intl/messages_zh.dart | 2 ++ mobile/lib/generated/l10n.dart | 10 ++++++++++ mobile/lib/l10n/intl_ar.arb | 3 ++- mobile/lib/l10n/intl_be.arb | 3 ++- mobile/lib/l10n/intl_bg.arb | 3 ++- mobile/lib/l10n/intl_ca.arb | 3 ++- mobile/lib/l10n/intl_cs.arb | 3 ++- mobile/lib/l10n/intl_da.arb | 3 ++- mobile/lib/l10n/intl_de.arb | 3 ++- mobile/lib/l10n/intl_el.arb | 3 ++- mobile/lib/l10n/intl_en.arb | 3 ++- mobile/lib/l10n/intl_es.arb | 3 ++- mobile/lib/l10n/intl_et.arb | 3 ++- mobile/lib/l10n/intl_fa.arb | 3 ++- mobile/lib/l10n/intl_fr.arb | 3 ++- mobile/lib/l10n/intl_gu.arb | 3 ++- mobile/lib/l10n/intl_he.arb | 3 ++- mobile/lib/l10n/intl_hi.arb | 3 ++- mobile/lib/l10n/intl_id.arb | 3 ++- mobile/lib/l10n/intl_it.arb | 3 ++- mobile/lib/l10n/intl_ja.arb | 3 ++- mobile/lib/l10n/intl_km.arb | 3 ++- mobile/lib/l10n/intl_ko.arb | 3 ++- mobile/lib/l10n/intl_lt.arb | 3 ++- mobile/lib/l10n/intl_nl.arb | 3 ++- mobile/lib/l10n/intl_no.arb | 3 ++- mobile/lib/l10n/intl_pl.arb | 3 ++- mobile/lib/l10n/intl_pt.arb | 3 ++- mobile/lib/l10n/intl_ro.arb | 3 ++- mobile/lib/l10n/intl_ru.arb | 3 ++- mobile/lib/l10n/intl_sl.arb | 3 ++- mobile/lib/l10n/intl_sv.arb | 3 ++- mobile/lib/l10n/intl_ta.arb | 3 ++- mobile/lib/l10n/intl_te.arb | 3 ++- mobile/lib/l10n/intl_th.arb | 3 ++- mobile/lib/l10n/intl_ti.arb | 3 ++- mobile/lib/l10n/intl_tr.arb | 3 ++- mobile/lib/l10n/intl_uk.arb | 3 ++- mobile/lib/l10n/intl_zh.arb | 3 ++- mobile/lib/models/search/search_types.dart | 2 +- 76 files changed, 159 insertions(+), 38 deletions(-) diff --git a/mobile/lib/generated/intl/messages_ar.dart b/mobile/lib/generated/intl/messages_ar.dart index 1e772e9a1d..406efc0cce 100644 --- a/mobile/lib/generated/intl/messages_ar.dart +++ b/mobile/lib/generated/intl/messages_ar.dart @@ -56,6 +56,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "sorry": MessageLookupByLibrary.simpleMessage("المعذرة"), "terminate": MessageLookupByLibrary.simpleMessage("إنهاء"), "terminateSession": diff --git a/mobile/lib/generated/intl/messages_be.dart b/mobile/lib/generated/intl/messages_be.dart index 5dfdc901fa..9092285095 100644 --- a/mobile/lib/generated/intl/messages_be.dart +++ b/mobile/lib/generated/intl/messages_be.dart @@ -227,6 +227,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("Бяспека"), "selectAll": MessageLookupByLibrary.simpleMessage("Абраць усё"), "selectReason": diff --git a/mobile/lib/generated/intl/messages_bg.dart b/mobile/lib/generated/intl/messages_bg.dart index 6090389084..a23489ec1f 100644 --- a/mobile/lib/generated/intl/messages_bg.dart +++ b/mobile/lib/generated/intl/messages_bg.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_ca.dart b/mobile/lib/generated/intl/messages_ca.dart index b9dd77cc86..2b8f5a7ebc 100644 --- a/mobile/lib/generated/intl/messages_ca.dart +++ b/mobile/lib/generated/intl/messages_ca.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_cs.dart b/mobile/lib/generated/intl/messages_cs.dart index 8004045c76..a2a98616d5 100644 --- a/mobile/lib/generated/intl/messages_cs.dart +++ b/mobile/lib/generated/intl/messages_cs.dart @@ -34,6 +34,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_da.dart b/mobile/lib/generated/intl/messages_da.dart index f0a1e5f8b0..5c2005ea4d 100644 --- a/mobile/lib/generated/intl/messages_da.dart +++ b/mobile/lib/generated/intl/messages_da.dart @@ -124,6 +124,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Hurtig, søgning på enheden"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "selectReason": MessageLookupByLibrary.simpleMessage("Vælg årsag"), "selectedPhotos": m4, "sendEmail": MessageLookupByLibrary.simpleMessage("Send email"), diff --git a/mobile/lib/generated/intl/messages_de.dart b/mobile/lib/generated/intl/messages_de.dart index 0f4e19f9cf..1a22db95fe 100644 --- a/mobile/lib/generated/intl/messages_de.dart +++ b/mobile/lib/generated/intl/messages_de.dart @@ -1455,6 +1455,8 @@ class MessageLookup extends MessageLookupByLibrary { "Gruppiere Fotos, die innerhalb des Radius eines bestimmten Fotos aufgenommen wurden"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Laden Sie Personen ein, damit Sie geteilte Fotos hier einsehen können"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Sicherheit"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_el.dart b/mobile/lib/generated/intl/messages_el.dart index cd7cefc67d..e0b453fe8d 100644 --- a/mobile/lib/generated/intl/messages_el.dart +++ b/mobile/lib/generated/intl/messages_el.dart @@ -31,6 +31,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_en.dart b/mobile/lib/generated/intl/messages_en.dart index 79cda6fb51..50c3acbaf2 100644 --- a/mobile/lib/generated/intl/messages_en.dart +++ b/mobile/lib/generated/intl/messages_en.dart @@ -1390,6 +1390,8 @@ class MessageLookup extends MessageLookupByLibrary { "Group photos that are taken within some radius of a photo"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Invite people, and you\'ll see all photos shared by them here"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Security"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_es.dart b/mobile/lib/generated/intl/messages_es.dart index e095c5777c..4722d1b979 100644 --- a/mobile/lib/generated/intl/messages_es.dart +++ b/mobile/lib/generated/intl/messages_es.dart @@ -1440,6 +1440,8 @@ class MessageLookup extends MessageLookupByLibrary { "Agrupar las fotos que se tomaron cerca de la localización de una foto"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Invita a gente y verás todas las fotos compartidas aquí"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Seguridad"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_et.dart b/mobile/lib/generated/intl/messages_et.dart index e2cf2affdc..2e63ce3c96 100644 --- a/mobile/lib/generated/intl/messages_et.dart +++ b/mobile/lib/generated/intl/messages_et.dart @@ -211,6 +211,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("Turvalisus"), "selectAll": MessageLookupByLibrary.simpleMessage("Vali kõik"), "selectLanguage": MessageLookupByLibrary.simpleMessage("Vali keel"), diff --git a/mobile/lib/generated/intl/messages_fa.dart b/mobile/lib/generated/intl/messages_fa.dart index 5eb7669028..1971bbb14f 100644 --- a/mobile/lib/generated/intl/messages_fa.dart +++ b/mobile/lib/generated/intl/messages_fa.dart @@ -330,6 +330,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("امنیت"), "selectAll": MessageLookupByLibrary.simpleMessage("انتخاب همه"), "selectFoldersForBackup": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_fr.dart b/mobile/lib/generated/intl/messages_fr.dart index 41941d6b79..8ee6ddb2fc 100644 --- a/mobile/lib/generated/intl/messages_fr.dart +++ b/mobile/lib/generated/intl/messages_fr.dart @@ -1464,6 +1464,8 @@ class MessageLookup extends MessageLookupByLibrary { "Grouper les photos qui sont prises dans un certain angle d\'une photo"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Invitez des gens, et vous verrez ici toutes les photos qu\'ils partagent"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Sécurité"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_gu.dart b/mobile/lib/generated/intl/messages_gu.dart index c87e295b8a..bc1223bae1 100644 --- a/mobile/lib/generated/intl/messages_gu.dart +++ b/mobile/lib/generated/intl/messages_gu.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_he.dart b/mobile/lib/generated/intl/messages_he.dart index 68bb9df9b6..0bf3a2cd5e 100644 --- a/mobile/lib/generated/intl/messages_he.dart +++ b/mobile/lib/generated/intl/messages_he.dart @@ -748,6 +748,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("אבטחה"), "selectAlbum": MessageLookupByLibrary.simpleMessage("בחר אלבום"), "selectAll": MessageLookupByLibrary.simpleMessage("בחר הכל"), diff --git a/mobile/lib/generated/intl/messages_hi.dart b/mobile/lib/generated/intl/messages_hi.dart index a5cc80662b..9b895a3bce 100644 --- a/mobile/lib/generated/intl/messages_hi.dart +++ b/mobile/lib/generated/intl/messages_hi.dart @@ -93,6 +93,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "selectReason": MessageLookupByLibrary.simpleMessage("कारण चुनें"), "sendEmail": MessageLookupByLibrary.simpleMessage("ईमेल भेजें"), "somethingWentWrongPleaseTryAgain": diff --git a/mobile/lib/generated/intl/messages_id.dart b/mobile/lib/generated/intl/messages_id.dart index 4bb33304fd..16cc01c400 100644 --- a/mobile/lib/generated/intl/messages_id.dart +++ b/mobile/lib/generated/intl/messages_id.dart @@ -1193,6 +1193,8 @@ class MessageLookup extends MessageLookupByLibrary { "Segera tiba: Penelusuran wajah & ajaib ✨"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Keamanan"), "selectALocation": MessageLookupByLibrary.simpleMessage("Pilih lokasi"), diff --git a/mobile/lib/generated/intl/messages_it.dart b/mobile/lib/generated/intl/messages_it.dart index 2ea988ce06..fba3207714 100644 --- a/mobile/lib/generated/intl/messages_it.dart +++ b/mobile/lib/generated/intl/messages_it.dart @@ -1446,6 +1446,8 @@ class MessageLookup extends MessageLookupByLibrary { "Raggruppa foto scattate entro un certo raggio da una foto"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Invita persone e vedrai qui tutte le foto condivise da loro"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Sicurezza"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_ja.dart b/mobile/lib/generated/intl/messages_ja.dart index c72ea6645f..aca65c20cd 100644 --- a/mobile/lib/generated/intl/messages_ja.dart +++ b/mobile/lib/generated/intl/messages_ja.dart @@ -1220,6 +1220,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("当時の直近で撮影された写真をグループ化"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage("友達を招待すると、共有される写真はここから閲覧できます"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("セキュリティ"), "selectALocation": MessageLookupByLibrary.simpleMessage("場所を選択"), diff --git a/mobile/lib/generated/intl/messages_km.dart b/mobile/lib/generated/intl/messages_km.dart index 100cf69418..2c2c8454a6 100644 --- a/mobile/lib/generated/intl/messages_km.dart +++ b/mobile/lib/generated/intl/messages_km.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_ko.dart b/mobile/lib/generated/intl/messages_ko.dart index e4286ee7a6..f04fded67c 100644 --- a/mobile/lib/generated/intl/messages_ko.dart +++ b/mobile/lib/generated/intl/messages_ko.dart @@ -48,6 +48,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "verify": MessageLookupByLibrary.simpleMessage("인증"), "yourAccountHasBeenDeleted": MessageLookupByLibrary.simpleMessage("계정이 삭제되었습니다.") diff --git a/mobile/lib/generated/intl/messages_lt.dart b/mobile/lib/generated/intl/messages_lt.dart index da787568e6..5976a2645f 100644 --- a/mobile/lib/generated/intl/messages_lt.dart +++ b/mobile/lib/generated/intl/messages_lt.dart @@ -833,6 +833,8 @@ class MessageLookup extends MessageLookupByLibrary { "Grupės nuotraukos, kurios padarytos tam tikru spinduliu nuo nuotraukos"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "selectALocation": MessageLookupByLibrary.simpleMessage("Pasirinkite vietovę"), diff --git a/mobile/lib/generated/intl/messages_nl.dart b/mobile/lib/generated/intl/messages_nl.dart index fce47ff806..9024f6817f 100644 --- a/mobile/lib/generated/intl/messages_nl.dart +++ b/mobile/lib/generated/intl/messages_nl.dart @@ -1430,6 +1430,8 @@ class MessageLookup extends MessageLookupByLibrary { "Foto\'s groeperen die in een bepaalde straal van een foto worden genomen"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Nodig mensen uit, en je ziet alle foto\'s die door hen worden gedeeld hier"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Beveiliging"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_no.dart b/mobile/lib/generated/intl/messages_no.dart index 250c61eb0b..f4fc74d775 100644 --- a/mobile/lib/generated/intl/messages_no.dart +++ b/mobile/lib/generated/intl/messages_no.dart @@ -356,6 +356,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "security": MessageLookupByLibrary.simpleMessage("Sikkerhet"), "selectAll": MessageLookupByLibrary.simpleMessage("Velg alle"), "selectFoldersForBackup": MessageLookupByLibrary.simpleMessage( diff --git a/mobile/lib/generated/intl/messages_pl.dart b/mobile/lib/generated/intl/messages_pl.dart index 5778f31676..d4cf46daee 100644 --- a/mobile/lib/generated/intl/messages_pl.dart +++ b/mobile/lib/generated/intl/messages_pl.dart @@ -1446,6 +1446,8 @@ class MessageLookup extends MessageLookupByLibrary { "Grupuj zdjęcia zrobione w promieniu zdjęcia"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Zaproś ludzi, a zobaczysz tutaj wszystkie udostępnione przez nich zdjęcia"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Bezpieczeństwo"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_pt.dart b/mobile/lib/generated/intl/messages_pt.dart index 0e6b7b1a70..e4859e76ff 100644 --- a/mobile/lib/generated/intl/messages_pt.dart +++ b/mobile/lib/generated/intl/messages_pt.dart @@ -1440,6 +1440,8 @@ class MessageLookup extends MessageLookupByLibrary { "Fotos de grupo que estão sendo tiradas em algum raio da foto"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Convide pessoas e você verá todas as fotos compartilhadas por elas aqui"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Segurança"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_ro.dart b/mobile/lib/generated/intl/messages_ro.dart index 09609b3400..a170cb9d76 100644 --- a/mobile/lib/generated/intl/messages_ro.dart +++ b/mobile/lib/generated/intl/messages_ro.dart @@ -1182,6 +1182,8 @@ class MessageLookup extends MessageLookupByLibrary { "Grupare fotografii realizate în raza unei fotografii"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Invitați persoane și veți vedea aici toate fotografiile distribuite de acestea"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Securitate"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_ru.dart b/mobile/lib/generated/intl/messages_ru.dart index 6b9cf9f933..a1eff0f9c7 100644 --- a/mobile/lib/generated/intl/messages_ru.dart +++ b/mobile/lib/generated/intl/messages_ru.dart @@ -1372,6 +1372,8 @@ class MessageLookup extends MessageLookupByLibrary { "Групповые фотографии, сделанные в некотором радиусе от фотографии"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Пригласите людей, и вы увидите все фотографии, которыми они поделились здесь"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Безопасность"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_sl.dart b/mobile/lib/generated/intl/messages_sl.dart index 72e3aba9a4..81b60bd891 100644 --- a/mobile/lib/generated/intl/messages_sl.dart +++ b/mobile/lib/generated/intl/messages_sl.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_sv.dart b/mobile/lib/generated/intl/messages_sv.dart index be17ec8ab8..0e26a61abe 100644 --- a/mobile/lib/generated/intl/messages_sv.dart +++ b/mobile/lib/generated/intl/messages_sv.dart @@ -463,6 +463,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("Filtyper och namn"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "selectAlbum": MessageLookupByLibrary.simpleMessage("Välj album"), "selectLanguage": MessageLookupByLibrary.simpleMessage("Välj språk"), diff --git a/mobile/lib/generated/intl/messages_ta.dart b/mobile/lib/generated/intl/messages_ta.dart index 296e3ad91b..9141faf514 100644 --- a/mobile/lib/generated/intl/messages_ta.dart +++ b/mobile/lib/generated/intl/messages_ta.dart @@ -56,6 +56,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "verify": MessageLookupByLibrary.simpleMessage("சரிபார்க்கவும்") }; } diff --git a/mobile/lib/generated/intl/messages_te.dart b/mobile/lib/generated/intl/messages_te.dart index 9fd08625dd..055e89f535 100644 --- a/mobile/lib/generated/intl/messages_te.dart +++ b/mobile/lib/generated/intl/messages_te.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_th.dart b/mobile/lib/generated/intl/messages_th.dart index 1b23328542..1aa1e4bf69 100644 --- a/mobile/lib/generated/intl/messages_th.dart +++ b/mobile/lib/generated/intl/messages_th.dart @@ -292,6 +292,8 @@ class MessageLookup extends MessageLookupByLibrary { "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "selectAll": MessageLookupByLibrary.simpleMessage("เลือกทั้งหมด"), "selectReason": MessageLookupByLibrary.simpleMessage("เลือกเหตุผล"), "sendEmail": MessageLookupByLibrary.simpleMessage("ส่งอีเมล"), diff --git a/mobile/lib/generated/intl/messages_ti.dart b/mobile/lib/generated/intl/messages_ti.dart index ae38369d50..7761d43d9b 100644 --- a/mobile/lib/generated/intl/messages_ti.dart +++ b/mobile/lib/generated/intl/messages_ti.dart @@ -29,6 +29,8 @@ class MessageLookup extends MessageLookupByLibrary { "searchDiscoverEmptySection": MessageLookupByLibrary.simpleMessage( "Images will be shown here once processing is complete"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( "People will be shown here once processing is complete") }; } diff --git a/mobile/lib/generated/intl/messages_tr.dart b/mobile/lib/generated/intl/messages_tr.dart index 1b858247da..0f27c79538 100644 --- a/mobile/lib/generated/intl/messages_tr.dart +++ b/mobile/lib/generated/intl/messages_tr.dart @@ -1184,6 +1184,8 @@ class MessageLookup extends MessageLookupByLibrary { "Bir fotoğrafın belli bir yarıçapında çekilen fotoğrafları gruplandırın"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "İnsanları davet ettiğinizde onların paylaştığı tüm fotoğrafları burada göreceksiniz"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Güvenlik"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_uk.dart b/mobile/lib/generated/intl/messages_uk.dart index f9f2c56f98..78a875268c 100644 --- a/mobile/lib/generated/intl/messages_uk.dart +++ b/mobile/lib/generated/intl/messages_uk.dart @@ -1449,6 +1449,8 @@ class MessageLookup extends MessageLookupByLibrary { "Групові фотографії, які зроблені в певному радіусі від фотографії"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage( "Запросіть людей, і ви побачите всі фотографії, якими вони поділилися, тут"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("Безпека"), "selectALocation": diff --git a/mobile/lib/generated/intl/messages_zh.dart b/mobile/lib/generated/intl/messages_zh.dart index 005751d400..1f8f49fc33 100644 --- a/mobile/lib/generated/intl/messages_zh.dart +++ b/mobile/lib/generated/intl/messages_zh.dart @@ -1152,6 +1152,8 @@ class MessageLookup extends MessageLookupByLibrary { MessageLookupByLibrary.simpleMessage("在照片的一定半径内拍摄的几组照片"), "searchPeopleEmptySection": MessageLookupByLibrary.simpleMessage("邀请他人,您将在此看到他们分享的所有照片"), + "searchPersonsEmptySection": MessageLookupByLibrary.simpleMessage( + "People will be shown here once processing is complete"), "searchResultCount": m53, "security": MessageLookupByLibrary.simpleMessage("安全"), "selectALocation": MessageLookupByLibrary.simpleMessage("选择一个位置"), diff --git a/mobile/lib/generated/l10n.dart b/mobile/lib/generated/l10n.dart index 072fe8472a..a76cc59628 100644 --- a/mobile/lib/generated/l10n.dart +++ b/mobile/lib/generated/l10n.dart @@ -9935,6 +9935,16 @@ class S { args: [], ); } + + /// `People will be shown here once processing is complete` + String get searchPersonsEmptySection { + return Intl.message( + 'People will be shown here once processing is complete', + name: 'searchPersonsEmptySection', + desc: '', + args: [], + ); + } } class AppLocalizationDelegate extends LocalizationsDelegate { diff --git a/mobile/lib/l10n/intl_ar.arb b/mobile/lib/l10n/intl_ar.arb index 3ea9676ec0..66351279a9 100644 --- a/mobile/lib/l10n/intl_ar.arb +++ b/mobile/lib/l10n/intl_ar.arb @@ -27,5 +27,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_be.arb b/mobile/lib/l10n/intl_be.arb index 04ee0bec6f..5f02ccbf30 100644 --- a/mobile/lib/l10n/intl_be.arb +++ b/mobile/lib/l10n/intl_be.arb @@ -203,5 +203,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_bg.arb b/mobile/lib/l10n/intl_bg.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_bg.arb +++ b/mobile/lib/l10n/intl_bg.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ca.arb b/mobile/lib/l10n/intl_ca.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_ca.arb +++ b/mobile/lib/l10n/intl_ca.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_cs.arb b/mobile/lib/l10n/intl_cs.arb index f687466154..2ec71b9385 100644 --- a/mobile/lib/l10n/intl_cs.arb +++ b/mobile/lib/l10n/intl_cs.arb @@ -6,5 +6,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_da.arb b/mobile/lib/l10n/intl_da.arb index af05ff2bb5..44ea6e4f79 100644 --- a/mobile/lib/l10n/intl_da.arb +++ b/mobile/lib/l10n/intl_da.arb @@ -88,5 +88,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_de.arb b/mobile/lib/l10n/intl_de.arb index 8da762b17a..2fbb19fb3c 100644 --- a/mobile/lib/l10n/intl_de.arb +++ b/mobile/lib/l10n/intl_de.arb @@ -1362,5 +1362,6 @@ "onlyThem": "Nur diese", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_el.arb b/mobile/lib/l10n/intl_el.arb index 3cbebecbf7..9529a9c126 100644 --- a/mobile/lib/l10n/intl_el.arb +++ b/mobile/lib/l10n/intl_el.arb @@ -4,5 +4,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_en.arb b/mobile/lib/l10n/intl_en.arb index f7c5a6e75e..2c7b8701fd 100644 --- a/mobile/lib/l10n/intl_en.arb +++ b/mobile/lib/l10n/intl_en.arb @@ -1362,5 +1362,6 @@ "onlyThem": "Only them", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_es.arb b/mobile/lib/l10n/intl_es.arb index a0b348e5c4..0201a97f91 100644 --- a/mobile/lib/l10n/intl_es.arb +++ b/mobile/lib/l10n/intl_es.arb @@ -1346,5 +1346,6 @@ "processingImport": "Procesando {folderName}...", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_et.arb b/mobile/lib/l10n/intl_et.arb index ac2aefa042..1b373f56c1 100644 --- a/mobile/lib/l10n/intl_et.arb +++ b/mobile/lib/l10n/intl_et.arb @@ -222,5 +222,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_fa.arb b/mobile/lib/l10n/intl_fa.arb index 8065416cfe..e930a3fea9 100644 --- a/mobile/lib/l10n/intl_fa.arb +++ b/mobile/lib/l10n/intl_fa.arb @@ -311,5 +311,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_fr.arb b/mobile/lib/l10n/intl_fr.arb index b183bc144f..c51e658e2b 100644 --- a/mobile/lib/l10n/intl_fr.arb +++ b/mobile/lib/l10n/intl_fr.arb @@ -1350,5 +1350,6 @@ "yesResetPerson": "Oui, réinitialiser la personne", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_gu.arb b/mobile/lib/l10n/intl_gu.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_gu.arb +++ b/mobile/lib/l10n/intl_gu.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_he.arb b/mobile/lib/l10n/intl_he.arb index 936d19f8aa..d7a8caa57a 100644 --- a/mobile/lib/l10n/intl_he.arb +++ b/mobile/lib/l10n/intl_he.arb @@ -820,5 +820,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_hi.arb b/mobile/lib/l10n/intl_hi.arb index 7c5dc9799d..0442f70ccf 100644 --- a/mobile/lib/l10n/intl_hi.arb +++ b/mobile/lib/l10n/intl_hi.arb @@ -52,5 +52,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_id.arb b/mobile/lib/l10n/intl_id.arb index f5eaa5ad55..e69ab4d375 100644 --- a/mobile/lib/l10n/intl_id.arb +++ b/mobile/lib/l10n/intl_id.arb @@ -1147,5 +1147,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_it.arb b/mobile/lib/l10n/intl_it.arb index 6ea1a49d3f..e93524afa8 100644 --- a/mobile/lib/l10n/intl_it.arb +++ b/mobile/lib/l10n/intl_it.arb @@ -1362,5 +1362,6 @@ "onlyThem": "Solo loro", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ja.arb b/mobile/lib/l10n/intl_ja.arb index 22e28e63d5..f888cb4bec 100644 --- a/mobile/lib/l10n/intl_ja.arb +++ b/mobile/lib/l10n/intl_ja.arb @@ -1346,5 +1346,6 @@ "processingImport": "{folderName} を処理中...", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_km.arb b/mobile/lib/l10n/intl_km.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_km.arb +++ b/mobile/lib/l10n/intl_km.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ko.arb b/mobile/lib/l10n/intl_ko.arb index 0ad9164f8b..5233d7e229 100644 --- a/mobile/lib/l10n/intl_ko.arb +++ b/mobile/lib/l10n/intl_ko.arb @@ -16,5 +16,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_lt.arb b/mobile/lib/l10n/intl_lt.arb index a60b13547c..509760dd15 100644 --- a/mobile/lib/l10n/intl_lt.arb +++ b/mobile/lib/l10n/intl_lt.arb @@ -804,5 +804,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_nl.arb b/mobile/lib/l10n/intl_nl.arb index b2ca04afdd..ec4edad3da 100644 --- a/mobile/lib/l10n/intl_nl.arb +++ b/mobile/lib/l10n/intl_nl.arb @@ -1346,5 +1346,6 @@ "processingImport": "Verwerken van {folderName}...", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_no.arb b/mobile/lib/l10n/intl_no.arb index 6fc83d3bf9..6867ae4f9d 100644 --- a/mobile/lib/l10n/intl_no.arb +++ b/mobile/lib/l10n/intl_no.arb @@ -375,5 +375,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_pl.arb b/mobile/lib/l10n/intl_pl.arb index 98abaf3d92..cbdd2d0dc5 100644 --- a/mobile/lib/l10n/intl_pl.arb +++ b/mobile/lib/l10n/intl_pl.arb @@ -1361,5 +1361,6 @@ "yesResetPerson": "Tak, zresetuj osobę", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_pt.arb b/mobile/lib/l10n/intl_pt.arb index cf336a9ef8..fde2f7dd88 100644 --- a/mobile/lib/l10n/intl_pt.arb +++ b/mobile/lib/l10n/intl_pt.arb @@ -1362,5 +1362,6 @@ "onlyThem": "Apenas eles", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ro.arb b/mobile/lib/l10n/intl_ro.arb index be4b48f576..cce7c58181 100644 --- a/mobile/lib/l10n/intl_ro.arb +++ b/mobile/lib/l10n/intl_ro.arb @@ -1095,5 +1095,6 @@ "moreDetails": "Mai multe detalii", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ru.arb b/mobile/lib/l10n/intl_ru.arb index eb447765d9..d6cd0c285d 100644 --- a/mobile/lib/l10n/intl_ru.arb +++ b/mobile/lib/l10n/intl_ru.arb @@ -1303,5 +1303,6 @@ "guestViewEnablePreSteps": "Чтобы включить гостевой вид, настройте пароль устройства или блокировку экрана в настройках системы.", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_sl.arb b/mobile/lib/l10n/intl_sl.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_sl.arb +++ b/mobile/lib/l10n/intl_sl.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_sv.arb b/mobile/lib/l10n/intl_sv.arb index 6d981953d9..df8c5f9a85 100644 --- a/mobile/lib/l10n/intl_sv.arb +++ b/mobile/lib/l10n/intl_sv.arb @@ -459,5 +459,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ta.arb b/mobile/lib/l10n/intl_ta.arb index a3e14d5201..801f744453 100644 --- a/mobile/lib/l10n/intl_ta.arb +++ b/mobile/lib/l10n/intl_ta.arb @@ -19,5 +19,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_te.arb b/mobile/lib/l10n/intl_te.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_te.arb +++ b/mobile/lib/l10n/intl_te.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_th.arb b/mobile/lib/l10n/intl_th.arb index 260d1e76be..ee8d6bc635 100644 --- a/mobile/lib/l10n/intl_th.arb +++ b/mobile/lib/l10n/intl_th.arb @@ -299,5 +299,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_ti.arb b/mobile/lib/l10n/intl_ti.arb index d2e533e382..d97e7c81c2 100644 --- a/mobile/lib/l10n/intl_ti.arb +++ b/mobile/lib/l10n/intl_ti.arb @@ -3,5 +3,6 @@ "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", "searchPeopleEmptySection": "People will be shown here once processing is complete", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_tr.arb b/mobile/lib/l10n/intl_tr.arb index c40483e539..67e586bea6 100644 --- a/mobile/lib/l10n/intl_tr.arb +++ b/mobile/lib/l10n/intl_tr.arb @@ -1172,5 +1172,6 @@ "customEndpoint": "{endpoint}'e bağlanıldı", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_uk.arb b/mobile/lib/l10n/intl_uk.arb index b7229aac6b..55e7bb0b23 100644 --- a/mobile/lib/l10n/intl_uk.arb +++ b/mobile/lib/l10n/intl_uk.arb @@ -1361,5 +1361,6 @@ "yesResetPerson": "Так, скинути особу", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/l10n/intl_zh.arb b/mobile/lib/l10n/intl_zh.arb index 3596891e3e..9d8adfff12 100644 --- a/mobile/lib/l10n/intl_zh.arb +++ b/mobile/lib/l10n/intl_zh.arb @@ -1346,5 +1346,6 @@ "processingImport": "正在处理 {folderName}...", "checkingModels": "Checking models...", "enableMachineLearningBanner": "Enable machine learning for magic search and face recognition", - "searchDiscoverEmptySection": "Images will be shown here once processing is complete" + "searchDiscoverEmptySection": "Images will be shown here once processing is complete", + "searchPersonsEmptySection": "People will be shown here once processing is complete" } \ No newline at end of file diff --git a/mobile/lib/models/search/search_types.dart b/mobile/lib/models/search/search_types.dart index 5b21dc4e86..749d5e5dbc 100644 --- a/mobile/lib/models/search/search_types.dart +++ b/mobile/lib/models/search/search_types.dart @@ -77,7 +77,7 @@ extension SectionTypeExtensions on SectionType { String getEmptyStateText(BuildContext context) { switch (this) { case SectionType.face: - return S.of(context).searchPeopleEmptySection; + return S.of(context).searchPersonsEmptySection; case SectionType.magic: return S.of(context).searchDiscoverEmptySection; case SectionType.moment: