diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 7afb4b7bc..5b6d8f672 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1768,6 +1768,13 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_restricted_send_inline" = "The admins of this group restricted you from posting inline content here."; "lng_restricted_send_polls" = "The admins of this group restricted you from posting polls here."; +"lng_restricted_send_message_until" = "The admins of this group restricted you from writing here until {date}, {time}."; +"lng_restricted_send_media_until" = "The admins of this group restricted you from posting media content here until {date}, {time}."; +"lng_restricted_send_stickers_until" = "The admins of this group restricted you from posting stickers here until {date}, {time}."; +"lng_restricted_send_gifs_until" = "The admins of this group restricted you from posting GIFs here until {date}, {time}."; +"lng_restricted_send_inline_until" = "The admins of this group restricted you from posting inline content here until {date}, {time}."; +"lng_restricted_send_polls_until" = "The admins of this group restricted you from posting polls here until {date}, {time}."; + "lng_restricted_send_message_all" = "Writing messages isn't allowed in this group."; "lng_restricted_send_media_all" = "Posting media content isn't allowed in this group."; "lng_restricted_send_stickers_all" = "Posting stickers isn't allowed in this group."; diff --git a/Telegram/SourceFiles/data/data_peer.cpp b/Telegram/SourceFiles/data/data_peer.cpp index de36eab49..cfb91084e 100644 --- a/Telegram/SourceFiles/data/data_peer.cpp +++ b/Telegram/SourceFiles/data/data_peer.cpp @@ -754,6 +754,38 @@ std::optional RestrictionError( using Flag = ChatRestriction; if (const auto restricted = peer->amRestricted(restriction)) { const auto all = restricted.isWithEveryone(); + const auto channel = peer->asChannel(); + if (!all && channel) { + auto restrictedUntil = channel->restrictedUntil(); + if (restrictedUntil > 0 && !ChannelData::IsRestrictedForever(restrictedUntil)) { + auto restrictedUntilDateTime = base::unixtime::parse(channel->restrictedUntil()); + auto date = restrictedUntilDateTime.toString(qsl("dd.MM.yy")); + auto time = restrictedUntilDateTime.toString(cTimeFormat()); + + switch (restriction) { + case Flag::f_send_polls: + return tr::lng_restricted_send_polls_until( + tr::now, lt_date, date, lt_time, time); + case Flag::f_send_messages: + return tr::lng_restricted_send_message_until( + tr::now, lt_date, date, lt_time, time); + case Flag::f_send_media: + return tr::lng_restricted_send_media_until( + tr::now, lt_date, date, lt_time, time); + case Flag::f_send_stickers: + return tr::lng_restricted_send_stickers_until( + tr::now, lt_date, date, lt_time, time); + case Flag::f_send_gifs: + return tr::lng_restricted_send_gifs_until( + tr::now, lt_date, date, lt_time, time); + case Flag::f_send_inline: + case Flag::f_send_games: + return tr::lng_restricted_send_inline_until( + tr::now, lt_date, date, lt_time, time); + } + Unexpected("Restriction in Data::RestrictionErrorKey."); + } + } switch (restriction) { case Flag::f_send_polls: return all diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 320d11a64..fd549bf9a 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -3219,7 +3219,7 @@ void HistoryWidget::chooseAttach() { } else if (const auto error = Data::RestrictionError( _peer, ChatRestriction::f_send_media)) { - Ui::Toast::Show(*error); + ShowErrorToast(*error); return; } else if (showSlowmodeError()) { return; diff --git a/Telegram/SourceFiles/history/view/history_view_scheduled_section.cpp b/Telegram/SourceFiles/history/view/history_view_scheduled_section.cpp index 9e51ada7e..f2813348f 100644 --- a/Telegram/SourceFiles/history/view/history_view_scheduled_section.cpp +++ b/Telegram/SourceFiles/history/view/history_view_scheduled_section.cpp @@ -170,7 +170,7 @@ void ScheduledWidget::chooseAttach() { if (const auto error = Data::RestrictionError( _history->peer, ChatRestriction::f_send_media)) { - Ui::Toast::Show(*error); + ShowErrorToast(*error); return; }