diff options
| author | Luke Dashjr <[email protected]> | 2015-12-13 05:54:21 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-12-18 12:36:10 +0000 |
| commit | 1a6c67c8f507ad6918b6a27cab9eb734cc1d4bd4 (patch) | |
| tree | 3414d777abc4e569b71ba9c444098ef147ccf8b4 /src/qt/splashscreen.cpp | |
| parent | Unify package name to as few places as possible without major changes (diff) | |
| download | discoin-1a6c67c8f507ad6918b6a27cab9eb734cc1d4bd4.tar.xz discoin-1a6c67c8f507ad6918b6a27cab9eb734cc1d4bd4.zip | |
Parameterise 2009 in translatable copyright strings
Diffstat (limited to 'src/qt/splashscreen.cpp')
| -rw-r--r-- | src/qt/splashscreen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 339b68442..ad8d7b3f2 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -44,7 +44,7 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) // define text to place QString titleText = tr(PACKAGE_NAME); QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion())); - QString copyrightText = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The %1 developers").arg(tr(PACKAGE_NAME))); + QString copyrightText = QChar(0xA9)+QString(" %1-%2 ").arg(2009).arg(COPYRIGHT_YEAR) + QString(tr("The %1 developers").arg(tr(PACKAGE_NAME))); QString titleAddText = networkStyle->getTitleAddText(); QString font = QApplication::font().toString(); |