started adding cart UI
This commit is contained in:
parent
152e96f695
commit
3cb0ccd0e2
5 changed files with 165 additions and 4 deletions
32
lib/WebGUI/i18n/English/Shop.pm
Normal file
32
lib/WebGUI/i18n/English/Shop.pm
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue