/* 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 "ui/effects/numbers_animation.h" namespace Lang { template struct StartReplacements; template <> struct StartReplacements { static inline Ui::StringWithNumbers Call(QString &&langString) { return { std::move(langString) }; } }; template struct ReplaceTag; template <> struct ReplaceTag { static Ui::StringWithNumbers Call( Ui::StringWithNumbers &&original, ushort tag, const Ui::StringWithNumbers &replacement); }; } // namespace Lang