added more vars to GalleryAlbum and GalleryFile. fixed some tests

This commit is contained in:
Doug Bell 2008-04-17 22:54:19 +00:00
parent 5b16fcca51
commit 4ebed16c69
10 changed files with 148 additions and 2 deletions

View file

@ -465,6 +465,25 @@ our $I18N = {
lastUpdated => 0,
context => 'Title for the list of actions a user can take after saving a Gallery Album',
},
'helpvar gallery_title' => {
message => q{The title of the Gallery containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar gallery_menuTitle' => {
message => q{The menu title of the Gallery containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar gallery_url' => {
message => q{The URL of the Gallery containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
};
1;

View file

@ -589,6 +589,48 @@ our $I18N = {
context => q{Description of template variable},
},
'helpvar gallery_title' => {
message => q{The title of the Gallery containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar gallery_menuTitle' => {
message => q{The menu title of the Gallery containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar gallery_url' => {
message => q{The URL of the Gallery containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar album_title' => {
message => q{The title of the album containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar album_menuTitle' => {
message => q{The menu title of the album containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar album_url' => {
message => q{The URL of the album containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar album_thumbnailUrl' => {
message => q{The URL for the thumbnail of the album containing this File},
lastUpdated => 0,
context => q{Description of template variable},
},
};
1;