Files
zulip/web/templates/resolve_topic_time_limit_error_modal.hbs
Sahil Batra 8293bbea28 message_edit: Show modal if user cannot resolve topics.
We show a modal if user is not allowed to resolve or unresolve
topics due to time limit. The modal just contains the text
mentioning user cannot resolve topic without stating the
count of messages that are within the time limit as we do
not recommend partial resolving of topics.

This commit does not include any changes for resolving or
unresolving topic using "Move topic" or "Move message" modals,
as we will still consider them as simple topic move and show
the same modal that is shown in general for moving message.
2023-04-17 11:25:28 -07:00

9 lines
231 B
Handlebars

<p>
{{resolve_topic_time_limit_error_string}}
{{#if topic_is_resolved}}
{{t "Contact a moderator to unresolve this topic."}}
{{else}}
{{t "Contact a moderator to resolve this topic." }}
{{/if}}
</p>