mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-17 18:40:09 +00:00
Merge pull request #1323 from Diapolo/string_fixes
translation updates / string updates
This commit is contained in:
commit
563f3efda3
@ -149,7 +149,7 @@ HelpMessageBox::HelpMessageBox(QWidget *parent):
|
|||||||
header = tr("Bitcoin-Qt") + " " + tr("version") + " " +
|
header = tr("Bitcoin-Qt") + " " + tr("version") + " " +
|
||||||
QString::fromStdString(FormatFullVersion()) + "\n\n" +
|
QString::fromStdString(FormatFullVersion()) + "\n\n" +
|
||||||
tr("Usage:") + "\n" +
|
tr("Usage:") + "\n" +
|
||||||
" bitcoin-qt [options] " + "\n";
|
" bitcoin-qt [" + tr("options") + "] " + "\n";
|
||||||
coreOptions = QString::fromStdString(HelpMessage());
|
coreOptions = QString::fromStdString(HelpMessage());
|
||||||
uiOptions = tr("UI options") + ":\n" +
|
uiOptions = tr("UI options") + ":\n" +
|
||||||
" -lang=<lang> " + tr("Set language, for example \"de_DE\" (default: system locale)") + "\n" +
|
" -lang=<lang> " + tr("Set language, for example \"de_DE\" (default: system locale)") + "\n" +
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Sign Message Dialog</string>
|
<string>Sign Message</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<item>
|
<item>
|
||||||
|
@ -209,9 +209,9 @@ void RPCConsole::clear()
|
|||||||
"b { color: #006060; } "
|
"b { color: #006060; } "
|
||||||
);
|
);
|
||||||
|
|
||||||
message(CMD_REPLY, tr("Welcome to the Bitcoin RPC console.<br>"
|
message(CMD_REPLY, (tr("Welcome to the Bitcoin RPC console.") + "<br>" +
|
||||||
"Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.<br>"
|
tr("Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.") + "<br>" +
|
||||||
"Type <b>help</b> for an overview of available commands."), true);
|
tr("Type <b>help</b> for an overview of available commands.")), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RPCConsole::message(int category, const QString &message, bool html)
|
void RPCConsole::message(int category, const QString &message, bool html)
|
||||||
|
@ -25,7 +25,7 @@ VerifyMessageDialog::VerifyMessageDialog(AddressTableModel *addressModel, QWidge
|
|||||||
#if (QT_VERSION >= 0x040700)
|
#if (QT_VERSION >= 0x040700)
|
||||||
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
|
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
|
||||||
ui->lnSig->setPlaceholderText(tr("Enter Bitcoin signature"));
|
ui->lnSig->setPlaceholderText(tr("Enter Bitcoin signature"));
|
||||||
ui->lnAddress->setPlaceholderText(tr("Click \"Apply\" to obtain address"));
|
ui->lnAddress->setPlaceholderText(tr("Click \"Verify Message\" to obtain address"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
GUIUtil::setupAddressWidget(ui->lnAddress, this);
|
GUIUtil::setupAddressWidget(ui->lnAddress, this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user