2023-02-09 22:43:25 +01:00
|
|
|
{{! Client-side Handlebars template for rendering the trailing bookend. }}
|
2021-11-16 07:05:28 +01:00
|
|
|
<div class="{{#if is_trailing_bookend}}trailing_bookend {{/if}}bookend sub-unsub-message">
|
2021-11-04 07:11:19 +01:00
|
|
|
{{#if is_spectator}}
|
|
|
|
<span class="recent-topics-link">
|
2022-10-24 12:18:09 +02:00
|
|
|
<a href="#recent">{{t "Browse recent conversations" }}</a>
|
2021-11-04 07:11:19 +01:00
|
|
|
</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="stream-status">
|
|
|
|
{{#if deactivated}}
|
2024-04-18 15:20:36 +02:00
|
|
|
{{t "This channel has been archived." }}
|
2021-11-04 07:11:19 +01:00
|
|
|
{{else if subscribed }}
|
2022-11-29 17:39:59 +01:00
|
|
|
{{#tr}}
|
2024-11-08 02:32:40 +01:00
|
|
|
You subscribed to <z-stream-name></z-stream-name>. <channel-settings-link></channel-settings-link>
|
2024-11-16 03:24:11 +01:00
|
|
|
{{#*inline "z-stream-name"}}{{> stream_privacy . }} {{stream_name}}{{/inline}}
|
2024-11-08 02:32:40 +01:00
|
|
|
{{#*inline "channel-settings-link"}} <a href="#channels/{{stream_id}}/{{stream_name}}/personal">{{t 'Manage channel settings'}}</a>{{/inline}}
|
2022-11-29 17:39:59 +01:00
|
|
|
{{/tr}}
|
2021-11-04 07:11:19 +01:00
|
|
|
{{else if just_unsubscribed }}
|
2022-11-29 17:39:59 +01:00
|
|
|
{{#tr}}
|
2024-11-08 02:32:40 +01:00
|
|
|
You unsubscribed from <z-stream-name></z-stream-name>. <channel-settings-link></channel-settings-link>
|
2024-11-16 03:24:11 +01:00
|
|
|
{{#*inline "z-stream-name"}}{{> stream_privacy . }} {{stream_name}}{{/inline}}
|
2024-11-08 02:32:40 +01:00
|
|
|
{{#*inline "channel-settings-link"}} <a href="#channels/{{stream_id}}/{{stream_name}}/general">{{t 'View in channel settings'}}</a>{{/inline}}
|
2022-11-29 17:39:59 +01:00
|
|
|
{{/tr}}
|
2021-11-04 07:11:19 +01:00
|
|
|
{{else}}
|
2022-11-29 17:39:59 +01:00
|
|
|
{{#tr}}
|
2024-07-10 08:46:04 +02:00
|
|
|
You are not subscribed to <z-stream-name></z-stream-name>.
|
2024-11-16 03:24:11 +01:00
|
|
|
{{#*inline "z-stream-name"}}{{> stream_privacy . }} {{stream_name}}{{/inline}}
|
2022-11-29 17:39:59 +01:00
|
|
|
{{/tr}}
|
2021-11-04 07:11:19 +01:00
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
2014-02-05 16:55:24 +01:00
|
|
|
</div>
|