/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #pragma once #include "base/object_ptr.h" #include "lang/lang_keys.h" class PeerData; class UserData; namespace Ui { class BoxContent; } // namespace Ui namespace Window { class SessionController; } // namespace Window [[nodiscard]] object_ptr MakeVerifyPeersBox( not_null window, not_null bot); struct BotVerifyPhrases { tr::phrase<> title; tr::phrase text; tr::phrase<> about; tr::phrase<> submit; tr::phrase sent; tr::phrase<> remove; }; [[nodiscard]] BotVerifyPhrases PeerVerifyPhrases(not_null peer);