1
0
Fork 0

translate this file

This commit is contained in:
Torusrxxx 2016-05-20 07:45:06 +00:00
parent d161a64f59
commit 7607c6e4a8
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ void TimeWastedCounter::updateTimeWastedCounter()
int hours = (timeWasted / (60 * 60)) % 24;
int minutes = (timeWasted / 60) % 60;
int seconds = timeWasted % 60;
mLabel->setText(QString().sprintf("Time Wasted Debugging: %d:%02d:%02d:%02d", days, hours, minutes, seconds));
mLabel->setText(tr("Time Wasted Debugging:") + QString().sprintf(" %d:%02d:%02d:%02d", days, hours, minutes, seconds));
}