TF-2877 Create new notification icon & texts

This commit is contained in:
DatDang
2024-06-04 10:01:13 +07:00
committed by Dat H. Pham
parent 640b100f21
commit 2652a99e0e
4 changed files with 84 additions and 0 deletions
+36
View File
@@ -3873,5 +3873,41 @@
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"notification": "Notification",
"@notification": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"notificationsDisabled": "Notifications disabled",
"@notificationsDisabled": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"pleaseAllowNotifications": "Please allow notifications from Twake Mail in the device's Settings",
"@pleaseAllowNotifications": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"goToSettings": "Go to Settings",
"@goToSettings": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Allows Twake Mail to notify you when a new message arrives on your phone",
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"showNotifications": "Show Notifications",
"@showNotifications": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
}
}
@@ -4043,4 +4043,46 @@ class AppLocalizations {
'Show less',
name: 'showLess');
}
String get notification {
return Intl.message(
'Notification',
name: 'notification',
);
}
String get notificationsDisabled {
return Intl.message(
'Notifications disabled',
name: 'notificationsDisabled',
);
}
String get pleaseAllowNotifications {
return Intl.message(
'Please allow notifications from Twake Mail in the device\'s Settings',
name: 'pleaseAllowNotifications',
);
}
String get goToSettings {
return Intl.message(
'Go to Settings',
name: 'goToSettings',
);
}
String get allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone {
return Intl.message(
'Allows Twake Mail to notify you when a new message arrives on your phone',
name: 'allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone',
);
}
String get showNotifications {
return Intl.message(
'Show Notifications',
name: 'showNotifications',
);
}
}