diff options
| author | Stephan Binner <[email protected]> | 2007-04-04 21:11:21 +0000 |
|---|---|---|
| committer | Stephan Binner <[email protected]> | 2007-04-04 21:11:21 +0000 |
| commit | c209c33cdd3624ca3cf6e9daadad3d7938c8f37b (patch) | |
| tree | ae152997d3923fa1de2321e330d3d86362a63cc0 /src/dolphincontextmenu.cpp | |
| parent | 9ded114ceb0b021aed051f99cc7dd2ba28490782 (diff) | |
i18n style guide fixes
svn path=/trunk/KDE/kdebase/apps/; revision=650575
Diffstat (limited to 'src/dolphincontextmenu.cpp')
| -rw-r--r-- | src/dolphincontextmenu.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index e825a5a61..5d0bd4adb 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -160,10 +160,10 @@ void DolphinContextMenu::openItemContextMenu() popup->addSeparator(); - // insert 'Bookmark this folder' entry if exactly one item is selected + // insert 'Bookmark This Folder' entry if exactly one item is selected QAction* bookmarkAction = 0; if (m_fileInfo->isDir() && (m_selectedUrls.count() == 1)) { - bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark folder")); + bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark Folder...")); } // Insert 'Open With...' sub menu @@ -183,7 +183,7 @@ void DolphinContextMenu::openItemContextMenu() if ((bookmarkAction!= 0) && (activatedAction == bookmarkAction)) { const KUrl selectedUrl(m_fileInfo->url()); - KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add folder as bookmark"), + KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add Folder as Bookmark"), selectedUrl.fileName(), selectedUrl, "bookmark"); @@ -247,10 +247,10 @@ void DolphinContextMenu::openViewportContextMenu() popup->addMenu(viewModeMenu); popup->addSeparator(); - QAction* bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark this folder")); + QAction* bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark This Folder...")); popup->addSeparator(); - QAction* propertiesAction = popup->addAction(i18n("Properties...")); + QAction* propertiesAction = popup->addAction(i18n("Properties")); QAction* activatedAction = popup->exec(QCursor::pos()); if (activatedAction == propertiesAction) { @@ -258,7 +258,7 @@ void DolphinContextMenu::openViewportContextMenu() } else if (activatedAction == bookmarkAction) { const KUrl& url = m_mainWindow->activeView()->url(); - KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add folder as bookmark"), + KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add Folder as Bookmark"), url.fileName(), url, "bookmark"); |
