diff --git a/apps/flipcash/core/src/main/res/values/strings.xml b/apps/flipcash/core/src/main/res/values/strings.xml index 013f48346..d90d40120 100644 --- a/apps/flipcash/core/src/main/res/values/strings.xml +++ b/apps/flipcash/core/src/main/res/values/strings.xml @@ -967,18 +967,20 @@ + and someone else can claim it — the only one of the four the user may not be able to undo, + so the only one shown in the red banner. The rest state what the change does and confirm in + the grey one. --> Change Display Name? - Are you sure you want to permanently change your display name? + This will change your display name Change Display Name Change Username? Are you sure you want to permanently change your username? You might not be able to get your old username back Change Username Change Profile Picture? - Are you sure you want to permanently change your profile picture? + This will change your profile picture Change Profile Picture Change Minimum Tip? - Are you sure you want to permanently change your minimum tip? + This will change your minimum tip Change Minimum Tip diff --git a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt index e7008056f..2248dc158 100644 --- a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt +++ b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt @@ -173,7 +173,7 @@ internal class MinimumTipEntryViewModel @Inject constructor( dispatchEvent(Event.CommitRequested(amount)) return@onEach } - BottomBarManager.showAlert( + BottomBarManager.showMessage( title = resources.getString(R.string.prompt_title_changeMinimumTip), message = resources.getString(R.string.prompt_description_changeMinimumTip), actions = listOf( diff --git a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/name/NameEntryViewModel.kt b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/name/NameEntryViewModel.kt index 828747a19..821fe07d1 100644 --- a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/name/NameEntryViewModel.kt +++ b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/name/NameEntryViewModel.kt @@ -110,7 +110,7 @@ class NameEntryViewModel @Inject constructor( dispatchEvent(Event.CheckName(event.source)) return@onEach } - BottomBarManager.showAlert( + BottomBarManager.showMessage( title = resources.getString(R.string.prompt_title_changeDisplayName), message = resources.getString(R.string.prompt_description_changeDisplayName), actions = listOf( diff --git a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/photo/PhotoSelectionViewModel.kt b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/photo/PhotoSelectionViewModel.kt index 7730af93f..63bd92d30 100644 --- a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/photo/PhotoSelectionViewModel.kt +++ b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/photo/PhotoSelectionViewModel.kt @@ -138,7 +138,7 @@ class PhotoSelectionViewModel @Inject constructor( dispatchEvent(Event.CheckImage) return@onEach } - BottomBarManager.showAlert( + BottomBarManager.showMessage( title = resources.getString(R.string.prompt_title_changeProfilePicture), message = resources.getString(R.string.prompt_description_changeProfilePicture), actions = listOf(