add identicon alt text translation #19

This commit is contained in:
ghost 2023-10-04 17:19:54 +03:00
parent af72fa14c4
commit 0aa38c16dd
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
{% block title %}{{ 'User'|trans }} #{{ user.id }} - {{ name }}{% endblock %}
{% block main_content %}
<div class="text-center">
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="identicon" />
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
</div>
<h2>{{ 'Profile'|trans }}</h2>
<table class="width-100">

View file

@ -3,7 +3,7 @@
{% block main_content %}
<form name="profile" action="{{ path('user_profile') }}" method="post">
<div class="text-center">
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="identicon" />
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
</div>
<h2>{{ 'Profile'|trans }}</h2>
<table class="width-100">