]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
NPAL 16561
authordmv <dmv@opencascade.com>
Thu, 18 Oct 2007 13:09:55 +0000 (13:09 +0000)
committerdmv <dmv@opencascade.com>
Thu, 18 Oct 2007 13:09:55 +0000 (13:09 +0000)
src/VISUGUI/VISU_msg_en.po
src/VISUGUI/VisuGUI.cxx
src/VISUGUI/VisuGUI_Module.cxx

index d443df1795f8667ff556627281764e5790a306f1..d3e9470d61c0120f759647e07bd4d459968df4c1 100644 (file)
@@ -296,8 +296,8 @@ msgstr "Cut Lines"
 msgid "VisuGUI::MEN_CUT_PLANES"
 msgstr "Cut Planes"
 
-msgid "VisuGUI::MEN_DISPLAY"
-msgstr "Display"
+msgid "VisuGUI::MEN_SHOW"
+msgstr "Show"
 
 msgid "VisuGUI::MEN_DISPLAY_ONLY"
 msgstr "Display Only"
@@ -311,8 +311,8 @@ msgstr "Edit..."
 msgid "VisuGUI::MEN_EDIT_PRS"
 msgstr "Edit..."
 
-msgid "VisuGUI::MEN_ERASE"
-msgstr "Erase"
+msgid "VisuGUI::MEN_HIDE"
+msgstr "Hide"
 
 msgid "VisuGUI::MEN_EXPORT_TABLE"
 msgstr "Export Table"
index 5b9a75c7c72f48a79959bd4892022cbd940cfe78..ae1bb860a11376e4ca6357d0cf1e88e6a0ef9ea7 100644 (file)
@@ -2213,12 +2213,12 @@ createActions()
                 tr("MEN_FREE_SCALAR_BARS"), "", 0, aParent, false,
                 this, SLOT(OnFreeScalarBars()));
 
-  createAction( VISU_ERASE, tr("MEN_ERASE"), QIconSet(),
-                tr("MEN_ERASE"), "", 0, aParent, false,
+  createAction( VISU_ERASE, tr("MEN_HIDE"), QIconSet(),
+                tr("MEN_HIDE"), "", 0, aParent, false,
                 this, SLOT(OnErasePrs()));
 
-  createAction( VISU_DISPLAY, tr("MEN_DISPLAY"), QIconSet(),
-                tr("MEN_DISPLAY"), "", 0, aParent, false,
+  createAction( VISU_DISPLAY, tr("MEN_SHOW"), QIconSet(),
+                tr("MEN_SHOW"), "", 0, aParent, false,
                 this, SLOT(OnDisplayPrs()));
 
   createAction( VISU_DISPLAY_ONLY, tr("MEN_DISPLAY_ONLY"), QIconSet(),
index 06beae6b31e980edee3dd8ffaf22c09fbd12ce7c..3419931f46e06874358a53696e23e8bc92f5182f 100644 (file)
@@ -328,15 +328,15 @@ initialize( CAM_Application* theApp )
 
   aRule = "(selcount>0 and type='VISU::TGAUSSPOINTS')";
 
-  createAction( GAUSS_ERASE_PRS, VisuGUI::tr("MEN_ERASE"), QIconSet(),
-                VisuGUI::tr("MEN_ERASE"), "", 0, this, false,
+  createAction( GAUSS_ERASE_PRS, VisuGUI::tr("MEN_HIDE"), QIconSet(),
+                VisuGUI::tr("MEN_HIDE"), "", 0, this, false,
                 this, SLOT(OnErasePrs()));
   mgr->insert( action( GAUSS_ERASE_PRS ), -1, -1, -1 ); // erase
   mgr->setRule( action( GAUSS_ERASE_PRS ), 
                aRule + " and ({true} in $canBeDisplayed) and (isVisible=true)", true );
 
-  createAction( GAUSS_DISPLAY_PRS, VisuGUI::tr("MEN_DISPLAY"), QIconSet(),
-                VisuGUI::tr("MEN_DISPLAY"), "", 0, this, false,
+  createAction( GAUSS_DISPLAY_PRS, VisuGUI::tr("MEN_SHOW"), QIconSet(),
+                VisuGUI::tr("MEN_SHOW"), "", 0, this, false,
                 this, SLOT(OnDisplayPrs()));
   mgr->insert( action( GAUSS_DISPLAY_PRS ), -1, -1, -1 ); // display
   mgr->setRule( action( GAUSS_DISPLAY_PRS ),