TF-4141 Add the AI needs-action option into the user settings.

This commit is contained in:
dab246
2025-12-23 01:13:17 +07:00
committed by Dat H. Pham
parent cb0471ecb7
commit 1661210e04
19 changed files with 171 additions and 35 deletions
@@ -5478,4 +5478,25 @@ class AppLocalizations {
name: 'youDoNotHaveAnyActionRequiredEmails',
);
}
String get aiNeedsAction {
return Intl.message(
'AI needs-action',
name: 'aiNeedsAction',
);
}
String get aiNeedsActionToggleDescription {
return Intl.message(
'Enable AI needs-action',
name: 'aiNeedsActionToggleDescription',
);
}
String get aiNeedsActionSettingExplanation {
return Intl.message(
'Detect emails that need your attention using AI. When turned off, AI will not process any emails.',
name: 'aiNeedsActionSettingExplanation',
);
}
}