webgui/lib/WebGUI/i18n/English/Asset_Sku.pm
Colin Kuskie db290f91f9 Add an option to the Sku to require individual shipping of this sku, separate
from other items in the cart.  Update the FlatRate driver to support calculating that.
2009-04-29 16:52:16 +00:00

116 lines
3 KiB
Perl

package WebGUI::i18n::English::Asset_Sku;
use strict;
our $I18N = {
'sku properties title' => {
message => q|Sku Properties|,
lastUpdated => 0,
context => q|a help label|
},
'cancel recurring message' => {
message => q|Recurring transaction %s with an item named %s for a user named %s has been cancelled.|,
lastUpdated => 0,
context => q|a notification email sent to shop owners|,
},
'shop' => {
message => q|Shop|,
lastUpdated => 0,
context => q|The name of a tab that all Sku based assets have to put their commerce related settings.|
},
'display title' => {
message => q|Display Title?|,
lastUpdated => 0,
context => q|propertly label|
},
'display title help' => {
message => q|Indicate whether the title should be displayed or not.|,
lastUpdated => 0,
context => q|property label help|
},
'description' => {
message => q|Description|,
lastUpdated => 0,
context => q|The label for the description of the product.|
},
'description help' => {
message => q|Describe the product or service here.|,
lastUpdated => 0,
context => q|help for description field|
},
'sku' => {
message => q|SKU|,
lastUpdated => 0,
context => q|Abbreviation for "Stock Keeping Unit" which is used as a product number or other such record keeping number.|
},
'sku help' => {
message => q|Stands for Stock Keeping Unit, which is just a fancy term for an inventory code or product number.|,
lastUpdated => 0,
context => q|help for sku field|
},
'vendor' => {
message => q|Vendor|,
lastUpdated => 0,
context => q|asset field relating to who is selling this product|
},
'vendor help' => {
message => q|Which person/company defined in the commerce system should get credit for selling this item, if any?|,
lastUpdated => 0,
context => q|help for vendor field|
},
'shipsSeparately' => {
message => q|Ships Separately?|,
lastUpdated => 0,
context => q|label in the edit form. Ships, as in ships via post or mail or shipping. Separately, independently of other items in the cart.|,
},
'shipsSeparately help' => {
message => q|If set to yes, then this Sku will incur additional, independent shipping costs, rather than sharing costs with other items in a cart.|,
lastUpdated => 0,
context => q|help for shipsSeparate field in the edit form|
},
'add to cart' => {
message => q|Add To Cart|,
lastUpdated => 0,
context => q|i18n label for the add to cart button|,
},
'see more' => {
message => q|See more|,
lastUpdated => 0,
context => q|alternate i18n label for the add to cart button|,
},
'Add a Variant' => {
message => q|Add a Variant|,
lastUpdated => 0,
context => q|i18n label for the view template|
},
'Set Product price and SKU' => {
message => q|Set Product price and SKU|,
lastUpdated => 0,
context => q|i18n label for the view template|
},
'assetName' => {
message => q|Sku|,
lastUpdated => 0,
context => "The name of this asset."
},
};
1;