cancel
Showing results for 
Search instead for 
Did you mean: 

Workflow status

inocka
Champ in-the-making
Champ in-the-making
Is it possible to translate task statuses like "Not Yet Started"?
3 REPLIES 3

rwetherall
Confirmed Champ
Confirmed Champ

inocka
Champ in-the-making
Champ in-the-making
Hi,
rwetherall the link you mentioned only describes how to translate or change labels, but not localize value itself… I whant to translate "Not Yet Started", "In Progress" etc. Is it possible or that values are hard coded somewhere?

vinaxwater
Champ in-the-making
Champ in-the-making
Dear inocka,
edit file alfresco/project/repository/config/alfresco/model/bpmModel.xml

<constraint name="bpm:allowedStatus" type="LIST">
      <parameter name="allowedValues">
           <!–  TODO: Determine if status values can be mapped to human-readable strings –>
           <list>
              <value>Not Yet Started</value>
              <value>In Progress</value>
              <value>On Hold</value>
              <value>Cancelled</value>
              <value>Completed</value>
           </list>
     </parameter>
</constraint>

Goodluck!