31 lines
603 B
Perl
31 lines
603 B
Perl
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;
|