Assistant: Fix a name of a bookmarks folder
authorAlexander Volkov <a.volkov@rusbitech.ru>
Fri, 5 Sep 2014 11:06:28 +0000 (15:06 +0400)
committerKarsten Heimrich <karsten.heimrich@digia.com>
Thu, 11 Sep 2014 09:15:43 +0000 (11:15 +0200)
The folder named "Toolbar Menu" is meant to contain bookmarks which
are displayed on the bookmarks toolbar rather than in some menu.
So the name "Bookmarks Toolbar" is more appropriate, besides it is
consistent with Firefox and is similar to Chromium's "Bookmarks bar".

Change-Id: I1b1c359ee4ca02dcd34afff01326442c5d9b4459
Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
src/assistant/assistant/bookmarkmodel.cpp

index bc06776..c1485ca 100644 (file)
@@ -97,7 +97,7 @@ BookmarkModel::setBookmarks(const QByteArray &bookmarks)
     stream >> version;
     if (version < VERSION) {
         stream.device()->seek(0);
-        BookmarkItem* toolbar = new BookmarkItem(DataVector() << tr("Toolbar Menu")
+        BookmarkItem* toolbar = new BookmarkItem(DataVector() << tr("Bookmarks Toolbar")
             << QLatin1String("Folder") << true);
         rootItem->addChild(toolbar);