37 lines
804 B
Perl
37 lines
804 B
Perl
package WebGUI::i18n::English::Workflow_Activity_AddUserToGroup;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'expire offset help' => {
|
|
message => q|How long should the user remain a member of the group?|,
|
|
context => q|the hover help for the expire offset field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'expire offset' => {
|
|
message => q|Expire Offset|,
|
|
context => q|a label for the expire offset field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'group help' => {
|
|
message => q|Choose a group to add this user to.|,
|
|
context => q|the hover help for the group field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'group' => {
|
|
message => q|Group|,
|
|
context => q|a label for the group field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'activityName' => {
|
|
message => q|Add User To Group|,
|
|
context => q|The name of this workflow activity.|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
};
|
|
|
|
1;
|