2012-10-16 06:03:29 +02:00
|
|
|
{# Home tab of the app, containing messages. #}
|
2013-06-21 23:17:27 +02:00
|
|
|
<div class="message_area_padder message_list" id="main_div">
|
2013-01-16 19:50:18 +01:00
|
|
|
<div id="loading_more_messages_indicator"></div>
|
2013-01-15 21:41:16 +01:00
|
|
|
<div id="page_loading_indicator"></div>
|
2013-02-23 19:38:25 +01:00
|
|
|
<div id="first_run_message" class="empty_feed_notice">
|
2016-10-13 13:16:07 +02:00
|
|
|
<h4>{% trans %}Welcome to {{product_name}}.{% endtrans %}</h4>
|
|
|
|
{% trans %}
|
|
|
|
<p>See, the thing about it is... there aren't any messages
|
2013-02-12 19:28:21 +01:00
|
|
|
here for you right now. I'm sure someone will eventually send
|
2016-10-13 13:16:07 +02:00
|
|
|
you one.</p>
|
2013-02-12 19:28:21 +01:00
|
|
|
|
2016-10-13 13:16:07 +02:00
|
|
|
<p>Or, <strong>take matters into your own hands</strong>,
|
|
|
|
and <a href="#" class="empty_feed_compose_stream">
|
|
|
|
compose a new stream message</a>.</p>
|
|
|
|
{% endtrans %}
|
2013-02-12 19:28:21 +01:00
|
|
|
</div>
|
2013-02-23 19:38:25 +01:00
|
|
|
<div id="empty_narrow_message" class="empty_feed_notice">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h4>{{ _("Nothing's been sent here yet!") }}</h4>
|
2013-02-23 19:38:25 +01:00
|
|
|
|
2016-10-13 13:16:07 +02:00
|
|
|
{% trans %}
|
|
|
|
<p>Why not <a href="#" class="empty_feed_compose_stream">
|
|
|
|
start the conversation</a>?</p>
|
|
|
|
{% endtrans %}
|
2013-02-23 19:38:25 +01:00
|
|
|
</div>
|
2013-04-02 20:57:53 +02:00
|
|
|
<div id="empty_narrow_all_private_message" class="empty_feed_notice">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h4>{{ _('You have no private messages yet!') }}</h4>
|
2013-03-29 19:55:28 +01:00
|
|
|
|
2016-10-13 13:16:07 +02:00
|
|
|
{% trans %}
|
|
|
|
<p>Why not <a href="#" class="empty_feed_compose_private">
|
|
|
|
start the conversation</a>?</p>
|
|
|
|
{% endtrans %}
|
2013-03-29 19:55:28 +01:00
|
|
|
</div>
|
2013-04-02 20:57:53 +02:00
|
|
|
<div id="empty_narrow_private_message" class="empty_feed_notice">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h4>{{ _('You have no private messages with this person yet!') }}</h4>
|
2013-04-02 20:57:53 +02:00
|
|
|
|
2016-10-13 13:16:07 +02:00
|
|
|
{% trans %}
|
|
|
|
<p>Why not <a href="#" class="empty_feed_compose_private">
|
|
|
|
start the conversation</a>?</p>
|
|
|
|
{% endtrans %}
|
2013-04-02 20:57:53 +02:00
|
|
|
</div>
|
|
|
|
<div id="empty_narrow_multi_private_message" class="empty_feed_notice">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h4>{{ _('You have no private messages with these people yet!') }}</h4>
|
2013-04-02 20:57:53 +02:00
|
|
|
|
2016-10-13 13:16:07 +02:00
|
|
|
{% trans %}
|
|
|
|
<p>Why not <a href="#" class="empty_feed_compose_private">
|
|
|
|
start the conversation</a>?</p>
|
|
|
|
{% endtrans %}
|
2013-04-02 20:57:53 +02:00
|
|
|
</div>
|
2016-07-29 16:15:50 +02:00
|
|
|
<div id="silent_user" class="empty_feed_notice">
|
|
|
|
<h4>{{ _("You haven't received any messages sent by this user yet!") }}</h4>
|
|
|
|
</div>
|
|
|
|
<div id="non_existing_user" class="empty_feed_notice">
|
|
|
|
<h4>{{ _("This user does not exist!") }}</h4>
|
|
|
|
</div>
|
2013-03-29 19:55:28 +01:00
|
|
|
<div id="nonsubbed_stream_narrow_message" class="empty_feed_notice">
|
2016-03-22 16:50:09 +01:00
|
|
|
<h4>{{ _("You aren't subscribed to this stream and nobody has talked about that yet!") }}</h4>
|
|
|
|
<div class="sub_button_row">
|
|
|
|
<button class="btn empty_feed_sub_unsub btn-default" type="button" name="subscription">
|
2016-10-13 13:16:07 +02:00
|
|
|
{{ _('Subscribe') }}
|
2016-03-22 16:50:09 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
2013-03-29 19:55:28 +01:00
|
|
|
</div>
|
|
|
|
<div id="empty_star_narrow_message" class="empty_feed_notice">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h4>{{ _("You haven't starred anything yet!") }}</h4>
|
2013-03-29 19:55:28 +01:00
|
|
|
</div>
|
2013-05-29 00:33:03 +02:00
|
|
|
<div id="empty_narrow_all_mentioned" class="empty_feed_notice">
|
2016-10-13 14:31:53 +02:00
|
|
|
<h4>{{ _("You haven't been mentioned yet.") }}</h4>
|
2013-05-29 00:33:03 +02:00
|
|
|
</div>
|
2013-03-29 19:55:28 +01:00
|
|
|
<div id="empty_search_narrow_message" class="empty_feed_notice">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h4>{{ _('Nobody has talked about that yet!') }}</h4>
|
2013-03-29 19:55:28 +01:00
|
|
|
</div>
|
2013-12-09 20:15:33 +01:00
|
|
|
<div class="message_table focused_table" id="zhome">
|
|
|
|
</div>
|
|
|
|
<div class="message_table" id="zfilt">
|
|
|
|
</div>
|
2012-10-11 21:13:12 +02:00
|
|
|
<div id="bottom_whitespace"></div>
|
2012-10-11 20:58:44 +02:00
|
|
|
</div>
|
2013-08-13 12:52:26 +02:00
|
|
|
|
2012-09-17 20:59:26 +02:00
|
|
|
|
2013-07-29 23:03:31 +02:00
|
|
|
{% include "zerver/compose.html" %}
|
2013-01-31 21:09:23 +01:00
|
|
|
<div id="notifications-area">
|
|
|
|
</div>
|