name() should not be internationalized!

This commit is contained in:
Matthew Wilson 2006-05-08 13:43:29 +00:00
parent 36fe74fcaa
commit 94e92d4feb
2 changed files with 2 additions and 6 deletions

View file

@ -427,9 +427,7 @@ sub errorCode {
#-------------------------------------------------------------------
sub name {
my ($self) = shift;
my $i18n = WebGUI::International->new($self->session, "CommercePaymentCash");
return $i18n->get('module name');
return 'Cash';
}
#-------------------------------------------------------------------

View file

@ -599,9 +599,7 @@ sub errorCode {
#-------------------------------------------------------------------
sub name {
my ($self) = shift;
my $i18n = WebGUI::International->new($self->session, "CommercePaymentITransact");
return $i18n->get('module name');
return 'ITransact';
}
#-------------------------------------------------------------------