Skip to content

Commit

Permalink
fix: don't translate translated text (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
dodumosu authored May 25, 2020
1 parent e330d99 commit 179666e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apollo/frontend/templates/frontend/message_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<td class="text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}">{{ left_message.recipient }}</td>
<td class="timestamp-date text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}" data-timestamp="{{ left_message.received|timestamp }}">{{ left_message.received.strftime('%b %d, %Y') }}</td>
<td class="timestamp-time text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}" data-timestamp="{{ left_message.received|timestamp }}">{{ left_message.received.strftime('%l:%M %p') }}</td>
<td class="text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}">{{ _(left_message.direction.value) }}</td>
<td class="text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}">{{ left_message.direction.value }}</td>
<td class="text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}" style="word-wrap:break-word">{{ left_message.text }}</td>
<td class="text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}">{{ left_message.message_type.value }}</td>
<td class="text-monospace{{ ' rtl' if g.locale.text_direction == 'rtl' else '' }}">{% if form_type %}{{ form_type.value }}{% else %}{{ _('Invalid') }}{% endif %}</td>
Expand Down

0 comments on commit 179666e

Please sign in to comment.