Locales: Added string forgot_password

This commit is contained in:
Ilya Prokopenko 2021-09-18 07:35:40 +03:00
parent 9578759f17
commit e0ecaf70ce
No known key found for this signature in database
GPG key ID: 7736BBBB05F14A56
3 changed files with 8 additions and 7 deletions

View file

@ -109,13 +109,13 @@
{else} {else}
<div class="link"> <div class="link">
<a href="/login">вход</a> <a href="/login">{_"header_login"}</a>
</div> </div>
<div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['registration']['enable']" class="link"> <div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['registration']['enable']" class="link">
<a href="/reg">регистрация</a> <a href="/reg">{_"header_registration"}</a>
</div> </div>
<div class="link"> <div class="link">
<a href="/support">помощь</a> <a href="/support">{_"header_help"}</a>
</div> </div>
{/ifset} {/ifset}
</div> </div>
@ -191,7 +191,7 @@
<input type="hidden" name="hash" value="{$csrfToken}" /> <input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="{_'log_in'}" class="button" style="display: inline-block;" /> <input type="submit" value="{_'log_in'}" class="button" style="display: inline-block;" />
<a n:if="OPENVK_ROOT_CONF['openvk']['preferences']['registration']['enable']" href="/reg" class="button" style="display: inline-block;" >{_registration}</a><br><br> <a n:if="OPENVK_ROOT_CONF['openvk']['preferences']['registration']['enable']" href="/reg" class="button" style="display: inline-block;" >{_registration}</a><br><br>
<a href="/restore.pl">Забыли пароль?</a> <a href="/restore.pl">{_"forgot_password"}</a>
</form> </form>
{/ifset} {/ifset}
</div> </div>

View file

@ -12,6 +12,7 @@
"log_in" = "Log in"; "log_in" = "Log in";
"password" = "Password"; "password" = "Password";
"registration" = "Registration"; "registration" = "Registration";
"forgot_password" = "Forgot your password?";
/* Profile information */ /* Profile information */

View file

@ -13,6 +13,7 @@
"log_in" = "Вход"; "log_in" = "Вход";
"password" = "Пароль"; "password" = "Пароль";
"registration" = "Регистрация"; "registration" = "Регистрация";
"forgot_password" = "Забыли пароль?";
/* Profile information */ /* Profile information */
@ -264,9 +265,8 @@
"header_log_out" = "выйти"; "header_log_out" = "выйти";
"header_search" = "Поиск"; "header_search" = "Поиск";
"header_login" = "Вход"; "header_login" = "вход";
"header_registration" = "Регистрация"; "header_registration" = "регистрация";
"header_help" = "Помощь";
"footer_blog" = "блог"; "footer_blog" = "блог";
"footer_help" = "помощь"; "footer_help" = "помощь";