openfoodfacts / smooth-app

The new Open Food Facts mobile application for Android and iOS, crafted with Flutter and Dart

Home Page:https://world.openfoodfacts.org/open-food-facts-mobile-app?utm_source=off&utf_medium=web&utm_campaign=github-repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Untranslated string

teolemon opened this issue · comments

@teolemon Not sure what you mean. Flutter-wise, we're clean. The translation is not up-to-date, but that's a crowdin issue then, isn't it?

user_preferences_advanced_settings.dart

  static UserPreferencesItem getUserPreferencesItem(
    final BuildContext context,
  ) {
    final AppLocalizations appLocalizations = AppLocalizations.of(context);
    return UserPreferencesItemSimple(
      labels: <String>[
        appLocalizations.native_app_settings,
        appLocalizations.native_app_description,
      ],
      builder: (_) => const UserPreferencesAdvancedSettings(),
    );
  }

app_fr.arb

    "native_app_settings": "Paramètres natifs de l'application",
    "@native_app_settings": {
        "description": "Native App Settings in app settings"
    },
    "native_app_description": "Open system settings for Open Food Facts",
    "@native_app_description": {
        "description": "Native App description in app settings"
    },