28 lines
697 B
Perl
28 lines
697 B
Perl
package WebGUI::i18n::English::Workflow_Activity_NotifyAboutThing;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'notify about thing' => {
|
|
message => q|Notify About Thing|,
|
|
context => q|The name of this workflow activity.|,
|
|
lastUpdated => 0,
|
|
},
|
|
'group to notify' => {
|
|
message => q|Group to notify|,
|
|
lastUpdated => 0,
|
|
},
|
|
'group to notify help' => {
|
|
message => q|The group to notify when this Thing changes|,
|
|
lastUpdated => 0,
|
|
},
|
|
'notify message' => {
|
|
message => q|Message|,
|
|
lastUpdated => 0,
|
|
},
|
|
'notify message help' => {
|
|
message => q|The message to include in the notification mail|,
|
|
lastUpdated => 0,
|
|
},
|
|
};
|
|
|
|
1;
|