mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
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.
9 lines
231 B
Handlebars
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>
|