converting versioning to use workflow
This commit is contained in:
parent
c6b0d9b8d5
commit
cba26ecc0c
20 changed files with 427 additions and 587 deletions
|
|
@ -49,61 +49,12 @@ our $I18N = {
|
|||
context => q|The prompt for purging a revision from the asset tree.|
|
||||
},
|
||||
|
||||
'rollback version tag confirm' => {
|
||||
message => q|Are you certain you wish to delete this version tag and all content created under it? It CANNOT be restored if you delete it.|,
|
||||
lastUpdated => 0,
|
||||
context => q|The prompt for purging a version tag from the asset tree.|
|
||||
},
|
||||
|
||||
'commit version tag confirm' => {
|
||||
message => q|Are you certain you wish to commit this version tag and everything edited under it?|,
|
||||
lastUpdated => 0,
|
||||
context => q|The prompt for committing a version tag to the asset tree.|
|
||||
},
|
||||
|
||||
'enable autocommit of asset versioning' => {
|
||||
message => q|Enable autocommit of asset versioning?|,
|
||||
lastUpdated => 0,
|
||||
context => q|A label for the toggle for asset versioning.|
|
||||
},
|
||||
|
||||
'enable autocommit of asset versioning description' => {
|
||||
message => q|Setting this to "Yes", the default, makes WebGUI's content version system
|
||||
do a commit immediately after an edit occurs.|,
|
||||
lastUpdated => 1140546767,
|
||||
context => q|Hover help for the toggle for asset versioning.|
|
||||
},
|
||||
|
||||
'purge' => {
|
||||
message => q|Purge|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for the purge button in the trash manager.|
|
||||
},
|
||||
|
||||
'set tag' => {
|
||||
message => q|Set As Working Tag|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for choosing as a tag to work under.|
|
||||
},
|
||||
|
||||
'revisions in tag' => {
|
||||
message => q|Revisions In Tag|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for displaying the revisions created under a specific tag.|
|
||||
},
|
||||
|
||||
'commit' => {
|
||||
message => q|Commit|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for committing a tag to the asset tree.|
|
||||
},
|
||||
|
||||
'rollback' => {
|
||||
message => q|Rollback|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for purging a revision from the asset tree.|
|
||||
},
|
||||
|
||||
'locked' => {
|
||||
message => q|Locked|,
|
||||
lastUpdated => 0,
|
||||
|
|
@ -116,59 +67,24 @@ do a commit immediately after an edit occurs.|,
|
|||
context => q|Context menu item.|
|
||||
},
|
||||
|
||||
'manage versions' => {
|
||||
message => q|Manage versions.|,
|
||||
lastUpdated => 0,
|
||||
context => q|Menu item in version tag manager.|
|
||||
},
|
||||
|
||||
'manage committed versions' => {
|
||||
message => q|Manage committed versions.|,
|
||||
lastUpdated => 0,
|
||||
context => q|Menu item in version tag manager.|
|
||||
},
|
||||
|
||||
'add version tag' => {
|
||||
message => q|Add Version Tag|,
|
||||
lastUpdated => 0,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'version tag name' => {
|
||||
message => q|Version Tag Name|,
|
||||
lastUpdated => 1129403466,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'version tag name description' => {
|
||||
message => q|<p>Enter a name to tag the work you will do on this version of the asset. The tag will be used to reference this work when it is time to commit, rollback or make further edits.</p>|,
|
||||
lastUpdated => 1129403469,
|
||||
},
|
||||
|
||||
'content versioning' => {
|
||||
message => q|Content Versioning|,
|
||||
lastUpdated => 0,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'committed versions' => {
|
||||
message => q|Committed Versions|,
|
||||
lastUpdated => 0,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'add a version tag' => {
|
||||
message => q|Add a version tag.|,
|
||||
lastUpdated => 0,
|
||||
context => q|Menu item in version tag manager.|
|
||||
},
|
||||
|
||||
'rank' => {
|
||||
message => q|Rank|,
|
||||
lastUpdated => 0,
|
||||
context => q|Column heading in asset manager.|
|
||||
},
|
||||
|
||||
'revised by' => {
|
||||
message => q|Revised By|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage revisions in tag|
|
||||
},
|
||||
|
||||
'revision date' => {
|
||||
message => q|Revision Date|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage revisions in tag|
|
||||
},
|
||||
|
||||
'type' => {
|
||||
message => q|Type|,
|
||||
lastUpdated => 0,
|
||||
|
|
|
|||
150
lib/WebGUI/i18n/English/VersionTag.pm
Normal file
150
lib/WebGUI/i18n/English/VersionTag.pm
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
package WebGUI::i18n::English::VersionTag;
|
||||
|
||||
our $I18N = {
|
||||
'current tag is called' => {
|
||||
message => q|You are currently working under a tag called|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage version tags|
|
||||
},
|
||||
|
||||
'created on' => {
|
||||
message => q|Created On|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage version tags|
|
||||
},
|
||||
|
||||
'created by' => {
|
||||
message => q|Created By|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage version tags|
|
||||
},
|
||||
|
||||
'committed on' => {
|
||||
message => q|Commited On|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage committed versions|
|
||||
},
|
||||
|
||||
'committed by' => {
|
||||
message => q|Committed By|,
|
||||
lastUpdated => 0,
|
||||
context => q|manage committed versions|
|
||||
},
|
||||
|
||||
'group to use' => {
|
||||
message => q|Group To Use|,
|
||||
lastUpdated => 0,
|
||||
context => q|version tag editor|
|
||||
},
|
||||
|
||||
'trash version tag' => {
|
||||
message => q|Trash Version Tag|,
|
||||
context => q|The name of the workflow activity.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'rollback version tag' => {
|
||||
message => q|Rollback Version Tag|,
|
||||
context => q|The name of the workflow activity.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'commit version tag' => {
|
||||
message => q|Commit Version Tag|,
|
||||
context => q|The name of the workflow activity.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'group to use help' => {
|
||||
message => q|Which group is allowed to use this tag?|,
|
||||
lastUpdated => 0,
|
||||
context => q|hover help for group to use field|
|
||||
},
|
||||
|
||||
'rollback version tag confirm' => {
|
||||
message => q|Are you certain you wish to delete this version tag and all content created under it? It CANNOT be restored if you delete it.|,
|
||||
lastUpdated => 0,
|
||||
context => q|The prompt for purging a version tag from the asset tree.|
|
||||
},
|
||||
|
||||
'commit version tag confirm' => {
|
||||
message => q|Are you certain you wish to commit this version tag and everything edited under it?|,
|
||||
lastUpdated => 0,
|
||||
context => q|The prompt for committing a version tag to the asset tree.|
|
||||
},
|
||||
|
||||
'set tag' => {
|
||||
message => q|Set As Working Tag|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for choosing as a tag to work under.|
|
||||
},
|
||||
|
||||
'revisions in tag' => {
|
||||
message => q|Revisions In Tag|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for displaying the revisions created under a specific tag.|
|
||||
},
|
||||
|
||||
'commit' => {
|
||||
message => q|Commit|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for committing a tag to the asset tree.|
|
||||
},
|
||||
|
||||
'rollback' => {
|
||||
message => q|Rollback|,
|
||||
lastUpdated => 0,
|
||||
context => q|The label for purging a revision from the asset tree.|
|
||||
},
|
||||
|
||||
'manage versions' => {
|
||||
message => q|Manage versions.|,
|
||||
lastUpdated => 0,
|
||||
context => q|Menu item in version tag manager.|
|
||||
},
|
||||
|
||||
'manage committed versions' => {
|
||||
message => q|Manage committed versions.|,
|
||||
lastUpdated => 0,
|
||||
context => q|Menu item in version tag manager.|
|
||||
},
|
||||
|
||||
'edit version tag' => {
|
||||
message => q|Edit Version Tag|,
|
||||
lastUpdated => 0,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'version tag name' => {
|
||||
message => q|Version Tag Name|,
|
||||
lastUpdated => 1129403466,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'version tag name description' => {
|
||||
message => q|<p>Enter a name to tag the work you will do on this version of the asset. The tag will be used to reference this work when it is time to commit, rollback or make further edits.</p>|,
|
||||
lastUpdated => 1129403469,
|
||||
},
|
||||
|
||||
'content versioning' => {
|
||||
message => q|Content Versioning|,
|
||||
lastUpdated => 0,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'committed versions' => {
|
||||
message => q|Committed Versions|,
|
||||
lastUpdated => 0,
|
||||
context => q|Admin console label.|
|
||||
},
|
||||
|
||||
'add a version tag' => {
|
||||
message => q|Add a version tag.|,
|
||||
lastUpdated => 0,
|
||||
context => q|Menu item in version tag manager.|
|
||||
},
|
||||
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
@ -1,6 +1,18 @@
|
|||
package WebGUI::i18n::English::WebGUI;
|
||||
|
||||
our $I18N = {
|
||||
'default version tag workflow help' => {
|
||||
message => q|Which workflow should be used by default when user's create their own version tags.|,
|
||||
lastUpdated => 0,
|
||||
context=>"Settings hover help"
|
||||
},
|
||||
|
||||
'default version tag workflow' => {
|
||||
message => q|Default Version Tag Workflow|,
|
||||
lastUpdated => 0,
|
||||
context=>"Settings"
|
||||
},
|
||||
|
||||
'expire groupings' => {
|
||||
message => q|Expire User Groupings|,
|
||||
lastUpdated => 0
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
package WebGUI::i18n::English::Workflow_Activity_CommitVersionTag;
|
||||
|
||||
our $I18N = {
|
||||
|
||||
'topicName' => {
|
||||
message => q|Commit Version Tag|,
|
||||
context => q|The name of this workflow activity.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
package WebGUI::i18n::English::Workflow_Activity_RollbackVersionTag;
|
||||
|
||||
our $I18N = {
|
||||
|
||||
'topicName' => {
|
||||
message => q|Rollback Version Tag|,
|
||||
context => q|The name of this workflow activity.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
package WebGUI::i18n::English::Workflow_Activity_TrashVersionTag;
|
||||
|
||||
our $I18N = {
|
||||
|
||||
'topicName' => {
|
||||
message => q|Trash Version Tag|,
|
||||
context => q|The name of this workflow activity.|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue