diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-03-21 01:01:25 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-03-21 01:01:25 +0000 |
commit | c6429c17ca59f36bf54986b438bf00cce85986f2 (patch) | |
tree | 5fe2f54190120006d644acd916b56cc49cc5615e /template/yoga/identification.tpl | |
parent | 22631d6dfda79a30aad1588204493b2ffb6e81cf (diff) |
- minor language changes and use template->assign instead of template->assign_var
git-svn-id: http://piwigo.org/svn/trunk@2288 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/identification.tpl')
-rw-r--r-- | template/yoga/identification.tpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template/yoga/identification.tpl b/template/yoga/identification.tpl index 5cb4555e8..d4c2293f6 100644 --- a/template/yoga/identification.tpl +++ b/template/yoga/identification.tpl @@ -3,11 +3,11 @@ <div class="titrePage"> <ul class="categoryActions"> - <li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li> + <li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li> {if isset($U_REGISTER) } - <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$themeconf.icon_dir}/register.png" class="button" alt="{'register'|@translate}"/></a></li> + <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"/></a></li> {/if} - <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}"><img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li> + <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li> </ul> <h2>{'Identification'|@translate}</h2> </div> @@ -54,7 +54,7 @@ </ul> </fieldset> - <p><input class="submit" tabindex="4" type="submit" name="login" value="{'submit'|@translate}"></p> + <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p> </form> <script type="text/javascript"><!-- @@ -63,9 +63,9 @@ document.login_form.username.focus(); <p> {if isset($U_REGISTER) } - <a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$themeconf.icon_dir}/register.png" class="button" alt=""> {'Register'|@translate}</a> + <a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"> {'Register'|@translate}</a> {/if} - <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$themeconf.icon_dir}/lost_password.png" class="button" alt=""> {'Forgot your password?'|@translate}</a> + <a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"> {'Forgot your password?'|@translate}</a> </p> </div> <!-- content --> |