i18n: disambiguation contexts.

svn path=/trunk/KDE/kdepim/; revision=893266
wilder-work
Chusslove Illich 18 years ago
parent 483427ed27
commit 552de667ca
  1. 2
      kmmainwidget.cpp
  2. 2
      kmreadermainwin.cpp

@ -3713,7 +3713,7 @@ void KMMainWidget::setupActions()
mTrashAction = new KAction(i18n("&Move to Trash"), this);
actionCollection()->addAction("move_to_trash", mTrashAction );
mTrashAction->setIcon(KIcon("user-trash"));
mTrashAction->setIconText( i18n( "Trash" ) );
mTrashAction->setIconText( i18nc( "@action:intoolbar Move to Trash", "Trash" ) );
mTrashAction->setShortcut(QKeySequence(Qt::Key_Delete));
mTrashAction->setToolTip(i18n("Move message to trashcan"));
connect(mTrashAction, SIGNAL(triggered(bool)), SLOT(slotTrashMsg()));

@ -277,7 +277,7 @@ void KMReaderMainWin::setupAccel()
connect( mSaveAtmAction, SIGNAL(triggered(bool)), mReaderWin, SLOT(slotSaveAttachments()) );
mTrashAction = new KAction( KIcon( "user-trash" ), i18n("&Move to Trash"), this );
mTrashAction->setIconText( i18n( "Trash" ) );
mTrashAction->setIconText( i18nc( "@action:intoolbar Move to Trash", "Trash" ) );
mTrashAction->setToolTip( i18n( "Move message to trashcan" ) );
mTrashAction->setShortcut( QKeySequence( Qt::Key_Delete ) );
actionCollection()->addAction( "move_to_trash", mTrashAction );

Loading…
Cancel
Save