translate this file
This commit is contained in:
parent
d161a64f59
commit
7607c6e4a8
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue