Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PyConsole / PyConsole_Console.cpp
index 54391474f585d3f3c57841cee5d05860284eceb3..79ae485e9f94c2d2a5c23b4ce36f706fc15ce069 100644 (file)
@@ -270,23 +270,23 @@ int PyConsole_Console::menuActions() const
 */
 void PyConsole_Console::createActions()
 {
-  QAction* a = new QAction( tr( "EDIT_COPY_CMD" ), this );
-  a->setStatusTip( tr( "EDIT_COPY_CMD" ) );
+  QAction* a = new QAction( tr( "&Copy" ), this );
+  a->setStatusTip( tr( "Copy" ) );
   connect( a, SIGNAL( triggered( bool ) ), myEditor, SLOT( copy() ) );
   myActions.insert( CopyId, a );
 
-  a = new QAction( tr( "EDIT_PASTE_CMD" ), this );
-  a->setStatusTip( tr( "EDIT_PASTE_CMD" ) );
+  a = new QAction( tr( "&Paste" ), this );
+  a->setStatusTip( tr( "Paste" ) );
   connect( a, SIGNAL( triggered( bool ) ), myEditor, SLOT( paste() ) );
   myActions.insert( PasteId, a );
 
-  a = new QAction( tr( "EDIT_CLEAR_CMD" ), this );
-  a->setStatusTip( tr( "EDIT_CLEAR_CMD" ) );
+  a = new QAction( tr( "Clea&r" ), this );
+  a->setStatusTip( tr( "Clear" ) );
   connect( a, SIGNAL( triggered( bool ) ), myEditor, SLOT( clear() ) );
   myActions.insert( ClearId, a );
 
-  a = new QAction( tr( "EDIT_SELECTALL_CMD" ), this );
-  a->setStatusTip( tr( "EDIT_SELECTALL_CMD" ) );
+  a = new QAction( tr( "Select &All" ), this );
+  a->setStatusTip( tr( "Select all" ) );
   connect( a, SIGNAL( triggered( bool ) ), myEditor, SLOT( selectAll() ) );
   myActions.insert( SelectAllId, a );