diff --git a/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/CreateProfileFragment.java b/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/CreateProfileFragment.java index fddf6c0cb8..3901c75443 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/CreateProfileFragment.java +++ b/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/CreateProfileFragment.java @@ -288,9 +288,11 @@ public class CreateProfileFragment extends LoggingFragment { private void presentWhoCanFindMeDescription(PhoneNumberPrivacyValues.PhoneNumberDiscoverabilityMode phoneNumberListingMode) { switch (phoneNumberListingMode) { case DISCOVERABLE: + binding.whoCanFindMeIcon.setImageResource(R.drawable.symbol_group_24); binding.whoCanFindMeDescription.setText(R.string.PhoneNumberPrivacy_everyone); break; case NOT_DISCOVERABLE: + binding.whoCanFindMeIcon.setImageResource(R.drawable.symbol_lock_24); binding.whoCanFindMeDescription.setText(R.string.PhoneNumberPrivacy_nobody); break; } diff --git a/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/pnp/WhoCanFindMeByPhoneNumberFragment.kt b/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/pnp/WhoCanFindMeByPhoneNumberFragment.kt index fd1ec71992..222c681f74 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/pnp/WhoCanFindMeByPhoneNumberFragment.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/profiles/edit/pnp/WhoCanFindMeByPhoneNumberFragment.kt @@ -70,8 +70,8 @@ class WhoCanFindMeByPhoneNumberFragment : DSLSettingsFragment( textPref( title = DSLSettingsText.from( when (state) { - WhoCanFindMeByPhoneNumberState.EVERYONE -> R.string.WhoCanSeeMyPhoneNumberFragment__anyone_who_has - WhoCanFindMeByPhoneNumberState.NOBODY -> R.string.WhoCanSeeMyPhoneNumberFragment__nobody_on_signal + WhoCanFindMeByPhoneNumberState.EVERYONE -> R.string.WhoCanSeeMyPhoneNumberFragment__anyone_who_has_your + WhoCanFindMeByPhoneNumberState.NOBODY -> R.string.WhoCanSeeMyPhoneNumberFragment__nobody_will_be_able }, DSLSettingsText.TextAppearanceModifier(R.style.Signal_Text_BodyMedium), DSLSettingsText.ColorModifier(ContextCompat.getColor(requireContext(), R.color.signal_colorOnSurfaceVariant)) diff --git a/app/src/main/res/layout/who_can_find_me_by_phone_number_fragment.xml b/app/src/main/res/layout/who_can_find_me_by_phone_number_fragment.xml index 4280e3fec7..f9ca1a2b23 100644 --- a/app/src/main/res/layout/who_can_find_me_by_phone_number_fragment.xml +++ b/app/src/main/res/layout/who_can_find_me_by_phone_number_fragment.xml @@ -24,7 +24,7 @@ android:layout_height="wrap_content" android:layout_marginEnd="@dimen/dsl_settings_gutter" android:layout_marginBottom="16dp" - android:text="@string/RegistrationActivity_next" + android:text="@string/save" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" /> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 91e8f89a51..81088bb76c 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -608,9 +608,9 @@ Who can find me by number? - Anyone who has your phone number in their contacts will see you as a contact on Signal. Others will be able to find you with your number in search. + Anyone who has your phone number will see you\'re on Signal and can start chats with you. - Nobody on Signal will be able to find you with your phone number. + Nobody will be able to see you\'re on Signal unless you message them or have an existing chat with them. Restore from backup?