Added an asset called Shelf, which allows you to create categories of Skus.

This commit is contained in:
JT Smith 2008-04-29 01:26:45 +00:00
parent e9853fdf5c
commit 82056c66aa
10 changed files with 266 additions and 29 deletions

View file

@ -0,0 +1,31 @@
package WebGUI::i18n::English::Asset_Shelf;
use strict;
our $I18N = {
'subcategories' => {
message => q|Subcategories|,
lastUpdated => 0,
context => q|a template label|,
},
'view template' => {
message => q|View Template|,
lastUpdated => 0,
context => q|a property|,
},
'view template help' => {
message => q|Choose the template that will display the list of products associated with this shelf.|,
lastUpdated => 0,
context => q|help for a property|,
},
'assetName' => {
message => q|Shelf|,
lastUpdated => 0,
context => q|the name of the asset|,
},
};
1;