80 lines
2.2 KiB
Perl
80 lines
2.2 KiB
Perl
package WebGUI::i18n::English::Asset_Carousel;
|
|
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'assetName' => {
|
|
message => q|Carousel|,
|
|
lastUpdated => 0,
|
|
context => q|The name of this asset, used in the admin bar.|
|
|
},
|
|
|
|
'carousel template label' => {
|
|
message => q|Carousel template|,
|
|
lastUpdated => 0,
|
|
context => q|Label of the carousel template field on the edit screen.|
|
|
},
|
|
|
|
'carousel template description' => {
|
|
message => q|Select a template for this carousel.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the carousel template field, used as hover help.|
|
|
},
|
|
|
|
'items label' => {
|
|
message => q|Items|,
|
|
lastUpdated => 0,
|
|
context => q|Label of the items field on the edit screen.|
|
|
},
|
|
|
|
'items description' => {
|
|
message => q|Enter this carousel's items.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the items field, used as hover help.|
|
|
},
|
|
|
|
'id label' => {
|
|
message => q|ID|,
|
|
lastUpdated => 0,
|
|
context => q|Label of the item ID field on the edit screen.|
|
|
},
|
|
|
|
'id description' => {
|
|
message => q|Enter a unique ID for this carousel item.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the item ID field, used as hover help.|
|
|
},
|
|
|
|
'carousel template help title' => {
|
|
message => q|Carousel Template Variables|,
|
|
lastUpdated => 0,
|
|
context => q|Title of a template help page.|
|
|
},
|
|
|
|
'item_loop' => {
|
|
message => q|A loop containing this carousel's items.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the item_loop tmpl_loop for the template help.|
|
|
},
|
|
|
|
'itemId' => {
|
|
message => q|This carousel item's id.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the itemId tmpl_var for the template help.|
|
|
},
|
|
|
|
'text' => {
|
|
message => q|This carousel item's text.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the text tmpl_var for the template help.|
|
|
},
|
|
|
|
'sequenceNumber' => {
|
|
message => q|This carousel item's sequenceNumber.|,
|
|
lastUpdated => 0,
|
|
context => q|Description of the sequenceNumber tmpl_var for the template help.|
|
|
}
|
|
};
|
|
|
|
1;
|
|
#vim:ft=perl
|