TF-831: implement Add a new recipient in forwarding

This commit is contained in:
ManhNTX
2022-08-20 20:45:27 +07:00
committed by Dat H. Pham
parent 04b530a4b9
commit 3c85f1d5ed
29 changed files with 615 additions and 536 deletions
+14 -8
View File
@@ -1946,10 +1946,10 @@ class AppLocalizations {
name: 'yourFilterHasBeenUpdated');
}
String get headerEmailsForward {
String get headerRecipients {
return Intl.message(
'Emails forward',
name: 'headerEmailsForward',
'Recipients',
name: 'headerRecipients',
);
}
@@ -2134,17 +2134,23 @@ class AppLocalizations {
);
}
String get addEmailForward {
String get addRecipients {
return Intl.message(
'Add Email',
name: 'addEmailForward',
'Add Recipients',
name: 'addRecipients',
);
}
String get emailForwardLabel {
String get recipientsLabel {
return Intl.message(
'Name or Email address',
name: 'emailForwardLabel',
name: 'recipientsLabel',
);
}
String get toastMessageAddRecipientsSuccessfully {
return Intl.message(
'The emails has been added from the recipient list.',
name: 'toastMessageAddRecipientsSuccessfully');
}
}