130 lines
3.8 KiB
Perl
Executable file
130 lines
3.8 KiB
Perl
Executable file
package WebGUI::i18n::English::CommercePaymentPayFlowPro;
|
|
|
|
our $I18N = {
|
|
'name' => {
|
|
message => q|Name|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'address' => {
|
|
message => q|Address|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'city' => {
|
|
message => q|City|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'state' => {
|
|
message => q|State|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'zipcode' => {
|
|
message => q|Zipcode|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'email' => {
|
|
message => q|Email|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'cardNumber' => {
|
|
message => q|Credit card number|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'expiration date' => {
|
|
message => q|Expiration date|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
'cvv2' => {
|
|
message => q|Verification number (ie. CVV2)|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the chekout form of the PayFlowPro module.|
|
|
},
|
|
|
|
'vendor' => {
|
|
message => q|Vendor|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the configuration form of the PayFlowPro module.|
|
|
},
|
|
'partner' => {
|
|
message => q|Partner|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the configuration form of the PayFlowPro module.|
|
|
},
|
|
'username' => {
|
|
message => q|Username|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the configuration form of the PayFlowPro module.|
|
|
},
|
|
'password' => {
|
|
message => q|Password|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the configuration form of the PayFlowPro module.|
|
|
},
|
|
'test mode' => {
|
|
message => q|Use test mode|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the configuration form of the PayFlowPro module.|
|
|
},
|
|
'test mode warning' => {
|
|
message => q|Be sure to set this to 'No' when going live!|,
|
|
lastUpdated => 0,
|
|
context => q|Form label in the configuration form of the PayFlowPro module.|
|
|
},
|
|
'module name' => {
|
|
message => q|Verisign Payflow Pro|,
|
|
lastUpdated => 0,
|
|
context => q|The displayed name of the Payflo Pro payment module.|
|
|
},
|
|
|
|
'invalid name' => {
|
|
message => q|You have to enter a valid name.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid name has been entered.|
|
|
},
|
|
'invalid address' => {
|
|
message => q|You have to enter a valid address.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid street has been entered.|
|
|
},
|
|
'invalid city' => {
|
|
message => q|You have to enter a valid city.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid city has been entered.|
|
|
},
|
|
'invalid zip' => {
|
|
message => q|You have to enter a valid zipcode.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid zipcode has been entered.|
|
|
},
|
|
'invalid email' => {
|
|
message => q|You have to enter a valid email address.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid email address has been entered.|
|
|
},
|
|
'invalid card number' => {
|
|
message => q|You have to enter a valid credit card number.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid credit card number has been entered.|
|
|
},
|
|
'invalid cvv2' => {
|
|
message => q|You have to enter a valid card security code (ie. cvv2).|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid card security code has been entered.|
|
|
},
|
|
'invalid expiration date' => {
|
|
message => q|You have to enter a valid expiration date.|,
|
|
lastUpdated => 0,
|
|
context => q|An error indicating that an invalid expiration date has been entered.|
|
|
}
|
|
|
|
};
|
|
|
|
1;
|
|
|