|
|
|
@ -126,7 +126,7 @@ void Dolphin::dropURLs(const KURL::List& urls,
|
|
|
|
|
TDEPopupMenu popup(this);
|
|
|
|
|
|
|
|
|
|
popup.insertItem(SmallIcon("goto"), i18n("&Move Here") + "\t" + KKey::modFlagLabel(KKey::SHIFT), 0);
|
|
|
|
|
popup.insertItem(SmallIcon("editcopy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel(KKey::CTRL), 1);
|
|
|
|
|
popup.insertItem(SmallIcon("edit-copy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel(KKey::CTRL), 1);
|
|
|
|
|
popup.insertItem(i18n("&Link Here") + "\t" + KKey::modFlagLabel((KKey::ModFlag)(KKey::CTRL|KKey::SHIFT)), 2);
|
|
|
|
|
popup.insertSeparator();
|
|
|
|
|
popup.insertItem(SmallIcon("process-stop"), i18n("Cancel"), 3);
|
|
|
|
@ -549,7 +549,7 @@ void Dolphin::deleteItems()
|
|
|
|
|
const bool del = KMessageBox::warningContinueCancel(this,
|
|
|
|
|
text,
|
|
|
|
|
TQString(),
|
|
|
|
|
KGuiItem(i18n("Delete"), SmallIcon("editdelete"))
|
|
|
|
|
KGuiItem(i18n("Delete"), SmallIcon("edit-delete"))
|
|
|
|
|
) == KMessageBox::Continue;
|
|
|
|
|
if (del) {
|
|
|
|
|
TDEIO::Job* job = TDEIO::del(list);
|
|
|
|
@ -1193,7 +1193,7 @@ void Dolphin::setupActions()
|
|
|
|
|
TDEAction* deleteAction = new TDEAction(i18n("Delete"), "Shift+Delete",
|
|
|
|
|
TQT_TQOBJECT(this), TQT_SLOT(deleteItems()),
|
|
|
|
|
actionCollection(), "delete");
|
|
|
|
|
deleteAction->setIcon("editdelete");
|
|
|
|
|
deleteAction->setIcon("edit-delete");
|
|
|
|
|
|
|
|
|
|
new TDEAction(i18n("Propert&ies"), "Alt+Return",
|
|
|
|
|
TQT_TQOBJECT(this), TQT_SLOT(properties()),
|
|
|
|
|