0.0.247 add translate for words with letter А
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
<div class="container-message-req-sprt" onclick="openTicket({{ ticket.id }})">
|
||||
<div class="message-sprt-inf">
|
||||
<div>
|
||||
<span>
|
||||
Статус: {{ ticket.get_status_display }}
|
||||
{% translate "Статус:" %} {{ ticket.get_status_display }}
|
||||
{# Статус: Открыт#}
|
||||
</span>
|
||||
{# <img>#}
|
||||
|
||||
@@ -17,11 +17,11 @@
|
||||
{# </div>#}
|
||||
<div class="route_info_about">
|
||||
<span>
|
||||
Тип:{{ route.get_cargo_type_display }}
|
||||
{% translate "Тип:" %}{{ route.get_cargo_type_display }}
|
||||
</span>
|
||||
|
||||
<span>
|
||||
Вес:{{ route.weight }} кг
|
||||
{% translate "Вес:" %}{{ route.weight }} {% translate "кг" %}
|
||||
</span>
|
||||
|
||||
<span>
|
||||
@@ -76,24 +76,24 @@
|
||||
<div class="button_edit_route">
|
||||
<button onclick="editRoute({{ route.id }})"
|
||||
id="edit_route">
|
||||
Редактировать
|
||||
{% translate "Редактировать" %}
|
||||
</button>
|
||||
</div>
|
||||
<div class="button_remove_route">
|
||||
<button
|
||||
onclick="confirmRemove(this)"
|
||||
id="remove_route">
|
||||
Удалить
|
||||
{% translate "Удалить" %}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{% if route.owner != user %}
|
||||
<button class="open_chat_carrier" onclick="open_chat({{ route.owner_id }})">
|
||||
<img src="{% static "img/svg/Logo.svg" %}" width="30px">
|
||||
<span >Написать сообщение</span>
|
||||
<span >{% translate "Написать сообщение" %}</span>
|
||||
<img src="{% static "/img/svg/email.svg" %}" width="25px" style="position:relative;left: 3px;">
|
||||
</button>
|
||||
<button class="open_inf_carrier" onclick="show_inf_carrier(this)">Открыть контакт</button>
|
||||
<button class="open_inf_carrier" onclick="show_inf_carrier(this)">{% translate "Открыть контакт" %}</button>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
<div class="block_tickets_in_work">
|
||||
<span class="title-list-of-users">Тикеты в работе</span>
|
||||
<span class="title-list-of-users">{% translate "Тикеты в работе" %}</span>
|
||||
{% if tickets_for_manager %}
|
||||
{% for item in tickets_for_manager %}
|
||||
{% include "widgets/w_chat_right_panel_tickets.html" %}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
|
||||
<span class="title-list-of-users">Неразобранные тикеты</span>
|
||||
<span class="title-list-of-users">{% translate "Неразобранные тикеты" %}</span>
|
||||
<div class="insert_users">
|
||||
{% if tickets_wo_manager %}
|
||||
{% for item in tickets_wo_manager %}
|
||||
|
||||
Reference in New Issue
Block a user