This commit is contained in:
Hillel Coren 2021-02-28 20:59:13 +02:00
parent db6f201131
commit 31a042950d
2 changed files with 13 additions and 0 deletions

View File

@ -1245,6 +1245,10 @@ abstract class InvitationEntity extends Object
InvitationEntity._();
static const EMAIL_STATUS_DELIVERED = 'delivered';
static const EMAIL_STATUS_BOUNCED = 'bounced';
static const EMAIL_STATUS_SPAM = 'spam';
@override
@memoized
int get hashCode;

View File

@ -15,6 +15,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
static final Map<String, Map<String, String>> _localizedValues = {
'en': {
// STARTER: lang key - do not remove comment
'delivered': 'Delivered',
'bounced': 'Bounced',
'spam': 'Spam',
'view_docs': 'View Docs',
'enter_phone_to_enable_two_factor':
'Please provide a mobile phone number to enable two factor authentication',
@ -55071,6 +55074,12 @@ mixin LocalizationsProvider on LocaleCodeAware {
String get viewDocs => _localizedValues[localeCode]['view_docs'] ?? '';
String get delivered => _localizedValues[localeCode]['delivered'] ?? '';
String get bounced => _localizedValues[localeCode]['bounced'] ?? '';
String get spam => _localizedValues[localeCode]['spam'] ?? '';
String lookup(String key) {
final lookupKey = toSnakeCase(key);