feat: if profile delete confirm text is mismatched then show toast #110
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "septs/OpenEUICC:profile-delete-unmatched-toast"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
10ca93bc14
toe080e029eb
e080e029eb
tof415468e38
f415468e38
tod6f5161c34
@ -27,3 +30,4 @@
}
}
private val iccid: String
There's no point having these two vals just to
get() = requireArguments()...
. Usingby lazy
might be more appropriate if that's the aim.@ -61,0 +78,4 @@
requireContext(),
getString(R.string.toast_profile_delete_unmatched, name),
Toast.LENGTH_LONG
)
.also { show() }
removes the need for!!
@ -29,6 +29,7 @@
<string name="toast_profile_enable_failed">Cannot switch to new eSIM profile.</string>
<string name="toast_profile_name_too_long">Nickname cannot be longer than 64 characters</string>
<string name="toast_profile_delete_unmatched">The string you entered is not \'%s\', please check your input</string>
unmatched -> mismatched
"Confirmation string mismatch" should be enough as a toast.
feat: if profile delete confirm text is unmatched then show toastto feat: if profile delete confirm text is mismatched then show toast