TF-934 Add page not found

This commit is contained in:
dab246
2022-11-11 02:17:03 +07:00
committed by Dat H. Pham
parent 71abe0cf37
commit 7160fee763
11 changed files with 263 additions and 7 deletions
@@ -2569,4 +2569,22 @@ class AppLocalizations {
'Create a rule with this email',
name: 'quickCreatingRule');
}
String get titlePageNotFound {
return Intl.message(
'Oops, we cant find that page',
name: 'titlePageNotFound');
}
String get subTitlePageNotFound {
return Intl.message(
'It is possible that your destination page has disappeared or belongs to another account.',
name: 'subTitlePageNotFound');
}
String get page404 {
return Intl.message(
'Page 404',
name: 'page404');
}
}