diff --git a/jami-android/app/src/main/res/layout/frag_settings.xml b/jami-android/app/src/main/res/layout/frag_settings.xml
index 693a45294dc253ef48d3bf821cd700a584da79f7..e244bce3b4352581b2a553d9cccb36de24411da2 100644
--- a/jami-android/app/src/main/res/layout/frag_settings.xml
+++ b/jami-android/app/src/main/res/layout/frag_settings.xml
@@ -560,7 +560,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
                         style="@style/ListSecondary"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
-                        android:text="@string/pref_pushNotifications_summary" />
+                        android:text="@string/pref_pushNotif_summary" />
 
                 </LinearLayout>
 
diff --git a/jami-android/app/src/main/res/values/strings_preferences.xml b/jami-android/app/src/main/res/values/strings_preferences.xml
index d5bf474f3bb5675b9d73f7cd08ba78cb99301e6d..84fa85b0e7e31e44d125e0aca30bdf7e437cb1c9 100644
--- a/jami-android/app/src/main/res/values/strings_preferences.xml
+++ b/jami-android/app/src/main/res/values/strings_preferences.xml
@@ -11,7 +11,9 @@
     <string name="pref_mobileData_summary">Allow Jami on 3G/LTE networks additionally to Wi-Fi</string>
 
     <string name="pref_pushNotifications_title">Push notifications</string>
+    <string name="pref_pushNotif_summary" translatable="false" />
     <string name="pref_pushNotifications_summary">Use Google servers to allow receiving calls/messages in the background</string>
+    <string name="pref_unifiedPush_summary">Use a UnifiedPush service to allow receiving calls/messages in the background</string>
 
     <string name="pref_video_advanced_title">Advanced video settings</string>
     <string name="pref_video_advanced_summary">Change the video bitrate, resolution, as well as access experimental features</string>
diff --git a/jami-android/app/src/withFirebase/res/values/strings_preferences.xml b/jami-android/app/src/withFirebase/res/values/strings_preferences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..25260d04c59db65394776bedf5d4d14d8ebeabe7
--- /dev/null
+++ b/jami-android/app/src/withFirebase/res/values/strings_preferences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+    <string name="pref_pushNotif_summary" translatable="false">@string/pref_pushNotifications_summary</string>
+
+</resources>
\ No newline at end of file
diff --git a/jami-android/app/src/withUnifiedPush/res/values/strings_preferences.xml b/jami-android/app/src/withUnifiedPush/res/values/strings_preferences.xml
new file mode 100644
index 0000000000000000000000000000000000000000..5eb698912783b152461ea118f5968740ea8f1107
--- /dev/null
+++ b/jami-android/app/src/withUnifiedPush/res/values/strings_preferences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+    <string name="pref_pushNotif_summary" translatable="false">@string/pref_unifiedPush_summary</string>
+
+</resources>
\ No newline at end of file