first round of changes to create the ui for building workflows, more to come
a few small bug fixes
This commit is contained in:
parent
18e24618e7
commit
6ee05b85af
12 changed files with 441 additions and 26 deletions
126
lib/WebGUI/i18n/English/Workflow.pm
Normal file
126
lib/WebGUI/i18n/English/Workflow.pm
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
package WebGUI::i18n::English::Workflow;
|
||||
|
||||
our $I18N = {
|
||||
'are you sure you want to delete this workflow' => {
|
||||
message => q|Are you certain you wish to delete this workflow and all running instances of it?|,
|
||||
context => q|prompt the user before deleting a workflow|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'none' => {
|
||||
message => q|None|,
|
||||
context => q|Workflow doesn't work on objects.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'versiontag' => {
|
||||
message => q|Version Tag|,
|
||||
context => q|Workflow can work on version tag objects.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'user' => {
|
||||
message => q|User|,
|
||||
context => q|Workflow can work on user objects.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'object type help' => {
|
||||
message => q|What type of objects do you want this workflow to be able to handle?|,
|
||||
context => q|the hover help for the object type field|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'object type' => {
|
||||
message => q|Object Type|,
|
||||
context => q|a label for the form that lets users choose what kind of objects a workflow can handle|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'is serial help' => {
|
||||
message => q|If yes is selected then only one instance of this workflow will be allowed to be created at one time. Generally speaking this would be a bad idea for approval workflows, but is probably a good idea for workflows the download emails from a remote server, to avoid getting duplicates.|,
|
||||
context => q|the hover help for the is serial field|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'is serial' => {
|
||||
message => q|Is serial?|,
|
||||
context => q|A question that asks the user whether this workflow may be instanciated multiple times concurrently or not.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'description help' => {
|
||||
message => q|Fill out a detailed description of what this workflow does and is used for for future reference.|,
|
||||
context => q|the hover help for the description field|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'description' => {
|
||||
message => q|Description|,
|
||||
context => q|A more detailed description of what this workflow does.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'is enabled help' => {
|
||||
message => q|If this is set to yes, then the system will be allowed to create running instances of this workflow.|,
|
||||
context => q|the hover help for the enabled field|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'is enabled' => {
|
||||
message => q|Is Enabled?|,
|
||||
context => q|Yes or no question asking the user if this workflow is enabled.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'title help' => {
|
||||
message => q|A human readable label to easily identify what this workflow does.|,
|
||||
context => q|the hover help for the title field|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'title' => {
|
||||
message => q|Title|,
|
||||
context => q|A human readable label to identify a workflow.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'enabled' => {
|
||||
message => q|Enabled|,
|
||||
context => q|A label to indicate that the workflow is ready to run.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'disabled' => {
|
||||
message => q|Disabled|,
|
||||
context => q|A label to indicate that the workflow is not ready to run.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'workflowId' => {
|
||||
message => q|Workflow ID|,
|
||||
context => q|a label for the unique id representing the workflow|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'manage workflows' => {
|
||||
message => q|Manage all workflows.|,
|
||||
context => q|clicking on this text linked will show the user a list of all workflows|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'add a new workflow' => {
|
||||
message => q|Add a new workflow.|,
|
||||
context => q|clicking on this text linked will add a new workflow|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'topicName' => {
|
||||
message => q|Workflow|,
|
||||
context => q|The title of the workflow interface.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
@ -145,12 +145,6 @@ our $I18N = {
|
|||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'are you sure you want to delete this scheduled task' => {
|
||||
message => q|Are you certain you wish to delete this task?|,
|
||||
context => q|The question asked before deleteing a cron job.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'disabled' => {
|
||||
message => q|Disabled|,
|
||||
context => q|A label to indicate that the cron job is not ready to run.|,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue