Rename root titles.

This commit is contained in:
Martin Rotter 2017-09-22 07:20:39 +02:00
parent df2ddd4f90
commit b452c0d3f7
4 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QPushButton" name="m_btnTestSetup"> <widget class="QPushButton" name="m_btnTestSetup">
<property name="text"> <property name="text">
<string>&amp;Test login</string> <string>&amp;Login</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@ -186,7 +186,7 @@ void OwnCloudServiceRoot::updateTitle() {
host = m_network->url(); host = m_network->url();
} }
setTitle(m_network->authUsername() + QL1S("@") + host + QSL(" (Nextcloud News)")); setTitle(m_network->authUsername() + QSL(" (Nextcloud News)"));
} }
void OwnCloudServiceRoot::saveAccountDataToDatabase() { void OwnCloudServiceRoot::saveAccountDataToDatabase() {

View File

@ -46,7 +46,7 @@ StandardServiceRoot::StandardServiceRoot(RootItem* parent)
: ServiceRoot(parent), : ServiceRoot(parent),
m_actionExportFeeds(nullptr), m_actionImportFeeds(nullptr), m_serviceMenu(QList<QAction*>()), m_actionExportFeeds(nullptr), m_actionImportFeeds(nullptr), m_serviceMenu(QList<QAction*>()),
m_feedContextMenu(QList<QAction*>()), m_actionFeedFetchMetadata(nullptr) { m_feedContextMenu(QList<QAction*>()), m_actionFeedFetchMetadata(nullptr) {
setTitle(qApp->system()->loggedInUser() + QL1S("@") + QL1S(APP_LOW_NAME)); setTitle(qApp->system()->loggedInUser() + tr(" (%1 classic account)").arg(APP_NAME));
setIcon(StandardServiceEntryPoint().icon()); setIcon(StandardServiceEntryPoint().icon());
setDescription(tr("This is obligatory service account for standard RSS/RDF/ATOM feeds.")); setDescription(tr("This is obligatory service account for standard RSS/RDF/ATOM feeds."));
} }

View File

@ -281,7 +281,7 @@ void TtRssServiceRoot::updateTitle() {
host = m_network->url(); host = m_network->url();
} }
setTitle(m_network->username() + QL1S("@") + host + QSL(" (Tiny Tiny RSS)")); setTitle(m_network->username() + QSL(" (Tiny Tiny RSS)"));
} }
RootItem* TtRssServiceRoot::obtainNewTreeForSyncIn() const { RootItem* TtRssServiceRoot::obtainNewTreeForSyncIn() const {