diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-11-22 02:49:58 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-11-22 02:49:58 +0000 |
commit | a557904d2a1389ef05c05a38bc363227487ea834 (patch) | |
tree | 7e31e593d9fe81e90bc369795038f46ffb1f2a6d /template/yoga | |
parent | 32a7950e9d1ebd8e2bc0da383404de2977fdb3bc (diff) |
language cleanup (removed duplicate messages and use {lang:} instead of
template->assign_var)
git-svn-id: http://piwigo.org/svn/trunk@1615 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga')
-rw-r--r-- | template/yoga/identification.tpl | 10 | ||||
-rw-r--r-- | template/yoga/menubar.tpl | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/template/yoga/identification.tpl b/template/yoga/identification.tpl index c96427aab..1a474ad18 100644 --- a/template/yoga/identification.tpl +++ b/template/yoga/identification.tpl @@ -29,14 +29,14 @@ <ul> <li> <span class="property"> - <label for="username">{L_USERNAME}</label> + <label for="username">{lang:Username}</label> </span> <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" value="{USERNAME}" /> </li> <li> <span class="property"> - <label for="password">{L_PASSWORD}</label> + <label for="password">{lang:password}</label> </span> <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" /> </li> @@ -44,7 +44,7 @@ <!-- BEGIN remember_me --> <li> <span class="property"> - <label for="remember_me">{L_REMEMBER_ME}</label> + <label for="remember_me">{lang:remember_me}</label> </span> <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1"> </li> @@ -52,7 +52,7 @@ </ul> </fieldset> - <p><input tabindex="4" type="submit" name="login" value="{L_LOGIN}"></p> + <p><input tabindex="4" type="submit" name="login" value="{lang:submit}"></p> </form> <script type="text/javascript"><!-- @@ -60,7 +60,7 @@ document.login_form.username.focus(); //--></script> <p> - <a href="{U_REGISTER}"><img src="{themeconf:icon_dir}/register.png" class="button" alt=""> {L_REGISTER}</a> + <a href="{U_REGISTER}"><img src="{themeconf:icon_dir}/register.png" class="button" alt=""> {lang:Register}</a> <a href="{U_LOST_PASSWORD}"><img src="{themeconf:icon_dir}/lost_password.png" class="button" alt=""> {lang:Forgot your password?}</a> </p> diff --git a/template/yoga/menubar.tpl b/template/yoga/menubar.tpl index cb613ec2e..bb7bc2db2 100644 --- a/template/yoga/menubar.tpl +++ b/template/yoga/menubar.tpl @@ -73,7 +73,7 @@ <!-- END hello --> <ul> <!-- BEGIN register --> - <li><a href="{U_REGISTER}" rel="nofollow">{lang:ident_register}</a></li> + <li><a href="{U_REGISTER}" rel="nofollow">{lang:Register}</a></li> <!-- END register --> <!-- BEGIN login --> <li><a href="{F_IDENTIFY}" rel="nofollow">{lang:Connection}</a></li> |