Added workflow (and email template to WebGUI/) to delete expired surveys and notify users via email.

This commit is contained in:
Kaleb Murphy 2009-02-16 23:49:16 +00:00
parent c58a6ab2fb
commit 9fe2b5328e
3 changed files with 219 additions and 0 deletions

View file

@ -0,0 +1,67 @@
package WebGUI::i18n::English::Workflow_Activity_ExpireIncompleteSurveyResponses;
use strict;
our $I18N = {
'name' => {
message => q|ExpireIncompleteSurveyResponses|,
lastUpdated => 0,
},
'Delete expired survey responses' => {
message => q|Delete expired survey responses|,
context => q|the hover help for the delete responses field|,
lastUpdated => 0,
},
'delete expired' => {
message => q|When ran, every survey response which is expired will be completely removed from the database.|,
context => q|the hover help for the delete responses field|,
lastUpdated => 0,
},
'Email users that responses were deleted' => {
message => q|Email users that responses were deleted|,
context => q|the hover help for the email users field|,
lastUpdated => 0,
},
'email users' => {
message => q|When a survey response is deleted, should the user be informed of this via email?|,
context => q|the hover help for the email users field|,
lastUpdated => 0,
},
'email template' => {
message => q|When an email is sent updating the user that their response has been deleted, this is the text that is sent to them.|,
context => q|the hover help for the email template field|,
lastUpdated => 0,
},
'from' => {
message => q|Email from field|,
context => q||,
lastUpdated => 0,
},
'from mouse over' => {
message => q|This is the from field that will show up in the sent email.|,
context => q||,
lastUpdated => 0,
},
'subject' => {
message => q|Email subject field|,
context => q||,
lastUpdated => 0,
},
'subject mouse over' => {
message => q|This is the subject field that will show up in the sent email.|,
context => q||,
lastUpdated => 0,
},
'Email template sent to user' => {
message => q|The template for the email|,
context => q||,
lastUpdated => 0,
},
'email template' => {
message => q|This is the email template that will be sent to the user|,
context => q||,
lastUpdated => 0,
},
};
1;