mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
17 lines
259 B
C++
17 lines
259 B
C++
#ifndef TRANSLATOR_H
|
|
#define TRANSLATOR_H
|
|
|
|
class QTranslator;
|
|
|
|
class Translator
|
|
{
|
|
public:
|
|
/// Loads the translations according to the settings or locale
|
|
static void translate();
|
|
|
|
private:
|
|
static QTranslator* translator;
|
|
};
|
|
|
|
#endif // TRANSLATOR_H
|