Some notification info update, lang reload.
This commit is contained in:
parent
6abe99ed54
commit
d9435bed41
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -21,6 +21,7 @@
|
||||
|
||||
Fixed:
|
||||
<ul>
|
||||
<li>Better info in popup notification when many feeds are updated.</li>
|
||||
<li>Fixed obtaining of contents in RSS 2.0 feed entries. (bug #130)</li>
|
||||
<li>Improved popup informing about changes in newly installed version.</li>
|
||||
<li>Icons in notification popups are now smaller (22 x 22 pixels).</li>
|
||||
|
@ -72,5 +72,11 @@ QString FeedDownloadResults::getOverview(int how_many_feeds) {
|
||||
result.append(m_updatedFeeds.at(i).first + QSL(": ") + QString::number(m_updatedFeeds.at(i).second));
|
||||
}
|
||||
|
||||
return result.join(QSL("\n"));
|
||||
QString res_str = result.join(QSL("\n"));
|
||||
|
||||
if (m_updatedFeeds.size() > how_many_feeds) {
|
||||
res_str += QObject::tr("\n\n+ %n other feeds.", 0, m_updatedFeeds.size() - how_many_feeds);
|
||||
}
|
||||
|
||||
return res_str;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user