36 lines
803 B
Perl
36 lines
803 B
Perl
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;
|