Skip to content

Commit

Permalink
Android: change "sign transaction" to "save transaction":
Browse files Browse the repository at this point in the history
The number of reports we had of people clicking it in watching-only wallets (#2032), I think many of them must have assumed it was the normal send command. Also, this wording is more consistent with the desktop app, and makes clear the relationship with "load transaction".
  • Loading branch information
mhsmith committed Feb 14, 2021
1 parent 9ba7895 commit 4755a41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class SendDialog : TaskLauncherDialog<Unit>() {
builder.setTitle(R.string.send)
.setPositiveButton(R.string.send, null)
} else {
builder.setTitle(R.string.sign_transaction)
builder.setTitle(R.string.save_transaction)
.setPositiveButton(R.string.sign, null)
}
builder.setView(R.layout.send)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
_("Rename wallet")
_("Request")
_("Restore from seed")
_("Save transaction")
_("Show seed")
_("Sign transaction")
_("Size")
_("Signed transaction")
_("The string you entered has been broadcast. Please check your transactions for confirmation.")
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/res/menu/wallet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<item
android:id="@+id/menuExportSigned"
android:title="@string/sign_transaction"/>
android:title="@string/save_transaction"/>

<item
android:id="@+id/menuLoadSigned"
Expand Down

0 comments on commit 4755a41

Please sign in to comment.