getting activity forms into a working condition

This commit is contained in:
JT Smith 2006-02-16 15:27:48 +00:00
parent 6ee05b85af
commit 5be7a021d8
7 changed files with 159 additions and 65 deletions

View file

@ -0,0 +1,36 @@
package WebGUI::i18n::English::Workflow_Activity;
our $I18N = {
'description help' => {
message => q|Put a long explaination here of what this activity is doing.|,
context => q|the hover help for the description field|,
lastUpdated => 0,
},
'description' => {
message => q|Description|,
context => q|a label for the human readable description|,
lastUpdated => 0,
},
'title help' => {
message => q|Put a name here that identifies what this activity is doing.|,
context => q|the hover help for the title field|,
lastUpdated => 0,
},
'title' => {
message => q|Title|,
context => q|a label for the human readable title|,
lastUpdated => 0,
},
'topicName' => {
message => q|Unnamed|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
};
1;