Provide warnings in the Cart and Ship Driver screens when there are no

shipping plugins configured.  This prevented checkout no feedback.
fixes #10849.
This commit is contained in:
Colin Kuskie 2009-08-28 15:35:40 +00:00
parent 6c9ae74654
commit d902174739
4 changed files with 33 additions and 4 deletions

View file

@ -1647,6 +1647,18 @@ our $I18N = {
context => q|Label in the EU tax manager|,
},
'No shipping plugins configured' => {
message => q|No shipping plugins configured. Please notify the site adminstrator.|,
lastUpdated => 0,
context => q|Error message in the cart|,
},
'No shippers' => {
message => q|No shipping drivers are configured. Users will not be able to checkout until at least one is configured.|,
lastUpdated => 0,
context => q|Error message in the manage ship driver screen.|,
},
};
1;