View Single Post
Posts: 10 | Thanked: 4 times | Joined on Jan 2011
#627
Code:
ui->playlistTimeLabel->setText(total + " " + tr("total"));
suggests changed like this
Code:
 ui->playlistTimeLabel->setText(tr("%s total",total));
because in some language it displays "xxx %s" ..

sorry my poor english
 

The Following User Says Thank You to microjo For This Useful Post: