##// END OF EJS Templates
Updated tag thread count text. Use #123 instead of (123) post id
neko259 -
r1272:52d8e693 default
parent child Browse files
Show More
1 NO CONTENT: modified file, binary diff hidden
@@ -7,7 +7,7 b' msgid ""'
7 7 msgstr ""
8 8 "Project-Id-Version: PACKAGE VERSION\n"
9 9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-08-12 18:32+0300\n"
10 "POT-Creation-Date: 2015-08-17 12:11+0300\n"
11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -162,15 +162,17 b' msgstr "\xd0\x98\xd0\xb7\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xb8\xd1\x82\xd1\x8c \xd0\xbc\xd0\xb5\xd1\x82\xd0\xba\xd1\x83"'
162 162
163 163 #: templates/boards/all_threads.html:79
164 164 #, python-format
165 #| msgid ""
166 #| "This tag has %(active_thread_count)s/%(thread_count)s threads and "
167 #| "%(post_count)s posts."
165 168 msgid ""
166 "This tag has %(active_thread_count)s/%(thread_count)s threads and "
169 "This tag has %(thread_count)s threads (%(active_thread_count)s active) and "
167 170 "%(post_count)s posts."
168 171 msgstr ""
169 "С этой меткой есть %(active_thread_count)s/%(thread_count)s тем и "
172 "С этой меткой есть %(thread_count)s тем (%(active_thread_count)s активных) и "
170 173 "%(post_count)s сообщений."
171 174
172 175 #: templates/boards/all_threads.html:81
173 #| msgid "Related message"
174 176 msgid "Related tags:"
175 177 msgstr "Похожие метки:"
176 178
@@ -76,7 +76,7 b''
76 76 <p>{{ tag.get_description }}</p>
77 77 {% endautoescape %}
78 78 {% endif %}
79 <p>{% blocktrans with active_thread_count=tag.get_active_thread_count thread_count=tag.get_thread_count post_count=tag.get_post_count %}This tag has {{ active_thread_count}}/{{ thread_count }} threads and {{ post_count }} posts.{% endblocktrans %}</p>
79 <p>{% blocktrans with active_thread_count=tag.get_active_thread_count thread_count=tag.get_thread_count post_count=tag.get_post_count %}This tag has {{ thread_count }} threads ({{ active_thread_count}} active) and {{ post_count }} posts.{% endblocktrans %}</p>
80 80 {% if related_tags %}
81 81 <p>{% trans 'Related tags:' %}
82 82 {% for rel_tag in related_tags %}
@@ -5,7 +5,7 b''
5 5
6 6 <div class="{{ css_class }}" id="{{ post.id }}" data-uid="{{ post.uid }}">
7 7 <div class="post-info">
8 <a class="post_id" href="{{ post.get_absolute_url }}">({{ post.get_absolute_id }})</a>
8 <a class="post_id" href="{{ post.get_absolute_url }}">#{{ post.get_absolute_id }}</a>
9 9 <span class="title">{{ post.title }}</span>
10 10 <span class="pub_time"><time datetime="{{ post.pub_time|date:'c' }}">{{ post.pub_time }}</time></span>
11 11 {% comment %}
General Comments 0
You need to be logged in to leave comments. Login now