added: Two new approval activities, byLineage and byCommitterGroup

added: Show a message to users when they log in
fixed: Gallery search form doesn't work right in IE6
fixed: Minor bug in new gallery approval handling
This commit is contained in:
Doug Bell 2008-06-02 21:16:06 +00:00
parent a0ec44567a
commit 614b37e31d
12 changed files with 515 additions and 32 deletions

View file

@ -0,0 +1,23 @@
package WebGUI::i18n::English::Activity_RequestApprovalForVersionTag_ByCommitterGroup;
use strict;
our $I18N = {
'committerGroupId label' => {
message => q{Committer Group to Require Approval},
lastUpdated => 0,
context => q{Label for activity property},
},
'committerGroupId description' => {
message => q{The group that needs approval from this activity. If the committer is not
a member of this group, the workflow will continue with the next activity. },
lastUpdated => 0,
context => q{Description of activity property},
},
topicName => {
message => q{Request Approval By Committer Group},
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,24 @@
package WebGUI::i18n::English::Activity_RequestApprovalForVersionTag_ByLineage;
use strict;
our $I18N = {
'assetId label' => {
message => q{Ancestor Asset},
lastUpdated => 0,
context => q{Label for activity property},
},
'assetId description' => {
message => q{The ancestor of the content that requires approval by this activity.
All content must be under this ancestor, otherwise the workflow will
continue on with the next activity.},
lastUpdated => 0,
context => q{Description of activity property},
},
topicName => {
message => q{Request Approval By Asset Lineage},
lastUpdated => 0,
},
};
1;

View file

@ -198,6 +198,17 @@ our $I18N = {
lastUpdated => 1149220294,
},
'showMessageOnLogin return' => {
message => q{Continue to the site},
lastUpdated => 0,
},
"showMessageOnLoginSeen" => {
message => q{Seen Message On Login Times},
lastUpdated => 0,
context => q{Label for user profile field},
},
'topicName' => {
message => q|Authentication|,
lastUpdated => 1164338173,

View file

@ -3959,6 +3959,55 @@ LongTruncOk=1</p>
message => q{Attachments},
lastUpdated => 1202274234,
},
'showMessageOnLogin label' => {
message => q{Show Message On Login?},
lastUpdated => 0,
context => q{Label for site setting},
},
'showMessageOnLogin description' => {
message => q{If yes, show a message after a user logs in.},
lastUpdated => 0,
context => q{Description for site setting},
},
'showMessageOnLoginTimes label' => {
message => q{Show Message Number of Times},
lastUpdated => 0,
context => q{Label for site setting},
},
'showMessageOnLoginTimes description' => {
message => q{The number of times a user sees the message, one per login},
lastUpdated => 0,
context => q{Description for site setting},
},
'showMessageOnLoginReset label' => {
message => q{Reset All Users Number of Times Seen},
lastUpdated => 0,
context => q{Label for site setting},
},
'showMessageOnLoginReset description' => {
message => q{If "yes", will force all users to see the login message again},
lastUpdated => 0,
context => q{Description for site setting},
},
'showMessageOnLoginBody label' => {
message => q{Message on Login Body},
lastUpdated => 0,
context => q{Label for site setting},
},
'showMessageOnLoginBody description' => {
message => q{The body of the message to show on login. Macros are allowed.},
lastUpdated => 0,
context => q{Description for site setting},
},
};
1;