diff --git a/resources/GEOMActions.xml b/resources/GEOMActions.xml
index a59fcbbc2..d11ee3762 100644
--- a/resources/GEOMActions.xml
+++ b/resources/GEOMActions.xml
@@ -36,25 +36,25 @@
icon="pipetshape.png"
menu="NEW_ENTITY/PRIMITIVES/PIPETSHAPE"
tooltip="PRIMITIVES/PIPETSHAPE"
- status-bar="Create new Pipe TShape object">
+ status-bar="PIPETSHAPE">
+ status-bar="DIVIDEDDISK">
+ status-bar="DIVIDEDCYLINDER">
+ status-bar="SMOOTHINGSURFACE">
diff --git a/src/GEOMGUI/GeometryGUI.cxx b/src/GEOMGUI/GeometryGUI.cxx
index c18df18ad..c11a4d34d 100644
--- a/src/GEOMGUI/GeometryGUI.cxx
+++ b/src/GEOMGUI/GeometryGUI.cxx
@@ -1634,11 +1634,14 @@ void GeometryGUI::addPluginActions()
actionTool = actionTool.toUpper().prepend("TOP_");
stools.removeLast();
+ QString actionStat = anActionData.myStatusBar;
+ actionStat = actionStat.toUpper().prepend("STB_");
+
createAction(id, // ~ anActionData.myLabel
tr(actionTool.toLatin1().constData()),
icon,
tr(actionName.toLatin1().constData()),
- anActionData.myStatusBar.toLatin1().constData(),
+ tr(actionStat.toLatin1().constData()),
0 /*accel*/,
application()->desktop(),
false /*toggle*/,