1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dominik Riebeling 2012-02-19 00:17:26 +01:00
parent 9a25a6fe19
commit 8498e103d0
17 changed files with 65 additions and 65 deletions

View file

@ -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()));
}