More Story template variable help

This commit is contained in:
Colin Kuskie 2009-03-07 00:45:08 +00:00
parent 4b1ec30748
commit b5889146d3
2 changed files with 34 additions and 0 deletions

View file

@ -84,6 +84,18 @@ our $HELP = {
{ 'name' => 'location',
'description' => 'location tmplvar',
},
{ 'name' => 'highlights',
'description' => 'highlights tmplvar',
},
{ 'name' => 'story',
'description' => 'story tmplvar',
},
{ 'name' => 'photo',
'description' => 'photo tmplvar',
},
{ 'name' => 'storageId',
'description' => 'storageId tmplvar',
},
],
related => []
},

View file

@ -93,6 +93,12 @@ our $I18N = {
lastUpdated => 0
},
'highlights tmplvar' => {
message => q|All of the highlights from the Story. Each highlight will be separated by a newline character.|,
context => q|Template variable help.|,
lastUpdated => 0
},
'story' => {
message => q|Story|,
context => q|Label in the edit screen and template.|,
@ -105,6 +111,12 @@ our $I18N = {
lastUpdated => 0
},
'story tmplvar' => {
message => q|The story. Note that it may contain embedded content from the Rich Text Editor.|,
context => q|Template variable help.|,
lastUpdated => 0
},
'save story' => {
message => q|Save Story|,
context => q|Button label in the Edit Story form.|,
@ -248,6 +260,16 @@ our $I18N = {
lastUpdated => 0,
},
'photo tmplvar' => {
message => q|The photo JSON blob from the Story asset.|,
lastUpdated => 0,
},
'storageId tmplvar' => {
message => q|The photo JSON blob from the Story asset.|,
lastUpdated => 0,
},
};
1;