started adding cart UI

This commit is contained in:
JT Smith 2008-02-27 22:47:33 +00:00
parent 152e96f695
commit 3cb0ccd0e2
5 changed files with 165 additions and 4 deletions

View file

@ -0,0 +1,32 @@
package WebGUI::i18n::English::Shop;
use strict;
our $I18N = {
'remove button' => {
message => q|Remove|,
lastUpdated => 0,
context => q|a button a user clicks on to remove an item from the cart|
},
'update button' => {
message => q|Update Cart|,
lastUpdated => 0,
context => q|a button the user clicks on to apply changes to a cart|
},
'continue shopping button' => {
message => q|Continue Shopping|,
lastUpdated => 0,
context => q|a button the user clicks on to go back to shopping after viewing the cart|
},
'ship to button' => {
message => q|Ship To|,
lastUpdated => 0,
context => q|a button the user clicks on to set shipping information|
},
};
1;