compose_banner: Fix the incorrect translation tags.

This commit fixes the translation tags in
'automatic_new_visibility_policy_banner.hbs'.

The incorrect tags were introduced in 7c46085.
This commit is contained in:
Prakhar Pratyush
2023-10-20 15:18:15 +05:30
committed by Tim Abbott
parent 852e13a0f0
commit e7275d7e64

View File

@@ -1,10 +1,15 @@
{{#> compose_banner }}
<p class="banner_message">
{{#if followed}}
{{#tr}}Now following {{/tr}}
{{#tr}}
Now following <z-link>{stream_topic}</z-link>.
{{#*inline "z-link"}}<a class="above_compose_banner_action_link" href="{{narrow_url}}" data-message-id="{{link_msg_id}}">{{> @partial-block}}</a>{{/inline}}
{{/tr}}
{{else}}
{{#tr}}Unmuted {{/tr}}
{{#tr}}
Unmuted <z-link>{stream_topic}</z-link>.
{{#*inline "z-link"}}<a class="above_compose_banner_action_link" href="{{narrow_url}}" data-message-id="{{link_msg_id}}">{{> @partial-block}}</a>{{/inline}}
{{/tr}}
{{/if}}
<a class="above_compose_banner_action_link" href="{{narrow_url}}" data-message-id="{{link_msg_id}}">{{stream_topic}}</a>.
</p>
{{/compose_banner}}