diff options
author | tcit <tcit@tcit.fr> | 2014-10-27 14:00:47 +0100 |
---|---|---|
committer | tcit <tcit@tcit.fr> | 2014-10-27 14:00:47 +0100 |
commit | 7ee1972599f52924151794fe6c933ce69297f7f3 (patch) | |
tree | e026a075f308a34641aeac260355d0a6c9043247 /themes/default | |
parent | 750d904a16465bb01eac64e87aba0b27c6fb7d12 (diff) | |
download | wallabag-7ee1972599f52924151794fe6c933ce69297f7f3.tar.gz wallabag-7ee1972599f52924151794fe6c933ce69297f7f3.tar.zst wallabag-7ee1972599f52924151794fe6c933ce69297f7f3.zip |
translation fix for #887 and tiny display fix
Diffstat (limited to 'themes/default')
-rwxr-xr-x | themes/default/edit-tags.twig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/default/edit-tags.twig b/themes/default/edit-tags.twig index bd498d26..89c746ec 100755 --- a/themes/default/edit-tags.twig +++ b/themes/default/edit-tags.twig | |||
@@ -16,15 +16,15 @@ | |||
16 | </div> | 16 | </div> |
17 | 17 | ||
18 | {% if tags is empty %} | 18 | {% if tags is empty %} |
19 | no tags | 19 | {% trans "no tags" %} |
20 | {% endif %} | 20 | {% endif %} |
21 | <ul> | 21 | <ul> |
22 | {% for tag in tags %}<li>{{ tag.value }} <a href="./?action=remove_tag&tag_id={{ tag.id }}&id={{ entry_id }}">✘</a></li>{% endfor %} | 22 | {% for tag in tags %}<li>{{ tag.value }} <a href="./?action=remove_tag&tag_id={{ tag.id }}&id={{ entry_id }}">✘</a></li>{% endfor %} |
23 | </ul> | 23 | </ul> |
24 | <form method="post" action="./?action=add_tag" id="editTags"> | 24 | <form method="post" action="./?action=add_tag" id="editTags"> |
25 | <input type="hidden" name="entry_id" value="{{ entry_id }}" /> | 25 | <input type="hidden" name="entry_id" value="{{ entry_id }}" /> |
26 | <label for="value">Add tags: </label> | 26 | <label for="value">{% trans "Add tags:" %}</label> |
27 | <input type="text" placeholder="interview, editorial, video" id="value" name="value" required="required" /> | 27 | <input type="text" placeholder="{% trans "interview" %}, {% trans "editorial" %}, {% trans "video" %}" id="value" name="value" required="required" /> |
28 | <input type="submit" value="Tag" /> | 28 | <input type="submit" value="Tag" /> |
29 | <p>{% trans "Start typing for auto complete." %}<br> | 29 | <p>{% trans "Start typing for auto complete." %}<br> |
30 | {% trans "You can enter multiple tags, separated by commas." %}</p> | 30 | {% trans "You can enter multiple tags, separated by commas." %}</p> |