From 99ae01234d1dd3361a20b6fe759b26e51707115e Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 14 Apr 2013 19:42:15 +0200 Subject: [PATCH] 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 --- src/qt/aboutdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/aboutdialog.cpp b/src/qt/aboutdialog.cpp index 57818b8a2..cea8e9842 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(" © ") + tr("2009-%1 The Bitcoin developers").arg(COPYRIGHT_YEAR)); + ui->copyrightLabel->setText(tr("Copyright") + QString(" © 2009-%1 ").arg(COPYRIGHT_YEAR) + tr("The Bitcoin developers")); } void AboutDialog::setModel(ClientModel *model)