TF-831: implement Add a new recipient in forwarding
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
@@ -9,8 +9,8 @@ import 'package:tmail_ui_user/features/home/presentation/home_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/home/presentation/home_view.dart';
|
||||
import 'package:tmail_ui_user/features/identity_creator/presentation/identity_creator_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/identity_creator/presentation/identity_creator_view.dart' deferred as identity_creator;
|
||||
import 'package:tmail_ui_user/features/mails_forward_creator/presentation/emails_forward_creator_binding.dart';
|
||||
import 'package:tmail_ui_user/features/mails_forward_creator/presentation/emails_forward_creator_view.dart' deferred as emails_forward_creator;
|
||||
import 'package:tmail_ui_user/features/emails_forward_creator/presentation/emails_forward_creator_binding.dart';
|
||||
import 'package:tmail_ui_user/features/emails_forward_creator/presentation/emails_forward_creator_view.dart' deferred as emails_forward_creator;
|
||||
import 'package:tmail_ui_user/features/rules_filter_creator/presentation/rules_filter_creator_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/rules_filter_creator/presentation/rules_filter_creator_view.dart' deferred as rules_filter_creator;
|
||||
import 'package:tmail_ui_user/features/login/presentation/login_bindings.dart';
|
||||
|
||||
@@ -12,4 +12,5 @@ abstract class AppRoutes {
|
||||
static const MANAGE_ACCOUNT = '$MAILBOX_DASHBOARD/manage_account';
|
||||
static const IDENTITY_CREATOR = '$MANAGE_ACCOUNT/identity_creator';
|
||||
static const RULES_FILTER_CREATOR = '$MANAGE_ACCOUNT/rules_filter_creator';
|
||||
static const EMAILS_FORWARD_CREATOR = '$MANAGE_ACCOUNT/emails_forward_creator';
|
||||
}
|
||||
Reference in New Issue
Block a user