25 lines
590 B
Perl
25 lines
590 B
Perl
package WebGUI::i18n::English::Workflow_Activity_CleanTempStorage;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'storage timeout help' => {
|
|
message => q|How old should temp files be before we delete them?|,
|
|
context => q|the hover help for the storage timeout field|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'storage timeout' => {
|
|
message => q|Storage Timeout|,
|
|
context => q|a label indicating how old temp files should be before we delete them|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'activityName' => {
|
|
message => q|Clean Temp Storage|,
|
|
context => q|The name of this workflow activity.|,
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
};
|
|
|
|
1;
|