Index: Classes/Service/Stages.php =================================================================== --- Classes/Service/Stages.php (revision 3359) +++ Classes/Service/Stages.php (working copy) @@ -131,6 +131,7 @@ 'uid' ); foreach($workspaceStageRecs as $stage) { + $stage['title'] = $GLOBALS['LANG']->sL($this->pathToLocallang . ':actionSendToStage') . ' "' . $stage['title'] . '"'; $stages[] = $stage; } } @@ -169,7 +170,8 @@ // yes, so add to return array $stagesForWSUserData[] = array( 'uid' => $this->encodeStageUid($workspaceStageRec['uid']), - 'title' => $GLOBALS['LANG']->sL($this->pathToLocallang . ':actionSendToStage') . ' ' . $workspaceStageRec['title']); + 'title' => $workspaceStageRec['title'] + ); } else if ($workspaceStageRec['uid'] == self::STAGE_PUBLISH_EXECUTE_ID) { if ($GLOBALS['BE_USER']->workspacePublishAccess($this->getWorkspaceId())) { $stagesForWSUserData[] = $workspaceStageRec;