diff --git a/res/values/strings.xml b/res/values/strings.xml
index ec79baba5..706724cdf 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -480,6 +480,8 @@
Delta Chat requires the Microphone permission in order to send audio messages, but it has been permanently denied. Please continue to app settings, select \"Permissions\", and enable \"Microphone\".
Delta Chat requires the Storage permission in order to attach or export photos, videos, or audio, but it has been permanently denied. Please continue to the app settings menu, select \"Permissions\", and enable \"Storage\".
Delta Chat requires Location permission in order to attach a location, but it has been permanently denied. Please continue to the app settings menu, select \"Permissions\", and enable \"Location\".
+ Tap here to receive messages while Delta Chat is in background.
+ Delta Chat uses minimal resources and takes care not to drain your battery.
Belgian
diff --git a/src/org/thoughtcrime/securesms/components/reminder/DozeReminder.java b/src/org/thoughtcrime/securesms/components/reminder/DozeReminder.java
index e0ab84452..9efc77e0a 100644
--- a/src/org/thoughtcrime/securesms/components/reminder/DozeReminder.java
+++ b/src/org/thoughtcrime/securesms/components/reminder/DozeReminder.java
@@ -23,8 +23,8 @@ public class DozeReminder extends Reminder {
@RequiresApi(api = Build.VERSION_CODES.M)
public DozeReminder(@NonNull final Context context) {
- super("Tap here to receive messages while Delta Chat is in background.",
- "Delta Chat uses minimal resources and takes care not to drain your battery.");
+ super(context.getString(R.string.perm_enable_bg_reminder_title),
+ context.getString(R.string.perm_enable_bg_reminder_text));
setOkListener(v -> {
if(ContextCompat.checkSelfPermission(context, Manifest.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS)==PackageManager.PERMISSION_GRANTED) {