- Added tests for Pay

- Fixed some tests/code for PayDriver
 - Added i18n for PayDriver
 - Added a really, really bare-bones Cash plugin.
This commit is contained in:
Martin Kamerbeek 2008-03-11 16:33:10 +00:00
parent 39a0b6ff1f
commit 60362cb747
7 changed files with 415 additions and 23 deletions

View file

@ -0,0 +1,57 @@
package WebGUI::i18n::English::PayDriver;
use strict;
our $I18N = {
'label' => {
message => q|Label|,
lastUpdated => 0,
context => q|Label for the label option.|
},
'label help' => {
message => q|The name by which this pagyment gateway is displayed.|,
lastUpdated => 0,
context => q|Hover help for the label option.|
},
'enabled' => {
message => q|Enabled|,
lastUpdated => 0,
context => q|Label for the enabled option.|,
},
'enabled help' => {
message => q|Sets whether this payment gateway is enabled|,
lastUpdated => 0,
context => q|Hover help for the enabled option.|,
},
'who can use' => {
message => q|Group to use this gateway|,
lastUpdate => 0,
context => q|Label for the group to use option.|,
},
'who can use help' => {
message => q|Specifies which group is allowed to use this payment gateway.|,
lastUpdated => 0,
context => q|Hover help for the group to use option.|,
},
'receipt message' => {
message => q|Receipt message|,
lastUpdated => 0,
context => q|Label for the receipt message option.|,
},
'receipt message help' => {
message => q|The message that will be attached to the receipt.|,
lastUpdated => 0,
context => q|Hover help the receipt message option.|,
},
};
1;