Donation error string

This commit is contained in:
Grishka
2024-06-17 18:18:10 +03:00
parent 1c6da783ad
commit 960e54f4e6
2 changed files with 3 additions and 2 deletions

View File

@@ -75,8 +75,8 @@ public class DonationWebViewFragment extends WebViewFragment{
private void onFailure(){
new M3AlertDialogBuilder(getActivity())
.setTitle("Failure")
.setMessage("Some sort of UI that would tell the user that their payment didn't go through")
.setTitle(R.string.error)
.setMessage(R.string.donation_server_error)
.setPositiveButton(R.string.ok, null)
.setOnDismissListener(dlg->Nav.finish(this))
.show();