diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-26 00:40:03 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-26 00:40:03 +0200 |
commit | 90d50d668bdfe237b331808949617387adf6e790 (patch) | |
tree | 9c559eca84009c60ffab3326551df4833259305b /src/urlbar/rsswidget.cpp | |
parent | Fix crash (diff) | |
parent | fix typo + add colons (diff) | |
download | rekonq-90d50d668bdfe237b331808949617387adf6e790.tar.xz |
Merge commit 'refs/merge-requests/2252' of git://gitorious.org/rekonq/mainline into m2252
Diffstat (limited to 'src/urlbar/rsswidget.cpp')
-rw-r--r-- | src/urlbar/rsswidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlbar/rsswidget.cpp b/src/urlbar/rsswidget.cpp index 16e52ccf..62275a84 100644 --- a/src/urlbar/rsswidget.cpp +++ b/src/urlbar/rsswidget.cpp @@ -55,7 +55,7 @@ RSSWidget::RSSWidget(QMap< KUrl, QString > map, QWidget *parent) QLabel *agregator = new QLabel(this); - agregator->setText(i18n("Agregator")); + agregator->setText(i18n("Aggregator:")); m_agregators = new KComboBox(this); m_agregators->addItem(KIcon("application-rss+xml"), QString("Akregator")); @@ -65,7 +65,7 @@ RSSWidget::RSSWidget(QMap< KUrl, QString > map, QWidget *parent) QLabel *feed = new QLabel(this); - feed->setText(i18n("Feed")); + feed->setText(i18n("Feed:")); m_feeds = new KComboBox(this); foreach(QString title, m_map) |