aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-04-14 19:42:15 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-04-14 19:42:15 +0200
commit99ae01234d1dd3361a20b6fe759b26e51707115e (patch)
tree9faf07ed2ceeb80db8a6fe7a8bab8d411d91b2f5 /src
parentac89a1ebe7110051bd35fbbcdb706030f07d561e (diff)
downloadbitcoin-99ae01234d1dd3361a20b6fe759b26e51707115e.tar.xz
aboutdialog: use just "The Bitcoin developers" as tr()-string
- this ensures our new splash screen and this will share a translatable string an remove the need for an additional translation
Diffstat (limited to 'src')
-rw-r--r--src/qt/aboutdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/aboutdialog.cpp b/src/qt/aboutdialog.cpp
index 57818b8a27..cea8e98425 100644
--- a/src/qt/aboutdialog.cpp
+++ b/src/qt/aboutdialog.cpp
@@ -11,7 +11,7 @@ AboutDialog::AboutDialog(QWidget *parent) :
ui->setupUi(this);
// Set current copyright year
- ui->copyrightLabel->setText(tr("Copyright") + QString(" &copy; ") + tr("2009-%1 The Bitcoin developers").arg(COPYRIGHT_YEAR));
+ ui->copyrightLabel->setText(tr("Copyright") + QString(" &copy; 2009-%1 ").arg(COPYRIGHT_YEAR) + tr("The Bitcoin developers"));
}
void AboutDialog::setModel(ClientModel *model)