Story Topic skeleton code.

This commit is contained in:
Colin Kuskie 2009-02-27 22:14:30 +00:00
parent 8397b96ef8
commit b20f4b4a08
2 changed files with 201 additions and 0 deletions

View file

@ -0,0 +1,50 @@
package WebGUI::i18n::English::Asset_StoryTopic;
use strict;
our $I18N = {
'assetName' => {
message => q|Story Topic|,
context => q|An Asset that displays stories based on keywords.|,
lastUpdated => 0
},
'stories per topic' => {
message => q|Stories Per Topic|,
context => q|Label in the edit screen and template.|,
lastUpdated => 0
},
'stories per topic' => {
message => q|The number of stories displayed in RSS and Atom feeds from this Story Topic, and when viewing the Topic directly.|,
context => q|Hoverhelp in the edit screen and template.|,
lastUpdated => 0
},
'stories short' => {
message => q|Stories Per Page|,
context => q|Label in the edit screen and template.|,
lastUpdated => 0
},
'stories short help' => {
message => q|The number of stories displayed on a page.|,
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 Topic.|,
context => q|Hoverhelp in the edit screen and template.|,
lastUpdated => 0
},
};
1;