diff --git a/doc/salome/gui/GEOM/input/working_with_groups.doc b/doc/salome/gui/GEOM/input/working_with_groups.doc
index 5e5a814a4..a2ef93fc9 100644
--- a/doc/salome/gui/GEOM/input/working_with_groups.doc
+++ b/doc/salome/gui/GEOM/input/working_with_groups.doc
@@ -25,14 +25,14 @@ group (points, wires, faces, shells or solids).
default, it is Group_n.
Then, using the "Select" button, select the Main Shape (a
geometrical object on which the group will be created).
- Select Sub-Shapes button group lets you restrict the range
+ Main Shape Selection restriction button group lets you restrict the range
of group elements you operate with.
-- \b All button enables work with all sub-shapes of the Main
+
- No restriction button enables work with all sub-shapes of the Main
Shape.
-- In Place of Second Shape restricts the range of accessible
+
- Geometrical parts of the Second Shape restricts the range of accessible
elements to those sub-shapes of the Main Shape that geometrically
coincide with the Second Shape.
-- Sub-Shapes of Second Shape restricts the range of
+
- Only Sub-Shapes of the Second Shape restricts the range of
accessible elements to those sub-shapes of the Main Shape that
are sub-shapes of Second Shape. This is useful because
sometimes purely geometrical coincidence is not enough and it
@@ -50,7 +50,7 @@ button.
- Clicking Select All button you can add all object's
elements of a certain type in the list of the elements of the
group. If the Second Shape is used, the elements are added
-according to Select Sub Shapes setting. To delete elements
+according to Main Shape Selection restriction settings. To delete elements
from the list, select them and click \b Remove button.
diff --git a/src/GEOMGUI/GEOM_msg_en.po b/src/GEOMGUI/GEOM_msg_en.po
index 500ae02b0..20cd3b673 100644
--- a/src/GEOMGUI/GEOM_msg_en.po
+++ b/src/GEOMGUI/GEOM_msg_en.po
@@ -1952,17 +1952,17 @@ msgstr "Main Shape And Sub-Shapes"
msgid "GroupGUI_GroupDlg::MAIN_SHAPE"
msgstr "Main Shape"
-msgid "GroupGUI_GroupDlg::SELECT_SUB_SHAPES"
-msgstr "Select Sub-Shapes"
+msgid "GroupGUI_GroupDlg::SHAPE_SEL_RESTR"
+msgstr "Main Shape Selection restriction"
-msgid "GroupGUI_GroupDlg::ALL_SUBSHAPES"
-msgstr "All"
+msgid "GroupGUI_GroupDlg::NO_RESTR"
+msgstr "No restriction"
-msgid "GroupGUI_GroupDlg::GET_IN_PLACE"
-msgstr "In Place of Second Shape"
+msgid "GroupGUI_GroupDlg::GEOM_PARTS_OF_SHAPE2"
+msgstr "Geometrical parts of the Second Shape"
msgid "GroupGUI_GroupDlg::SUBSHAPES_OF_SHAPE2"
-msgstr "Sub-Shapes of Second Shape"
+msgstr "Only Sub-Shapes of the Second Shape"
msgid "GroupGUI_GroupDlg::SECOND_SHAPE"
msgstr "Second Shape"
diff --git a/src/GroupGUI/GroupGUI_GroupDlg.cxx b/src/GroupGUI/GroupGUI_GroupDlg.cxx
index 39ecac735..65ac46503 100644
--- a/src/GroupGUI/GroupGUI_GroupDlg.cxx
+++ b/src/GroupGUI/GroupGUI_GroupDlg.cxx
@@ -107,11 +107,11 @@ GroupGUI_GroupDlg::GroupGUI_GroupDlg(Mode mode, GeometryGUI* theGeometryGUI, QWi
//mySelSubBtn = new QRadioButton ( tr( "SELECT_SUB_SHAPES" ), aFrame );
//myPlaceCheckBox = new QCheckBox ( tr( "GET_IN_PLACE" ), aFrame );
- mySelectionWayGroup = new QButtonGroup(1, Qt::Horizontal, tr("SELECT_SUB_SHAPES"),aFrame);
+ mySelectionWayGroup = new QButtonGroup(1, Qt::Horizontal, tr("SHAPE_SEL_RESTR"),aFrame);
mySelectionWayGroup->setExclusive(true);
- QRadioButton* allSubs = new QRadioButton(tr("ALL_SUBSHAPES") ,mySelectionWayGroup);
- QRadioButton* inPlaceSubs = new QRadioButton(tr("GET_IN_PLACE") ,mySelectionWayGroup);
- QRadioButton* shape2Subs = new QRadioButton(tr("SUBSHAPES_OF_SHAPE2"),mySelectionWayGroup);
+ QRadioButton* allSubs = new QRadioButton(tr("NO_RESTR") ,mySelectionWayGroup);
+ QRadioButton* inPlaceSubs = new QRadioButton(tr("GEOM_PARTS_OF_SHAPE2"),mySelectionWayGroup);
+ QRadioButton* shape2Subs = new QRadioButton(tr("SUBSHAPES_OF_SHAPE2") ,mySelectionWayGroup);
mySelectionWayGroup->insert(allSubs , ALL_SUBSHAPES);
mySelectionWayGroup->insert(inPlaceSubs, GET_IN_PLACE);
mySelectionWayGroup->insert(shape2Subs , SUBSHAPES_OF_SHAPE2);