diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-25 12:15:46 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-25 12:15:46 +0000 |
commit | 07866088243c7aec025c51d605a2c1adfe93f407 (patch) | |
tree | da2fdb0cd17af459dc4845583bc50a7833a1b40d /themes/default/template/picture.tpl | |
parent | 2f90ae92512d409e275d786177649c50af5d6e18 (diff) |
- simplified inneficient css rules
- template language key
- group picture scripts on the bottom of the page
git-svn-id: http://piwigo.org/svn/trunk@8299 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/picture.tpl')
-rw-r--r-- | themes/default/template/picture.tpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 9afef3d5a..1288e1f17 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -60,7 +60,7 @@ </a> {/if} {if isset($U_SET_AS_REPRESENTATIVE)} - <a href="{$U_SET_AS_REPRESENTATIVE}" title="{'set as category representative'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> + <a href="{$U_SET_AS_REPRESENTATIVE}" title="{'set as album representative'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> <span class="pwg-icon pwg-icon-representative"> </span><span class="pwg-button-text">{'representative'|@translate}</span> </a> {/if} @@ -70,7 +70,7 @@ </a> {/if} {if isset($U_CADDIE)}{*caddie management BEGIN*} -<script type="text/javascript"> +{footer_script} {literal}function addToCadie(aElement, rootUrl, id) { if (aElement.disabled) return; @@ -85,7 +85,7 @@ y.callService( } ); }{/literal} -</script> +{/footer_script} <a href="{$U_CADDIE}" onclick="addToCadie(this, '{$ROOT_URL|@escape:'javascript'}', {$current.id}); return false;" title="{'add to caddie'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> <span class="pwg-icon pwg-icon-caddie-add"> </span><span class="pwg-button-text">{'caddie'|@translate}</span> </a> @@ -241,7 +241,7 @@ y.callService( <td class="label">{'Who can see this photo?'|@translate}</td> <td class="value"> {combine_script id='core.scripts' load='async' path='themes/default/js/scripts.js'} -<script type="text/javascript"> +{footer_script} {literal}function setPrivacyLevel(selectElement, rootUrl, id, level) { selectElement.disabled = true; @@ -255,7 +255,7 @@ y.callService( } ); }{/literal} -</script> +{/footer_script} <select onchange="setPrivacyLevel(this, '{$ROOT_URL|@escape:'javascript'}', {$current.id}, this.options[selectedIndex].value)"> {foreach from=$available_permission_levels item=label key=level} <option label="{$label}" value="{$level}"{if $level == $current.level} selected="selected"{/if}>{$label}</option> |