You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (model->wallet().privateKeysDisabled() && !model->wallet().hasExternalSigner()) {
332
+
/*: Text to inform a user attempting to create a transaction of their current options. At this stage,
333
+
a user can only create a PSBT. This string is displayed when private keys are disabled and an external
334
+
signer is not available. */
332
335
question_string.append(tr("Please, review your transaction proposal. This will produce a Partially Signed Bitcoin Transaction (PSBT) which you can save or copy and then sign with e.g. an offline %1 wallet, or a PSBT-compatible hardware wallet.").arg(PACKAGE_NAME));
/*: Text to inform a user attempting to create a transaction of their current options. At this stage,
338
+
a user can send their transaction or create a PSBT. This string is displayed when both private keys
339
+
and PSBT controls are enabled. */
340
+
question_string.append(tr("Please, review your transaction. You can create and send this transaction or create a Partially Signed Bitcoin Transaction (PSBT), which you can save or copy and then sign with, e.g., an offline %1 wallet, or a PSBT-compatible hardware wallet.").arg(PACKAGE_NAME));
333
341
} else {
342
+
/*: Text to prompt a user to review the details of the transaction they are attempting to send. */
334
343
question_string.append(tr("Please, review your transaction."));
0 commit comments