|
@@ -1,7 +1,8 @@
|
1
|
1
|
<div id="events">
|
2
|
2
|
|
3
|
3
|
<div class="score">
|
4
|
|
- <img src="{{ asset('bundles/muzichcore/img/1332286466_stock_scores.png') }}" alt="score" />
|
|
4
|
+ <img title="{{ 'reputation.bar.title'|trans({}, 'users') }}"
|
|
5
|
+ src="{{ asset('bundles/muzichcore/img/1332286466_stock_scores.png') }}" alt="score" />
|
5
|
6
|
<span>{{ app.user.reputation }}</span>
|
6
|
7
|
</div>
|
7
|
8
|
|
|
@@ -10,14 +11,14 @@
|
10
|
11
|
{% if events[event_const('TYPE_COMMENT_ADDED_ELEMENT')] is defined %}
|
11
|
12
|
<a
|
12
|
13
|
href="{{ path('event_view_elements', {'event_id':events[event_const('TYPE_COMMENT_ADDED_ELEMENT')].id}) }}"
|
13
|
|
- title="BLLLLLLLLL"
|
|
14
|
+ title="{%if events[event_const('TYPE_COMMENT_ADDED_ELEMENT')].count == 1 %}{{ 'events.new_comments.one'|trans({'%count%':1}, 'users') }}{% else %}{{ 'events.new_comments.yes'|trans({'%count%':events[event_const('TYPE_COMMENT_ADDED_ELEMENT')].count}, 'users') }}{% endif %}"
|
14
|
15
|
class="view_elements_event"
|
15
|
16
|
>
|
16
|
17
|
<img src="{{ asset('bundles/muzichcore/img/1332286007_comments_reply.png') }}" alt="comments" />
|
17
|
18
|
<span>{{ events[event_const('TYPE_COMMENT_ADDED_ELEMENT')].count }}</span>
|
18
|
19
|
</a>
|
19
|
20
|
{% else %}
|
20
|
|
- <img src="{{ asset('bundles/muzichcore/img/1332286007_comments_reply.png') }}" alt="comments" />
|
|
21
|
+ <img title="{{ 'events.new_comments.no'|trans({}, 'users') }}" src="{{ asset('bundles/muzichcore/img/1332286007_comments_reply.png') }}" alt="comments" />
|
21
|
22
|
<span>0</span>
|
22
|
23
|
{% endif %}
|
23
|
24
|
</div>
|