Skip to content
Snippets Groups Projects
Commit a32d9f14 authored by Taras's avatar Taras
Browse files

Add remove email confirmation

parent bed2c1f2
No related branches found
No related tags found
No related merge requests found
......@@ -27,3 +27,9 @@ data class ResetKeys(
override val messageRes: Int = R.string.reset_keys_message,
override val positiveButtonRes: Int = org.futo.circles.auth.R.string.confirm
) : ConfirmationType(titleRes, messageRes, positiveButtonRes)
data class RemoveEmail(
override val titleRes: Int = R.string.remove_email,
override val messageRes: Int = R.string.remove_email_confirmation,
override val positiveButtonRes: Int = org.futo.circles.core.R.string.remove
) : ConfirmationType(titleRes, messageRes, positiveButtonRes)
......@@ -52,5 +52,8 @@
<string name="all_timeline_events_and_data_will_be_visible_in_timeline">All timeline events and data will be visible in timeline</string>
<string name="email_added">Email added</string>
<string name="email_removed">Email removed</string>
<string name="remove_email">Remove email</string>
<string name="remove_email_confirmation">Are you sure you want to remove this email address? Email is required for account recovery.</string>
</resources>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment