mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-13 16:39:43 -05:00
fixed translatable string with .arg (Req. From H. Morgan)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6387 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3b1bc50bd2
commit
2751543d1b
@ -486,7 +486,7 @@ void NetworkDialog::insertConnect()
|
||||
else if(last_time_used > 86400 * 15000)
|
||||
lst_used_str = tr("Never");
|
||||
else
|
||||
lst_used_str = QString::number( (int)( last_time_used / 86400 ))+" "+tr("days ago") ;
|
||||
lst_used_str = tr("%1 days ago").arg((int)( last_time_used / 86400 )) ;
|
||||
|
||||
item->setText(COLUMN_LAST_USED,lst_used_str) ;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user