2022-11-12 11:13:23 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
|
|
|
|
class PeerData;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
class GenericBox;
|
|
|
|
|
2022-11-18 10:42:12 +00:00
|
|
|
[[nodiscard]] QString LanguageName(const QLocale &locale);
|
|
|
|
|
2022-11-12 11:13:23 +00:00
|
|
|
void TranslateBox(
|
|
|
|
not_null<Ui::GenericBox*> box,
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
MsgId msgId,
|
2022-11-27 13:12:30 +00:00
|
|
|
TextWithEntities text,
|
|
|
|
bool hasCopyRestriction);
|
2022-11-12 11:13:23 +00:00
|
|
|
|
2022-11-18 14:00:19 +00:00
|
|
|
[[nodiscard]] bool SkipTranslate(TextWithEntities textWithEntities);
|
|
|
|
|
2022-11-18 10:42:12 +00:00
|
|
|
void ChooseLanguageBox(
|
|
|
|
not_null<Ui::GenericBox*> box,
|
|
|
|
Fn<void(QLocale)> callback);
|
|
|
|
|
2022-11-12 11:13:23 +00:00
|
|
|
} // namespace Ui
|