25 lines
607 B
Perl
25 lines
607 B
Perl
package WebGUI::i18n::English::Workflow_Activity_TrashClipboard;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'trash after help' => {
|
|
message => q|How long should WebGUI let content sit in the clipboard before moving it to the trash?|,
|
|
context => q|the hover help for the trash after field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'trash after' => {
|
|
message => q|Trash After|,
|
|
context => q|a label indicating how long content should sit in the clipboard|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'activityName' => {
|
|
message => q|Empty Clipboard to Trash|,
|
|
context => q|The name of this workflow activity.|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
};
|
|
|
|
1;
|