diff --git a/src/GEOMGUI/GEOM_msg_en.ts b/src/GEOMGUI/GEOM_msg_en.ts
index 0868bf14c..5dd991c69 100644
--- a/src/GEOMGUI/GEOM_msg_en.ts
+++ b/src/GEOMGUI/GEOM_msg_en.ts
@@ -4396,6 +4396,18 @@ Number of sketch points too small
REMOVE
Remove
+
+ SHOW_ONLY_SELECTED
+ Show only selected
+
+
+ HIDE_SELECTED
+ Hide selected
+
+
+ SHOW_ALL_SUB_SHAPES
+ Show all sub-shapes
+
SELECT_ALL
Select All
diff --git a/src/GEOMGUI/GEOM_msg_fr.ts b/src/GEOMGUI/GEOM_msg_fr.ts
index 112c1bbfa..a28aeddf2 100644
--- a/src/GEOMGUI/GEOM_msg_fr.ts
+++ b/src/GEOMGUI/GEOM_msg_fr.ts
@@ -4393,6 +4393,18 @@ Le nombre de points n'est pas suffisant
REMOVE
Supprimer
+
+ SHOW_ONLY_SELECTED
+ Afficher uniquement la sélection
+
+
+ HIDE_SELECTED
+ Cacher la sélection
+
+
+ SHOW_ALL_SUB_SHAPES
+ Afficher tous les sous-objets
+
SELECT_ALL
Tout sélectionner
diff --git a/src/GroupGUI/GroupGUI_GroupDlg.cxx b/src/GroupGUI/GroupGUI_GroupDlg.cxx
index 01afe7a4d..327b0d4bb 100644
--- a/src/GroupGUI/GroupGUI_GroupDlg.cxx
+++ b/src/GroupGUI/GroupGUI_GroupDlg.cxx
@@ -141,9 +141,9 @@ GroupGUI_GroupDlg::GroupGUI_GroupDlg (Mode mode, GeometryGUI* theGeometryGUI, QW
myRestrictGroupBox->setEnabled(!CORBA::is_nil(myMainObj));
allSubs->setChecked(true);
- myShowOnlyBtn = new QPushButton(tr("Show only selected"), GroupMedium);
- myHideSelBtn = new QPushButton(tr("Hide selected"), GroupMedium);
- myShowAllBtn = new QPushButton(tr("Show all sub-shapes"), GroupMedium);
+ myShowOnlyBtn = new QPushButton(tr("SHOW_ONLY_SELECTED"), GroupMedium);
+ myHideSelBtn = new QPushButton(tr("HIDE_SELECTED"), GroupMedium);
+ myShowAllBtn = new QPushButton(tr("SHOW_ALL_SUB_SHAPES"), GroupMedium);
mySelAllBtn = new QPushButton(tr("SELECT_ALL"), GroupMedium);
myAddBtn = new QPushButton(tr("ADD"), GroupMedium);