diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index edcf3c0c0..4bd7fc27e 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1239,6 +1239,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_action_ttl_removed_you" = "You disabled the auto-delete timer"; "lng_action_ttl_removed_channel" = "New messages will not auto-delete"; "lng_action_created_channel" = "Channel created"; +"lng_action_group_migrate" = "The group was upgraded to a supergroup"; "lng_action_pinned_message" = "{from} pinned «{text}»"; "lng_action_pinned_media" = "{from} pinned {media}"; "lng_action_pinned_media_photo" = "a photo"; diff --git a/Telegram/SourceFiles/history/history_service.cpp b/Telegram/SourceFiles/history/history_service.cpp index 401100b92..a9f712b9d 100644 --- a/Telegram/SourceFiles/history/history_service.cpp +++ b/Telegram/SourceFiles/history/history_service.cpp @@ -625,9 +625,13 @@ void HistoryService::setMessageByAction(const MTPmessageAction &action) { }, [&](const MTPDmessageActionChatCreate &data) { return prepareChatCreate(data); }, [](const MTPDmessageActionChatMigrateTo &) { - return PreparedText(); + return PreparedText{ + tr::lng_action_group_migrate(tr::now, Ui::Text::WithEntities) + }; }, [](const MTPDmessageActionChannelMigrateFrom &) { - return PreparedText(); + return PreparedText{ + tr::lng_action_group_migrate(tr::now, Ui::Text::WithEntities) + }; }, [](const MTPDmessageActionHistoryClear &) { return PreparedText(); }, [&](const MTPDmessageActionChannelCreate &data) {