lang_translator.h 500 B

1234567891011121314151617181920
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. #include <QtCore/QTranslator>
  9. namespace Lang {
  10. class Translator : public QTranslator {
  11. public:
  12. QString translate(const char *context, const char *sourceText, const char *disambiguation = 0, int n = -1) const override;
  13. };
  14. } // namespace Lang