summaryrefslogtreecommitdiffstats
path: root/rbutil/rbutilqt/installwindow.cpp
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-02-19 00:17:26 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-02-19 11:21:14 +0100
commit8498e103d0b6c0f464846703f766bdf7463565f0 (patch)
treeaba00dd3f2a43c30e871d9e251281ae829b04133 /rbutil/rbutilqt/installwindow.cpp
parent9a25a6fe19bc798bb7d90ec63e3c54bd8c2892cd (diff)
downloadrockbox-8498e103d0b6c0f464846703f766bdf7463565f0.tar.gz
rockbox-8498e103d0b6c0f464846703f766bdf7463565f0.zip
Remove "r" prefix for version information.
Since we don't have revision numbers anymore remove the "r" prefix when showing the version information to the user. Change-Id: I1e36b11a23301dda9fe67bb284489510c65567d8
Diffstat (limited to 'rbutil/rbutilqt/installwindow.cpp')
-rw-r--r--rbutil/rbutilqt/installwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/installwindow.cpp b/rbutil/rbutilqt/installwindow.cpp
index bc1566ea77..584b014ae8 100644
--- a/rbutil/rbutilqt/installwindow.cpp
+++ b/rbutil/rbutilqt/installwindow.cpp
@@ -275,7 +275,7 @@ void InstallWindow::setDetailsCurrent(bool show)
if(show) {
ui.labelDetails->setText(tr("This is the absolute up to the minute "
"Rockbox built. A current build will get updated every time "
- "a change is made. Latest version is r%1 (%2).")
+ "a change is made. Latest version is %1 (%2).")
.arg(ServerInfo::value(ServerInfo::BleedingRevision).toString(),
ServerInfo::value(ServerInfo::BleedingDate).toString()));
if(ServerInfo::value(ServerInfo::CurReleaseVersion).toString().isEmpty())
@@ -309,7 +309,7 @@ void InstallWindow::setDetailsArchived(bool show)
"from the current development source code. This generally has more "
"features than the last stable release but may be much less stable. "
"Features may change regularly."));
- ui.labelNote->setText(tr("<b>Note:</b> archived version is r%1 (%2).")
+ ui.labelNote->setText(tr("<b>Note:</b> archived version is %1 (%2).")
.arg(ServerInfo::value(ServerInfo::DailyRevision).toString(),
ServerInfo::value(ServerInfo::DailyDate).toString()));
}