rename i18n/English/ArchiveOldPosts to ArchiveOldThreads to match workflow activity name

Add simple docs for Archive Old Threads and CacheEMSPrereqs
This commit is contained in:
Colin Kuskie 2006-07-01 21:11:59 +00:00
parent bc3054c56d
commit 38bcbbc406
6 changed files with 64 additions and 17 deletions

View file

@ -21,11 +21,11 @@ use WebGUI::Asset;
=head1 NAME
Package WebGUI::Workflow::Activity::ArchiveOldPosts
Package WebGUI::Workflow::Activity::ArchiveOldThreads
=head1 DESCRIPTION
Uses the settings in the collaboration systems to determine whether the posts in those collaboration systems should be archived.
Uses the settings in the collaboration systems to determine whether the threads in those collaboration systems should be archived.
=head1 SYNOPSIS
@ -50,7 +50,7 @@ sub definition {
my $class = shift;
my $session = shift;
my $definition = shift;
my $i18n = WebGUI::International->new($session, "Workflow_Activity_ArchiveOldPosts");
my $i18n = WebGUI::International->new($session, "Workflow_Activity_ArchiveOldThreads");
push(@{$definition}, {
name=>$i18n->get("topicName"),
properties=> {}

View file

@ -52,8 +52,9 @@ sub definition {
my $class = shift;
my $session = shift;
my $definition = shift;
my $i18n = WebGUI::International->new($session, "Workflow_Activity_CacheEMSPrereqs");
push(@{$definition}, {
name=>'cacheEMSEvents',
name=>$i18n->get('topicName'),
properties=> { }
});
return $class->SUPER::definition($session,$definition);