mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
doc: add bitcoin-qt man description
This commit is contained in:
parent
40b82e3ab0
commit
47f50c7af5
1 changed files with 5 additions and 2 deletions
|
@ -56,8 +56,11 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
|
||||||
ui->helpMessage->setVisible(false);
|
ui->helpMessage->setVisible(false);
|
||||||
} else {
|
} else {
|
||||||
setWindowTitle(tr("Command-line options"));
|
setWindowTitle(tr("Command-line options"));
|
||||||
QString header = "Usage: bitcoin-qt [command-line options] [URI]\n\n"
|
QString header = "The bitcoin-qt application provides a graphical interface for interacting with " CLIENT_NAME ".\n\n"
|
||||||
"Optional URI is a Bitcoin address in BIP21 URI format.\n";
|
"It combines the core functionalities of bitcoind with a user-friendly interface for wallet management, transaction history, and network statistics.\n\n"
|
||||||
|
"It is suitable for users who prefer a graphical over a command-line interface.\n\n"
|
||||||
|
"You can optionally specify a payment [URI], in e.g. the BIP21 URI format.\n\n"
|
||||||
|
"Usage: bitcoin-qt [options] [URI]\n\n";
|
||||||
QTextCursor cursor(ui->helpMessage->document());
|
QTextCursor cursor(ui->helpMessage->document());
|
||||||
cursor.insertText(version);
|
cursor.insertText(version);
|
||||||
cursor.insertBlock();
|
cursor.insertBlock();
|
||||||
|
|
Loading…
Reference in a new issue