source: extensions/gally/gally-default/template/menubar_identification.tpl @ 11024

Last change on this file since 11024 was 11024, checked in by grum, 13 years ago

fix bug:2306 - Some translation keys are not correct

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1<dt>{'Identification'|@translate}</dt>
2<dd>
3  {if isset($USERNAME)}
4  <p>{'Hello'|@translate}&nbsp;{$USERNAME}&nbsp;!</p>
5  {/if}
6
7  <ul>
8  {if isset($U_REGISTER)}
9  <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow">{'Register'|@translate}</a></li>
10  {/if}
11
12  {if isset($U_LOGIN)}
13  <li><a href="{$U_LOGIN}" rel="nofollow">{'Login'|@translate}</a></li>
14  {/if}
15
16  {if isset($U_LOGOUT)}
17  <li><a href="{$U_LOGOUT}">{'Logout'|@translate}</a></li>
18  {/if}
19
20  {if isset($U_PROFILE)}
21  <li><a href="{$U_PROFILE}" title="{'customize the appareance of the gallery'|@translate}">{'Customize'|@translate}</a></li>
22  {/if}
23
24  {if isset($U_ADMIN)}
25  <li><a href="{$U_ADMIN}" title="{'available for administrators only'|@translate}">{'Administration'|@translate}</a></li>
26  {/if}
27  </ul>
28
29  {if isset($U_LOGIN)}
30  <form method="post" action="{$U_LOGIN}" id="quickconnect">
31  <fieldset>
32  <legend>{'Quick connect'|@translate}</legend>
33  <div>
34  <label for="username">{'Username'|@translate}</label><br/>
35  <input type="text" name="username" id="username" value="" style="width:90%">
36  </div>
37
38  <div><label for="password">{'Password'|@translate}</label>
39  <br/>
40  <input type="password" name="password" id="password" style="width:90%">
41  </div>
42
43  {if $AUTHORIZE_REMEMBERING}
44  <div><label for="remember_me">
45  {'Auto login'|@translate}
46  <input type="checkbox" name="remember_me" id="remember_me" value="1">
47  </label></div>
48  {/if}
49
50  <div id='iValid'>
51  <input class="submit" type="submit" name="login" value="{'Submit'|@translate}">
52  <ul class="actions">
53    <li><a id="icon_lost_password3" class="button sTipOnBottom" href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" rel="nofollow"></a></li>
54    {if isset($U_REGISTER)}
55    <li><a id="icon_register3" class="button sTipOnBottom" href="{$U_REGISTER}" title="{'Create a new account'|@translate}" rel="nofollow"></a></li>
56    {/if}
57  </ul>
58  </div>
59
60  </fieldset>
61  </form>
62  {/if}
63</dd>
64
Note: See TracBrowser for help on using the repository browser.