Browse Source

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
0.8
Philip Kaufmann 12 years ago
parent
commit
99ae01234d
  1. 2
      src/qt/aboutdialog.cpp

2
src/qt/aboutdialog.cpp

@ -11,7 +11,7 @@ AboutDialog::AboutDialog(QWidget *parent) : @@ -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)

Loading…
Cancel
Save