QT: tooltip for hovering over status bar produces "Last received block was generated %n second ago."
Many people have reported this on IRC, but I couldn't find an issue for it.
QT: tooltip for hovering over status bar produces "Last received block was generated %n second ago."
Many people have reported this on IRC, but I couldn't find an issue for it.
I don't get this. It can only come from:
text = tr("%n second(s) ago","",secs);
However, this is a valid usage according to http://developer.qt.nokia.com/doc/qt-4.8/linguist-programmers.html .
And I can't reproduce the problem either...
Edit: Ah, this happens when secs is smaller than 0. Interesting.