fix: Fixed permission issues with Gallery comments

Gallery now checks to see if it's committed before allowing Albums to be added
Slideshow and thumbnails work better
Much, much more
This commit is contained in:
Doug Bell 2008-03-27 00:24:00 +00:00
parent ae6c1ac6df
commit 3ea9420479
14 changed files with 332 additions and 76 deletions

View file

@ -687,6 +687,12 @@ our $I18N = {
lastUpdated => 0,
context => q{Label for the link to add an Album},
},
'error add uncommitted' => {
message => q{<h1>Error!</h1><p>You must commit this Gallery before adding albums</p>},
lastUpdated => 0,
context => q{Error message when trying to add albums to uncommitted Gallery assets},
},
};
1;

View file

@ -565,6 +565,30 @@ our $I18N = {
context => q{Label for the albums the photo will be removed from.},
},
'helpvar synopsis_text' => {
message => q{The "synopsis" field with all HTML removed},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar url_album' => {
message => q{The URL of the Album containing this file},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar url_thumbnails' => {
message => q{The URL to the Thumbnails view of the Album containing this file},
lastUpdated => 0,
context => q{Description of template variable},
},
'helpvar url_slideshow' => {
message => q{The URL to the Slideshow view of the Album containing this file},
lastUpdated => 0,
context => q{Description of template variable},
},
};
1;