From b197bfe8f2cd10ccddb4755a366d58aeb3e91183 Mon Sep 17 00:00:00 2001 From: Liefu Liu Date: Wed, 5 Feb 2025 08:49:17 -0800 Subject: [PATCH] Updated the Contacts Storage Settings' bottom line text. Bug: 394335832 Test: unit test and manual test Flag: EXEMPTED modified: res/values/strings.xml modified: tests/robotests/src/com/android/settings/applications/contacts/ContactsStorageSettingsTest.java Change-Id: Ibde23352a6c64ff7ea546e2fd5ef9468398829f7 --- res/values/strings.xml | 2 +- .../applications/contacts/ContactsStorageSettingsTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index 483eb130658..4727c40d1ff 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -14080,7 +14080,7 @@ Device only - New contacts won\'t be synced with an account + Contacts may not sync or be available on your other devices Contacts will be saved to your device and synced to your account by default diff --git a/tests/robotests/src/com/android/settings/applications/contacts/ContactsStorageSettingsTest.java b/tests/robotests/src/com/android/settings/applications/contacts/ContactsStorageSettingsTest.java index d99dd30d419..0abacec1d19 100644 --- a/tests/robotests/src/com/android/settings/applications/contacts/ContactsStorageSettingsTest.java +++ b/tests/robotests/src/com/android/settings/applications/contacts/ContactsStorageSettingsTest.java @@ -155,7 +155,7 @@ public class ContactsStorageSettingsTest { assertThat(deviceOnlyPreference.getTitle()).isEqualTo("Device only"); assertThat(deviceOnlyPreference.getSummary()).isEqualTo( - "New contacts won't be synced with an account"); + "Contacts may not sync or be available on your other devices"); assertThat(deviceOnlyPreference.getOrder()).isEqualTo(999); assertThat(mContactsStorageSettings.findPreference( PREF_KEY_ACCOUNT_CATEGORY).getTitle()).isEqualTo("Where to save contacts");