mirror of https://github.com/zulip/zulip.git
i18n: Set the correct language for translation in add_subscriptions_backend.
This commit is contained in:
parent
28f5e86c7c
commit
cc0b3a08c9
|
@ -3471,7 +3471,7 @@ class SubscriptionAPITest(ZulipTestCase):
|
|||
principals=ujson.dumps([user1.id, user2.id]),
|
||||
),
|
||||
)
|
||||
self.assert_length(queries, 50)
|
||||
self.assert_length(queries, 51)
|
||||
|
||||
class GetStreamsTest(ZulipTestCase):
|
||||
def test_streams_api_for_bot_owners(self) -> None:
|
||||
|
|
|
@ -18,6 +18,7 @@ from django.conf import settings
|
|||
from django.core.exceptions import ValidationError
|
||||
from django.db import transaction
|
||||
from django.http import HttpRequest, HttpResponse
|
||||
from django.utils.translation import override as override_language
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
from zerver.decorator import (
|
||||
|
@ -384,14 +385,17 @@ def remove_subscriptions_backend(
|
|||
return json_success(result)
|
||||
|
||||
def you_were_just_subscribed_message(acting_user: UserProfile,
|
||||
recipient_user: UserProfile,
|
||||
stream_names: Set[str]) -> str:
|
||||
subscriptions = sorted(list(stream_names))
|
||||
if len(subscriptions) == 1:
|
||||
with override_language(recipient_user.default_language):
|
||||
return _("@**{full_name}** subscribed you to the stream #**{stream_name}**.").format(
|
||||
full_name=acting_user.full_name,
|
||||
stream_name=subscriptions[0],
|
||||
)
|
||||
|
||||
with override_language(recipient_user.default_language):
|
||||
message = _("@**{full_name}** subscribed you to the following streams:").format(
|
||||
full_name=acting_user.full_name,
|
||||
)
|
||||
|
@ -509,33 +513,38 @@ def add_subscriptions_backend(
|
|||
if not notify_stream_names:
|
||||
continue
|
||||
|
||||
sender = get_system_bot(settings.NOTIFICATION_BOT)
|
||||
recipient_user = email_to_user_profile[email]
|
||||
|
||||
msg = you_were_just_subscribed_message(
|
||||
acting_user=user_profile,
|
||||
recipient_user=recipient_user,
|
||||
stream_names=notify_stream_names,
|
||||
)
|
||||
|
||||
sender = get_system_bot(settings.NOTIFICATION_BOT)
|
||||
notifications.append(
|
||||
internal_prep_private_message(
|
||||
realm=user_profile.realm,
|
||||
sender=sender,
|
||||
recipient_user=email_to_user_profile[email],
|
||||
recipient_user=recipient_user,
|
||||
content=msg))
|
||||
|
||||
if announce and len(created_streams) > 0:
|
||||
notifications_stream = user_profile.realm.get_notifications_stream()
|
||||
if notifications_stream is not None:
|
||||
with override_language(notifications_stream.realm.default_language):
|
||||
if len(created_streams) > 1:
|
||||
content = _("@_**%(user_name)s|%(user_id)d** created the following streams: %(stream_str)s.")
|
||||
else:
|
||||
content = _("@_**%(user_name)s|%(user_id)d** created a new stream %(stream_str)s.")
|
||||
topic = _('new streams')
|
||||
|
||||
content = content % {
|
||||
'user_name': user_profile.full_name,
|
||||
'user_id': user_profile.id,
|
||||
'stream_str': ", ".join(f'#**{s.name}**' for s in created_streams)}
|
||||
|
||||
sender = get_system_bot(settings.NOTIFICATION_BOT)
|
||||
topic = _('new streams')
|
||||
|
||||
notifications.append(
|
||||
internal_prep_stream_message(
|
||||
|
@ -550,6 +559,7 @@ def add_subscriptions_backend(
|
|||
if not user_profile.realm.is_zephyr_mirror_realm and len(created_streams) > 0:
|
||||
sender = get_system_bot(settings.NOTIFICATION_BOT)
|
||||
for stream in created_streams:
|
||||
with override_language(stream.realm.default_language):
|
||||
notifications.append(
|
||||
internal_prep_stream_message(
|
||||
realm=user_profile.realm,
|
||||
|
|
Loading…
Reference in New Issue