TF-2084 Change title for multi actions + add action hint, error text

(cherry picked from commit 4087e8225520239de9f9451f05a7486f244b2a1d)
This commit is contained in:
hieubt
2023-09-29 16:05:17 +07:00
committed by Dat Vu
parent 9816742b2c
commit 751c48f742
2 changed files with 55 additions and 3 deletions
+26 -2
View File
@@ -1,5 +1,5 @@
{ {
"@@last_modified": "2023-09-24T22:04:38.879050", "@@last_modified": "2023-09-29T10:43:27.382543",
"initializing_data": "Initializing data...", "initializing_data": "Initializing data...",
"@initializing_data": { "@initializing_data": {
"type": "text", "type": "text",
@@ -1848,7 +1848,7 @@
"placeholders_order": [], "placeholders_order": [],
"placeholders": {} "placeholders": {}
}, },
"actionTitleRulesFilter": "Perform the following action:", "actionTitleRulesFilter": "Perform the following actions:",
"@actionTitleRulesFilter": { "@actionTitleRulesFilter": {
"type": "text", "type": "text",
"placeholders_order": [], "placeholders_order": [],
@@ -3385,5 +3385,29 @@
"type": "text", "type": "text",
"placeholders_order": [], "placeholders_order": [],
"placeholders": {} "placeholders": {}
},
"forwardEmailHintText": "Add forwarding address",
"@forwardEmailHintText": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"addAction": "Add action",
"@addAction": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"duplicatedActionError": "This action is already added",
"@duplicatedActionError": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"notSelectedMailboxToMoveMessage": "Please select a mailbox to move the message",
"@notSelectedMailboxToMoveMessage": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
} }
} }
+29 -1
View File
@@ -1891,7 +1891,7 @@ class AppLocalizations {
String get actionTitleRulesFilter { String get actionTitleRulesFilter {
return Intl.message( return Intl.message(
'Perform the following action:', 'Perform the following actions:',
name: 'actionTitleRulesFilter'); name: 'actionTitleRulesFilter');
} }
@@ -3498,4 +3498,32 @@ class AppLocalizations {
name: 'selectAction', name: 'selectAction',
); );
} }
String get forwardEmailHintText {
return Intl.message(
'Add forwarding address',
name: 'forwardEmailHintText',
);
}
String get addAction {
return Intl.message(
'Add action',
name: 'addAction',
);
}
String get duplicatedActionError {
return Intl.message(
'This action is already added',
name: 'duplicatedActionError',
);
}
String get notSelectedMailboxToMoveMessage {
return Intl.message(
'Please select a mailbox to move the message',
name: 'notSelectedMailboxToMoveMessage',
);
}
} }