25 lines
561 B
Perl
25 lines
561 B
Perl
package WebGUI::i18n::English::Workflow_Activity_RunCommandAsUser;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'command help' => {
|
|
message => q|Type the command you wish to run here. Feel free to use macros for additional parameters.|,
|
|
context => q|the hover help for the command field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'command' => {
|
|
message => q|Command|,
|
|
context => q|a label for the command to be run|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'activityName' => {
|
|
message => q|Run Command As User|,
|
|
context => q|The name of this workflow activity.|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
};
|
|
|
|
1;
|