Fix translations

Remove dulicated messages

Fix quotes in templates
This commit is contained in:
Bat
2018-06-17 16:34:25 +01:00
parent 3207aa0e22
commit aaf60502ed
7 changed files with 412 additions and 24 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
{% extends "base" %}
{% block title %}
{{ "Comment \"{{ post }}\"" | _(post=post.title) }}
{{ 'Comment "{{ post }}"' | _(post=post.title) }}
{% endblock title %}
{% block content %}
<h1>{{ "Comment \"{{ post }}\"" | _(post=post.title) }}</h1>
<h1>{{ 'Comment "{{ post }}"' | _(post=post.title) }}</h1>
<form method="post">
<label for="content">{{ "Content" | _ }}</label>
<textarea name="content"></textarea>