110 lines
3.2 KiB
Perl
110 lines
3.2 KiB
Perl
package WebGUI::i18n::English::Asset_StoryArchive;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
|
|
'assetName' => {
|
|
message => q|Story Archive|,
|
|
context => q|An Asset that holds stories.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'stories per feed' => {
|
|
message => q|Stories Per Feed|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'stories per feed help' => {
|
|
message => q|The number of stories displayed in RSS and Atom feeds from this StoryArchive.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'stories per page' => {
|
|
message => q|Stories Per Page|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'stories per page help' => {
|
|
message => q|The number of stories displayed on a page.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'group to post' => {
|
|
message => q|Group to Post|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'group to post help' => {
|
|
message => q|The group allowed to add stories to this Story Archive.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'template' => {
|
|
message => q|Story Archive Template|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'template help' => {
|
|
message => q|The Template used to display the Story Archive.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'story template' => {
|
|
message => q|Story Template|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'story template help' => {
|
|
message => q|The Template used to display Story assets from this Story Archive.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'edit story template' => {
|
|
message => q|Edit Story Template|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'edit story template help' => {
|
|
message => q|The Template used to add or edit Story assets.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'archive after' => {
|
|
message => q|Archive Stories After|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'archive after help' => {
|
|
message => q|After this time, Story assets will be archived and no longer show up in the list of Stories or feeds.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'rich editor' => {
|
|
message => q|Rich Editor|,
|
|
context => q|Label in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'rich editor help' => {
|
|
message => q|The WYSIWIG editor used to edit the content of Story assets.|,
|
|
context => q|Hoverhelp in the edit screen and template.|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
};
|
|
|
|
1;
|