110 lines
2.3 KiB
Perl
110 lines
2.3 KiB
Perl
package WebGUI::i18n::English::Shop;
|
|
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'subtotal' => {
|
|
message => q|Subtotal|,
|
|
lastUpdated => 0,
|
|
context => q|a summary heading in the cart|
|
|
},
|
|
|
|
'coupon' => {
|
|
message => q|Coupon|,
|
|
lastUpdated => 0,
|
|
context => q|a summary heading in the cart|
|
|
},
|
|
|
|
'tax' => {
|
|
message => q|Tax|,
|
|
lastUpdated => 0,
|
|
context => q|a summary heading in the cart|
|
|
},
|
|
|
|
'total' => {
|
|
message => q|Total|,
|
|
lastUpdated => 0,
|
|
context => q|a summary heading in the cart|
|
|
},
|
|
|
|
'shipping' => {
|
|
message => q|Shipping|,
|
|
lastUpdated => 0,
|
|
context => q|a summary heading in the cart|
|
|
},
|
|
|
|
'not applicable' => {
|
|
message => q|N/A|,
|
|
lastUpdated => 0,
|
|
context => q|shipping not possible on this item because it's not a physical good|
|
|
},
|
|
|
|
'item' => {
|
|
message => q|Item|,
|
|
lastUpdated => 0,
|
|
context => q|a column heading label in the shopping cart|
|
|
},
|
|
|
|
'price' => {
|
|
message => q|Price|,
|
|
lastUpdated => 0,
|
|
context => q|a column heading label in the shopping cart|
|
|
},
|
|
|
|
'quantity' => {
|
|
message => q|Quantity|,
|
|
lastUpdated => 0,
|
|
context => q|a column heading label in the shopping cart|
|
|
},
|
|
|
|
'extended price' => {
|
|
message => q|Extended Price|,
|
|
lastUpdated => 0,
|
|
context => q|a column heading label in the shopping cart|
|
|
},
|
|
|
|
'per item shipping' => {
|
|
message => q|Per Item Shipping|,
|
|
lastUpdated => 0,
|
|
context => q|a column heading label in the shopping cart|
|
|
},
|
|
|
|
'remove button' => {
|
|
message => q|Remove|,
|
|
lastUpdated => 0,
|
|
context => q|a button a user clicks on to remove an item from the cart|
|
|
},
|
|
|
|
'checkout button' => {
|
|
message => q|Checkout|,
|
|
lastUpdated => 0,
|
|
context => q|a button the user clicks on to proceed to payment options|
|
|
},
|
|
|
|
'choose shipping button' => {
|
|
message => q|Choose Shipping Address|,
|
|
lastUpdated => 0,
|
|
context => q|a button the user clicks on to choose shipping information|
|
|
},
|
|
|
|
'update cart button' => {
|
|
message => q|Update Cart|,
|
|
lastUpdated => 0,
|
|
context => q|a button the user clicks on to apply changes to the 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;
|