diff --git a/packages/smooth_app/lib/l10n/app_en.arb b/packages/smooth_app/lib/l10n/app_en.arb index 7cc4f69934a..884cc740c29 100644 --- a/packages/smooth_app/lib/l10n/app_en.arb +++ b/packages/smooth_app/lib/l10n/app_en.arb @@ -2665,6 +2665,7 @@ "faq_title_install_beauty": "Install Open Beauty Facts to create a cosmetic database", "faq_title_install_pet": "Install Open Pet Food Facts to create a pet food database", "faq_title_install_product": "Install Open Products Facts to create a products database to extend the life of objects", + "faq_nutriscore_nutriscore": "New calculation of the Nutri-Score: what's new?", "contact_title_pro_page": "Pro? Import your products in Open Food Facts", "contact_title_pro_email": "Producer Contact", "contact_title_press_page": "Press Page", diff --git a/packages/smooth_app/lib/pages/preferences/user_preferences_faq.dart b/packages/smooth_app/lib/pages/preferences/user_preferences_faq.dart index 4f95d18e362..53a523f6999 100644 --- a/packages/smooth_app/lib/pages/preferences/user_preferences_faq.dart +++ b/packages/smooth_app/lib/pages/preferences/user_preferences_faq.dart @@ -66,7 +66,7 @@ class UserPreferencesFaq extends AbstractUserPreferences { ), ), _getListTile( - title: appLocalizations.nutriscore_generic, + title: appLocalizations.faq_nutriscore_nutriscore, leadingSvg: SvgCache.getAssetsCacheForNutriscore( NutriScoreValue.b, true, @@ -76,6 +76,12 @@ class UserPreferencesFaq extends AbstractUserPreferences { builder: (BuildContext context) => const GuideNutriscoreV2(), ), ), + + /// Hide the icon + icon: const Icon( + Icons.info, + size: 0.0, + ), ), _getNutriListTile( title: appLocalizations.ecoscore_generic,