feature 2559: minor redesign on configuration screens

* hide "rate_anonymous" when "rate" is deactivated
* hide "email_admin_on_new_user" when "allow_user_registration" is deactivated
* move history settings on main tab
* turn the 3 lines for history into a single line with 3 checkboxes
* for comments, turn the "notify admin" settings into a single line with 4 checkboxes

TODO: remove obsolete language keys


git-svn-id: http://piwigo.org/svn/trunk@13004 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2012-01-31 15:19:09 +00:00
parent 7157b8a8f4
commit d03e85cfb5
6 changed files with 235 additions and 219 deletions
+3 -30
View File
@@ -52,18 +52,15 @@ $main_checkboxes = array(
'rate_anonymous',
'email_admin_on_new_user',
'allow_user_customization',
'log',
'history_admin',
'history_guest',
);
$sizes_checkboxes = array(
'original_resize',
);
$history_checkboxes = array(
'log',
'history_admin',
'history_guest'
);
$comments_checkboxes = array(
'activate_comments',
'comments_forall',
@@ -207,14 +204,6 @@ if (isset($_POST['submit']))
break;
}
case 'history' :
{
foreach( $history_checkboxes as $checkbox)
{
$_POST[$checkbox] = empty($_POST[$checkbox])?'false':'true';
}
break;
}
case 'comments' :
{
// the number of comments per page must be an integer between 5 and 50
@@ -295,7 +284,6 @@ $tabsheet = new tabsheet();
$tabsheet->add('main', l10n('Main'), $conf_link.'main');
$tabsheet->add('sizes', l10n('Photo Sizes'), $conf_link.'sizes');
$tabsheet->add('display', l10n('Display'), $conf_link.'display');
$tabsheet->add('history', l10n('History'), $conf_link.'history');
$tabsheet->add('comments', l10n('Comments'), $conf_link.'comments');
$tabsheet->add('default', l10n('Guest Settings'), $conf_link.'default');
// TabSheet selection
@@ -387,21 +375,6 @@ switch ($page['section'])
}
break;
}
case 'history' :
{
//Necessary for merge_block_vars
foreach ($history_checkboxes as $checkbox)
{
$template->append(
'history',
array(
$checkbox => $conf[$checkbox]
),
true
);
}
break;
}
case 'comments' :
{
$template->assign(
+198 -124
View File
@@ -14,78 +14,106 @@
<legend></legend>
<ul>
<li>
<span class="property">
<label for="gallery_title">{'Gallery title'|@translate}</label>
</span>
<br>
<input type="text" maxlength="255" size="50" name="gallery_title" id="gallery_title" value="{$main.CONF_GALLERY_TITLE}">
</li>
<li>
<span class="property">
<label for="page_banner">{'Page banner'|@translate}</label>
</span>
<br>
<textarea rows="5" cols="50" class="description" name="page_banner" id="page_banner">{$main.CONF_PAGE_BANNER}</textarea>
</li>
</ul>
</fieldset>
<fieldset id="mainConfCheck">
<legend></legend>
<ul>
<li>
<label>
<span class="property">{'Allow rating'|@translate}</span>
<input type="checkbox" name="rate" {if ($main.rate)}checked="checked"{/if}>
{'Allow rating'|@translate}
</label>
</li>
<li>
<li id="rate_anonymous">
<label>
<span class="property">{'Rating by guests'|@translate}</span>
<input type="checkbox" name="rate_anonymous" {if ($main.rate_anonymous)}checked="checked"{/if}>
{'Rating by guests'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Allow user registration'|@translate}</span>
<input type="checkbox" name="allow_user_registration" {if ($main.allow_user_registration)}checked="checked"{/if}>
{'Allow user registration'|@translate}
</label>
</li>
<li>
<li id="email_admin_on_new_user">
<label>
<span class="property">{'Allow user customization'|@translate}</span>
<input type="checkbox" name="allow_user_customization" {if ($main.allow_user_customization)}checked="checked"{/if}>
</label>
</li>
<li>
<label>
<span class="property">{'Mail address is obligatory for all users'|@translate}</span>
<input type="checkbox" name="obligatory_user_mail_address" {if ($main.obligatory_user_mail_address)}checked="checked"{/if}>
</label>
</li>
<li>
<label>
<span class="property">{'Email admins when a new user registers'|@translate}</span>
<input type="checkbox" name="email_admin_on_new_user" {if ($main.email_admin_on_new_user)}checked="checked"{/if}>
{'Email admins when a new user registers'|@translate}
</label>
</li>
<li>
&nbsp;
<span class="property">
{'Week starts on'|@translate}
{html_options name="week_starts_on" options=$main.week_starts_on_options selected=$main.week_starts_on_options_selected}
</span>
<label>
<input type="checkbox" name="allow_user_customization" {if ($main.allow_user_customization)}checked="checked"{/if}>
{'Allow user customization'|@translate}
</label>
</li>
<li>
<label>
<input type="checkbox" name="obligatory_user_mail_address" {if ($main.obligatory_user_mail_address)}checked="checked"{/if}>
{'Mail address is obligatory for all users'|@translate}
</label>
</li>
<li>
<label>{'Week starts on'|@translate}
{html_options name="week_starts_on" options=$main.week_starts_on_options selected=$main.week_starts_on_options_selected}</label>
</li>
{footer_script}{literal}
jQuery(document).ready(function(){
/* rate_anonymous visible only if rate is permitted */
if (jQuery('input[name="rate"]').is(':checked')) {
jQuery('#rate_anonymous').show();
}
else {
jQuery('#rate_anonymous').hide();
}
jQuery('input[name="rate"]').change(function(){
if ($(this).is(':checked')) {
jQuery('#rate_anonymous').show();
}
else {
jQuery('#rate_anonymous').hide();
}
});
/* email_admin_on_new_user checkbox only if allow_user_registration */
if (jQuery('input[name="allow_user_registration"]').is(':checked')) {
jQuery('#email_admin_on_new_user').show();
}
else {
jQuery('#email_admin_on_new_user').hide();
}
jQuery('input[name="allow_user_registration"]').change(function(){
if ($(this).is(':checked')) {
jQuery('#email_admin_on_new_user').show();
}
else {
jQuery('#email_admin_on_new_user').hide();
}
});
});
{/literal}{/footer_script}
<li>
&nbsp;
<span class="property">
{'Default photos order'|@translate}
<label>{'Default photos order'|@translate}</label>
{foreach from=$main.order_by item=order}
<span class="filter {if $ORDER_BY_IS_CUSTOM}transparent{/if}">
@@ -104,7 +132,6 @@
{else}
<span class="order_by_is_custom">{'You can\'t define a default photo order because you have a custom setting in your local configuration.'|@translate}</span>
{/if}
</span>
</li>
{if !$ORDER_BY_IS_CUSTOM}
@@ -146,26 +173,27 @@ jQuery(document).ready(function () {
});
{/literal}
{/footer_script}
{/if}
</ul>
</fieldset>
{/if}
{if isset($history)}
<fieldset id="historyConf">
<legend></legend>
<ul>
<li>
<label><span class="property">{'Save page visits by guests'|@translate}</span><input type="checkbox" name="history_guest" {if ($history.history_guest)}checked="checked"{/if}></label>
</li>
<li>
<strong>{'Save visits in history for'|@translate}</strong>
<li>
<label><span class="property">{'Save page visits by users'|@translate}</span><input type="checkbox" name="log" {if ($history.log)}checked="checked"{/if}></label>
</li>
<label>
<input type="checkbox" name="history_guest" {if ($main.history_guest)}checked="checked"{/if}>
{'simple visitors'|@translate}
</label>
<li>
<label><span class="property">{'Save page visits by administrators'|@translate}</span><input type="checkbox" name="history_admin" {if ($history.history_admin)}checked="checked"{/if}></label>
</li>
<label>
<input type="checkbox" name="log" {if ($main.log)}checked="checked"{/if}>
{'registered users'|@translate}
</label>
<label>
<input type="checkbox" name="history_admin" {if ($main.history_admin)}checked="checked"{/if}>
{'administrators'|@translate}
</label>
</li>
</ul>
</fieldset>
{/if}
@@ -176,8 +204,8 @@ jQuery(document).ready(function () {
<ul>
<li>
<label>
<span class="property">{'Activate comments'|@translate}</span>
<input type="checkbox" name="activate_comments" id="activate_comments"{if ($comments.activate_comments)}checked="checked"{/if}>
{'Activate comments'|@translate}
</label>
</li>
</ul>
@@ -185,71 +213,66 @@ jQuery(document).ready(function () {
<ul id="comments_param_warp"{if not ($comments.activate_comments)} style="display:none;"{/if}>
<li>
<label>
<span class="property">{'Comments for all'|@translate}</span>
<input type="checkbox" name="comments_forall" {if ($comments.comments_forall)}checked="checked"{/if}>
{'Comments for all'|@translate}
</label>
</li>
<li>
<span class="property">
<label for="nb_comment_page">{'Number of comments per page'|@translate}</label>
</span>
<input type="text" size="3" maxlength="4" name="nb_comment_page" id="nb_comment_page" value="{$comments.NB_COMMENTS_PAGE}">
<label>
{'Number of comments per page'|@translate}
<input type="text" size="3" maxlength="4" name="nb_comment_page" id="nb_comment_page" value="{$comments.NB_COMMENTS_PAGE}">
</label>
</li>
<li>
<span class="property">{'Default comments order'|@translate}</span>
<select name="comments_order">
{html_options options=$comments.comments_order_options selected=$comments.comments_order}
</select>
<label>
{'Default comments order'|@translate}
<select name="comments_order">
{html_options options=$comments.comments_order_options selected=$comments.comments_order}
</select>
</label>
</li>
<li>
<label>
<span class="property">{'Validation'|@translate}</span>
<input type="checkbox" name="comments_validation" {if ($comments.comments_validation)}checked="checked"{/if}>
{'Validation'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Email admins when a valid comment is entered'|@translate}</span>
<input type="checkbox" name="email_admin_on_comment" {if ($comments.email_admin_on_comment)}checked="checked"{/if}>
</label>
</li>
<li>
<label>
<span class="property">{'Email admins when a comment requires validation'|@translate}</span>
<input type="checkbox" name="email_admin_on_comment_validation" {if ($comments.email_admin_on_comment_validation)}checked="checked"{/if}>
</label>
</li>
<li>
<label>
<span class="property">{'Allow users to edit their own comments'|@translate}</span>
<input type="checkbox" name="user_can_edit_comment" {if ($comments.user_can_edit_comment)}checked="checked"{/if}>
{'Allow users to edit their own comments'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Allow users to delete their own comments'|@translate}</span>
<input type="checkbox" name="user_can_delete_comment" {if ($comments.user_can_delete_comment)}checked="checked"{/if}>
</label>
</li>
<li>
<label>
<span class="property">{'Email administrators when a comment is modified'|@translate}</span>
<input type="checkbox" name="email_admin_on_comment_edition" {if ($comments.email_admin_on_comment_edition)}checked="checked"{/if}>
</label>
</li>
<li>
<label>
<span class="property">{'Email administrators when a comment is deleted'|@translate}</span>
<input type="checkbox" name="email_admin_on_comment_deletion" {if ($comments.email_admin_on_comment_deletion)}checked="checked"{/if}>
{'Allow users to delete their own comments'|@translate}
</label>
</li>
<li>
<strong>{'Notify administrators when a comment is'|@translate}</strong>
<label id="email_admin_on_comment_validation">
<input type="checkbox" name="email_admin_on_comment_validation" {if ($comments.email_admin_on_comment_validation)}checked="checked"{/if}> {'pending validation'|@translate}
</label>
<label>
<input type="checkbox" name="email_admin_on_comment" {if ($comments.email_admin_on_comment)}checked="checked"{/if}> {'added'|@translate}
</label>
<label id="email_admin_on_comment_edition">
<input type="checkbox" name="email_admin_on_comment_edition" {if ($comments.email_admin_on_comment_edition)}checked="checked"{/if}> {'modified'|@translate}
</label>
<label id="email_admin_on_comment_deletion">
<input type="checkbox" name="email_admin_on_comment_deletion" {if ($comments.email_admin_on_comment_deletion)}checked="checked"{/if}> {'deleted'|@translate}
</label>
</li>
</ul>
</fieldset>
{footer_script}{literal}
@@ -261,12 +284,61 @@ jQuery(document).ready(function(){
jQuery("#comments_param_warp").hide();
}
});
/* notify on validation checkbox */
if (jQuery('input[name="comments_validation"]').is(':checked')) {
jQuery('#email_admin_on_comment_validation').show();
}
else {
jQuery('#email_admin_on_comment_validation').hide();
}
jQuery('input[name="comments_validation"]').change(function(){
if ($(this).is(':checked')) {
jQuery('#email_admin_on_comment_validation').show();
}
else {
jQuery('#email_admin_on_comment_validation').hide();
}
});
/* notify on edition checkbox */
if (jQuery('input[name="user_can_edit_comment"]').is(':checked')) {
jQuery('#email_admin_on_comment_edition').show();
}
else {
jQuery('#email_admin_on_comment_edition').hide();
}
jQuery('input[name="user_can_edit_comment"]').change(function(){
if ($(this).is(':checked')) {
jQuery('#email_admin_on_comment_edition').show();
}
else {
jQuery('#email_admin_on_comment_edition').hide();
}
});
/* notify on deletion checkbox */
if (jQuery('input[name="user_can_delete_comment"]').is(':checked')) {
jQuery('#email_admin_on_comment_deletion').show();
}
else {
jQuery('#email_admin_on_comment_deletion').hide();
}
jQuery('input[name="user_can_delete_comment"]').change(function(){
if ($(this).is(':checked')) {
jQuery('#email_admin_on_comment_deletion').show();
}
else {
jQuery('#email_admin_on_comment_deletion').hide();
}
});
});
{/literal}{/footer_script}
{/if}
</div> <!-- configContent -->
{if isset($sizes)}
{footer_script}{literal}
@@ -313,60 +385,56 @@ jQuery(document).ready(function(){
</fieldset>
{/if}
{if isset($default)}
{$PROFILE_CONTENT}
{/if}
{if isset($display)}
<fieldset id="indexDisplayConf">
<legend>{'Main Page'|@translate}</legend>
<ul>
<li>
<label>
<span class="property">{'display only recently posted photos'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="menubar_filter_icon" {if ($display.menubar_filter_icon)}checked="checked"{/if}>
{'display only recently posted photos'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'Activate icon "new" next to albums and pictures'|@translate}</span>
<input type="checkbox" name="index_new_icon" {if ($display.index_new_icon)}checked="checked"{/if}>
{'Activate icon "new" next to albums and pictures'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Sort order'|@translate|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="index_sort_order_input" {if ($display.index_sort_order_input)}checked="checked"{/if}>
{'Sort order'|@translate|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'display all photos in all sub-albums'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="index_flat_icon" {if ($display.index_flat_icon)}checked="checked"{/if}>
{'display all photos in all sub-albums'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'display a calendar by posted date'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="index_posted_date_icon" {if ($display.index_posted_date_icon)}checked="checked"{/if}>
{'display a calendar by posted date'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'display a calendar by creation date'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="index_created_date_icon" {if ($display.index_created_date_icon)}checked="checked"{/if}>
{'display a calendar by creation date'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'slideshow'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="index_slideshow_icon" {if ($display.index_slideshow_icon)}checked="checked"{/if}>
{'slideshow'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
</ul>
@@ -377,50 +445,50 @@ jQuery(document).ready(function(){
<ul>
<li>
<label>
<span class="property">{'slideshow'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="picture_slideshow_icon" {if ($display.picture_slideshow_icon)}checked="checked"{/if}>
{'slideshow'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'Show file metadata'|@translate|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="picture_metadata_icon" {if ($display.picture_metadata_icon)}checked="checked"{/if}>
{'Show file metadata'|@translate|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'Download this file'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="picture_download_icon" {if ($display.picture_download_icon)}checked="checked"{/if}>
{'Download this file'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'add this photo to your favorites'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="picture_favorite_icon" {if ($display.picture_favorite_icon)}checked="checked"{/if}>
{'add this photo to your favorites'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}
</label>
</li>
<li>
<label>
<span class="property">{'Activate Navigation Bar'|@translate}</span>
<input type="checkbox" name="picture_navigation_icons" {if ($display.picture_navigation_icons)}checked="checked"{/if}>
{'Activate Navigation Bar'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Activate Navigation Thumbnails'|@translate}</span>
<input type="checkbox" name="picture_navigation_thumb" {if ($display.picture_navigation_thumb)}checked="checked"{/if}>
{'Activate Navigation Thumbnails'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Show menubar'|@translate}</span>
<input type="checkbox" name="picture_menu" {if ($display.picture_menu)}checked="checked"{/if}>
{'Show menubar'|@translate}
</label>
</li>
</ul>
@@ -431,78 +499,78 @@ jQuery(document).ready(function(){
<ul>
<li>
<label>
<span class="property">{'Author'|@translate}</span>
<input type="checkbox" name="picture_informations[author]" {if ($display.picture_informations.author)}checked="checked"{/if}>
{'Author'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Created on'|@translate}</span>
<input type="checkbox" name="picture_informations[created_on]" {if ($display.picture_informations.created_on)}checked="checked"{/if}>
{'Created on'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Posted on'|@translate}</span>
<input type="checkbox" name="picture_informations[posted_on]" {if ($display.picture_informations.posted_on)}checked="checked"{/if}>
{'Posted on'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Dimensions'|@translate}</span>
<input type="checkbox" name="picture_informations[dimensions]" {if ($display.picture_informations.dimensions)}checked="checked"{/if}>
{'Dimensions'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'File'|@translate}</span>
<input type="checkbox" name="picture_informations[file]" {if ($display.picture_informations.file)}checked="checked"{/if}>
{'File'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Filesize'|@translate}</span>
<input type="checkbox" name="picture_informations[filesize]" {if ($display.picture_informations.filesize)}checked="checked"{/if}>
{'Filesize'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Tags'|@translate}</span>
<input type="checkbox" name="picture_informations[tags]" {if ($display.picture_informations.tags)}checked="checked"{/if}>
{'Tags'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Albums'|@translate}</span>
<input type="checkbox" name="picture_informations[categories]" {if ($display.picture_informations.categories)}checked="checked"{/if}>
{'Albums'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Visits'|@translate}</span>
<input type="checkbox" name="picture_informations[visits]" {if ($display.picture_informations.visits)}checked="checked"{/if}>
{'Visits'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Rating score'|@translate}</span>
<input type="checkbox" name="picture_informations[rating_score]" {if ($display.picture_informations.rating_score)}checked="checked"{/if}>
{'Rating score'|@translate}
</label>
</li>
<li>
<label>
<span class="property">{'Who can see this photo?'|@translate} ({'available for administrators only'|@translate})</span>
<input type="checkbox" name="picture_informations[privacy_level]" {if ($display.picture_informations.privacy_level)}checked="checked"{/if}>
{'Who can see this photo?'|@translate} ({'available for administrators only'|@translate})
</label>
</li>
</ul>
@@ -516,3 +584,9 @@ jQuery(document).ready(function(){
</p>
</form>
{/if}
</div> <!-- configContent -->
{if isset($default)}
{$PROFILE_CONTENT}
{/if}
+17 -64
View File
@@ -245,63 +245,6 @@ FORM#categoryPermissions LI {
white-space: nowrap;
}
FIELDSET#mainConfCheck SPAN.property,
FIELDSET#historyConf SPAN.property,
FIELDSET#commentsConf SPAN.property,
FIELDSET#uploadConf SPAN.property,
FIELDSET#indexDisplayConf SPAN.property,
FIELDSET#pictureDisplayConf SPAN.property,
FIELDSET#pictureInfoConf SPAN.property {
float: right;
text-align: left;
}
FIELDSET#mainConfCheck INPUT,
FIELDSET#historyConf INPUT,
FIELDSET#commentsConf INPUT,
FIELDSET#uploadConf INPUT,
FIELDSET#indexDisplayConf INPUT,
FIELDSET#pictureDisplayConf INPUT,
FIELDSET#pictureInfoConf INPUT {
float: none;
}
FIELDSET#mainConf SPAN.property {
width: 25%;
}
FIELDSET#mainConf TEXTAREA.description {
width: 70%;
}
FIELDSET#mainConfCheck SPAN.property,
FIELDSET#historyConf SPAN.property,
FIELDSET#indexDisplayConf SPAN.property,
FIELDSET#pictureDisplayConf SPAN.property,
FIELDSET#pictureInfoConf SPAN.property {
width: 90%;
}
FIELDSET#mainConfCheck INPUT,
FIELDSET#historyConf INPUT,
FIELDSET#commentsConf INPUT,
FIELDSET#indexDisplayConf INPUT,
FIELDSET#pictureDisplayConf INPUT,
FIELDSET#pictureInfoConf INPUT {
margin-left: 5%;
}
FIELDSET#uploadConf SELECT {
float: right;
margin: 2px 10px 0px;
}
FIELDSET#uploadConf INPUT {
float: right;
margin: 5px 10px 0px;
}
FIELDSET#uploadConf SPAN.property {
width: 65%;
}
FIELDSET#commentsConf SPAN.property {
width: 85%;
}
.statBar {
height: 10px;
background-color: #ff7700;
@@ -528,6 +471,16 @@ FORM.properties SPAN.property {
padding: 0 0.5em 0 0;
}
#mainConf, #historyConf, #commentsConf {border:none}
#configContent label {
font-weight: bold;
}
#mainConf li {
margin-bottom: 1em;
}
#theHeader H1 {
margin-bottom: 0.5em;
}
@@ -843,7 +796,7 @@ h2:lang(en) { text-transform:capitalize; }
#helpContent LI, #ftpPage LI {margin-top:10px;}
#helpContent P.nextStepLink {text-align:center; font-weight:bold; margin-bottom:20px;}
#configContent FIELDSET, #availablePlugins FIELDSET {border:none;}
#availablePlugins FIELDSET {border:none;}
/**
* Informations box in administration
@@ -1050,12 +1003,12 @@ div.token-input-dropdown ul li.token-input-dropdown-item2 {background-color: #ff
div.token-input-dropdown ul li em {font-weight: bold;font-style: normal;}
div.token-input-dropdown ul li.token-input-selected-dropdown-item {background-color: #3b5998;color: #fff;}
#mainConfCheck a.addFilter {font-weight:normal;margin-left:20px;}
#mainConfCheck a.removeFilter {font-weight:normal;}
#mainConfCheck span.property span.filter:first-child a.removeFilter {display:none;} /* can't delete the first field */
#mainConfCheck span.filter {display:block;margin-left:20px;}
#mainConfCheck .transparent {opacity:0.5;filter:alpha(opacity=50);}
#mainConfCheck .order_by_is_custom {display:block;font-weight:normal;font-style:italic;margin-left:20px;}
#mainConf a.addFilter {font-weight:normal;margin-left:20px;}
#mainConf a.removeFilter {font-weight:normal;}
#mainConf span.property span.filter:first-child a.removeFilter {display:none;} /* can't delete the first field */
#mainConf span.filter {display:block;margin-left:20px;}
#mainConf .transparent {opacity:0.5;filter:alpha(opacity=50);}
#mainConf .order_by_is_custom {display:block;font-weight:normal;font-style:italic;margin-left:20px;}
/* Upload Form */
#uploadBoxes .file {margin-bottom:5px;text-align:left;}
+1 -1
View File
@@ -26,7 +26,7 @@ INSERT INTO piwigo_config (param,value,comment) VALUES ('nbm_complementary_mail_
INSERT INTO piwigo_config (param,value,comment) VALUES ('nbm_send_recent_post_dates','true','Send recent post by dates for notification by mail');
INSERT INTO piwigo_config (param,value,comment) VALUES ('email_admin_on_new_user','false','Send an email to theadministrators when a user registers');
INSERT INTO piwigo_config (param,value,comment) VALUES ('email_admin_on_comment','false','Send an email to the administrators when a valid comment is entered');
INSERT INTO piwigo_config (param,value,comment) VALUES ('email_admin_on_comment_validation','false','Send an email to the administrators when a comment requires validation');
INSERT INTO piwigo_config (param,value,comment) VALUES ('email_admin_on_comment_validation','true','Send an email to the administrators when a comment requires validation');
INSERT INTO piwigo_config (param,value,comment) VALUES ('obligatory_user_mail_address','false','Mail address is obligatory for users');
INSERT INTO piwigo_config (param,value,comment) VALUES ('c13y_ignore',null,'List of ignored anomalies');
INSERT INTO piwigo_config (param,value,comment) VALUES ('extents_for_templates','a:0:{}','Actived template-extension(s)');
+8
View File
@@ -835,4 +835,12 @@ $lang['Original Size'] = 'Original Size';
$lang['A locked gallery is only visible to administrators'] = 'A locked gallery is only visible to administrators';
$lang['Unlock gallery'] = 'Unlock gallery';
$lang['Gallery unlocked'] = 'Gallery unlocked';
$lang['Notify administrators when a comment is'] = 'Notify administrators when a comment is';
$lang['modified'] = 'modified';
$lang['deleted'] = 'deleted';
$lang['pending validation'] = 'pending validation';
$lang['Save visits in history for'] = 'Save visits in history for';
$lang['simple visitors'] = 'simple visitors';
$lang['registered users'] = 'registered users';
$lang['administrators'] = 'administrators';
?>
+8
View File
@@ -848,4 +848,12 @@ $lang['Default comments order'] = 'Ordre par défaut des commentaires';
$lang['A locked gallery is only visible to administrators'] = 'Une galerie verrouillée n\'est visible que des administrateurs';
$lang['Unlock gallery'] = 'Déverouiller la galerie';
$lang['Gallery unlocked'] = 'Galerie déverouillée';
$lang['Notify administrators when a comment is'] = 'Notifier les administrateurs lorsqu\'un commentaire est';
$lang['modified'] = 'modifié';
$lang['deleted'] = 'supprimé';
$lang['pending validation'] = 'en attente de validation';
$lang['Save visits in history for'] = 'Historiser les visites des ';
$lang['simple visitors'] = 'simple visiteurs';
$lang['registered users'] = 'utilisateurs enregistrés';
$lang['administrators'] = 'administrateurs';
?>