mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	mention: Replace 'wildcards' with 'stream_wildcards'.
This prep commit replaces the 'wildcard' keyword in the codebase with 'stream_wildcard' at some places for better readability, as we plan to introduce 'topic_wildcards' as a part of the '@topic mention' project. Currently, 'wildcards = ["all", "everyone", "stream"]' which is an alias to mention everyone in the stream, hence better renamed as 'stream_wildcards'. Eventually, we will have: 'stream_wildcard' as an alias to mention everyone in the stream. 'topic_wildcard' as an alias to mention everyone in the topic. 'wildcard' refers to 'stream_wildcard' and 'topic_wildcard' as a whole.
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						parent
						
							d80779435a
						
					
				
				
					commit
					179d5cb37d
				
			@@ -29,9 +29,9 @@
 | 
			
		||||
    {% trans %}You are receiving this because you were personally mentioned.{% endtrans %}<br />
 | 
			
		||||
    {% elif mentioned_user_group_name %}
 | 
			
		||||
    {% trans %}You are receiving this because @{{ mentioned_user_group_name }} was mentioned.{% endtrans %}<br />
 | 
			
		||||
    {% elif followed_topic_wildcard_mentioned %}
 | 
			
		||||
    {% elif stream_wildcard_mentioned_in_followed_topic %}
 | 
			
		||||
    {% trans %}You are receiving this because you have wildcard mention notifications enabled for topics you follow.{% endtrans %}<br />
 | 
			
		||||
    {% elif wildcard_mentioned %}
 | 
			
		||||
    {% elif stream_wildcard_mentioned %}
 | 
			
		||||
    {% trans %}You are receiving this because everyone was mentioned in #{{ stream_name }}.{% endtrans %}<br />
 | 
			
		||||
    {% elif followed_topic_email_notify %}
 | 
			
		||||
    {% trans %}You are receiving this because you have email notifications enabled for topics you follow.{% endtrans %}<br />
 | 
			
		||||
 
 | 
			
		||||
@@ -25,9 +25,9 @@ See {{ alert_notif_url }} for more details.
 | 
			
		||||
{% trans %}You are receiving this because you were personally mentioned.{% endtrans %}
 | 
			
		||||
{% elif mentioned_user_group_name %}
 | 
			
		||||
{% trans %}You are receiving this because @{{ mentioned_user_group_name }} was mentioned.{% endtrans %}
 | 
			
		||||
{% elif followed_topic_wildcard_mentioned %}
 | 
			
		||||
{% elif stream_wildcard_mentioned_in_followed_topic %}
 | 
			
		||||
{% trans %}You are receiving this because you have wildcard mention notifications enabled for topics you follow.{% endtrans %}
 | 
			
		||||
{% elif wildcard_mentioned %}
 | 
			
		||||
{% elif stream_wildcard_mentioned %}
 | 
			
		||||
{% trans %}You are receiving this because everyone was mentioned in #{{ stream_name }}.{% endtrans %}
 | 
			
		||||
{% elif followed_topic_email_notify %}
 | 
			
		||||
{% trans %}You are receiving this because you have email notifications enabled for topics you follow.{% endtrans %}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user