diff options
author | patdenice <patdenice@piwigo.org> | 2010-03-12 00:26:58 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2010-03-12 00:26:58 +0000 |
commit | c396f08708d431c6f7e8656eaca4fd8e440fdd39 (patch) | |
tree | 123d7cffb9d98b1923e697ae9194a59770c9e70c /template/default | |
parent | a21ffa6bd2ac0a585212159da66ede3a91810923 (diff) |
Bug corrected on picture_nav_buttons.tpl.
An error occured during gettex migration.
git-svn-id: http://piwigo.org/svn/trunk@5115 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/picture_nav_buttons.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/default/picture_nav_buttons.tpl b/template/default/picture_nav_buttons.tpl index 15b6afa40..06b236a88 100644 --- a/template/default/picture_nav_buttons.tpl +++ b/template/default/picture_nav_buttons.tpl @@ -38,22 +38,22 @@ {if isset($slideshow.U_START_REPEAT)} - <a class="navButton" href="{$slideshow.U_START_REPEAT}" title="{'Repeat the slideshow'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/Repeat the slideshow.png" class="button" alt="{'Repeat the slideshow'|@translate}"></a> + <a class="navButton" href="{$slideshow.U_START_REPEAT}" title="{'Repeat the slideshow'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/start_repeat.png" class="button" alt="{'Repeat the slideshow'|@translate}"></a> {/if} {if isset($slideshow.U_STOP_REPEAT)} - <a class="navButton" href="{$slideshow.U_STOP_REPEAT}" title="{'Not repeat the slideshow'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/Not repeat the slideshow.png" class="button" alt="{'Not repeat the slideshow'|@translate}"></a> + <a class="navButton" href="{$slideshow.U_STOP_REPEAT}" title="{'Not repeat the slideshow'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/stop_repeat.png" class="button" alt="{'Not repeat the slideshow'|@translate}"></a> {/if} {if isset($slideshow)} {if isset($slideshow.U_DEC_PERIOD)} - <a class="navButton" href="{$slideshow.U_DEC_PERIOD}" title="{'Accelerate diaporama speed'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/Accelerate diaporama speed.png" class="button" alt="{'Accelerate diaporama speed'|@translate}"></a> + <a class="navButton" href="{$slideshow.U_DEC_PERIOD}" title="{'Accelerate diaporama speed'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/dec_period.png" class="button" alt="{'Accelerate diaporama speed'|@translate}"></a> {else} <a class="navButton"> <img src="{$ROOT_URL}{$themeconf.icon_dir}/dec_period_unactive.png" class="button" alt=""></a> {/if} {if isset($slideshow.U_INC_PERIOD)} - <a class="navButton" href="{$slideshow.U_INC_PERIOD}" title="{'Reduce diaporama speed'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/Reduce diaporama speed.png" class="button" alt="{'Reduce diaporama speed'|@translate}"></a> + <a class="navButton" href="{$slideshow.U_INC_PERIOD}" title="{'Reduce diaporama speed'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/inc_period.png" class="button" alt="{'Reduce diaporama speed'|@translate}"></a> {else} <a class="navButton"> <img src="{$ROOT_URL}{$themeconf.icon_dir}/inc_period_unactive.png" class="button" alt=""></a> {/if} |