diff --git a/app/src/main/java/eu/faircode/email/ApplicationEx.java b/app/src/main/java/eu/faircode/email/ApplicationEx.java
index f4f5cd8fdd..e7934599b6 100644
--- a/app/src/main/java/eu/faircode/email/ApplicationEx.java
+++ b/app/src/main/java/eu/faircode/email/ApplicationEx.java
@@ -327,6 +327,7 @@ public class ApplicationEx extends Application {
NotificationChannel service = new NotificationChannel(
"service", getString(R.string.channel_service),
NotificationManager.IMPORTANCE_MIN);
+ service.setDescription(getString(R.string.channel_service_description));
service.setSound(null, Notification.AUDIO_ATTRIBUTES_DEFAULT);
service.setShowBadge(false);
service.setLockscreenVisibility(Notification.VISIBILITY_SECRET);
@@ -336,6 +337,7 @@ public class ApplicationEx extends Application {
NotificationChannel send = new NotificationChannel(
"send", getString(R.string.channel_send),
NotificationManager.IMPORTANCE_DEFAULT);
+ send.setDescription(getString(R.string.channel_send_description));
send.setSound(null, Notification.AUDIO_ATTRIBUTES_DEFAULT);
send.setShowBadge(false);
send.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
@@ -345,6 +347,7 @@ public class ApplicationEx extends Application {
NotificationChannel notification = new NotificationChannel(
"notification", getString(R.string.channel_notification),
NotificationManager.IMPORTANCE_HIGH);
+ notification.setDescription(getString(R.string.channel_notification_description));
notification.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
notification.enableLights(true);
notification.setLightColor(Color.YELLOW);
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index b68399ec74..4ec07de3dc 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -19,6 +19,10 @@
Server alerts
Contacts
+ Synchronizing and monitoring of accounts
+ Sending of messages
+ New message notifications
+
- Conversation
- Conversations