TF-235 Add presentation for rename a mailbox

This commit is contained in:
dab246
2022-02-25 10:36:31 +07:00
committed by Dat H. Pham
parent 79a7b45142
commit f658b8cd6e
11 changed files with 476 additions and 8 deletions
@@ -702,4 +702,24 @@ class AppLocalizations {
args: [nameMailbox]
);
}
String get rename_mailbox {
return Intl.message(
'Rename mailbox',
name: 'rename_mailbox');
}
String get this_field_cannot_be_blank {
return Intl.message(
'This field cannot be blank',
name: 'this_field_cannot_be_blank',
);
}
String get there_is_already_folder_with_the_same_name {
return Intl.message(
'There is already folder with the same name',
name: 'there_is_already_folder_with_the_same_name',
);
}
}