mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 20:29:57 +00:00
17 lines
443 B
C++
17 lines
443 B
C++
|
#ifndef COMPONENTS_L10N_QTTRANSLATIONS_H
|
||
|
#define COMPONENTS_L10N_QTTRANSLATIONS_H
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include <QTranslator>
|
||
|
|
||
|
namespace l10n
|
||
|
{
|
||
|
extern QTranslator AppTranslator;
|
||
|
extern QTranslator ComponentsTranslator;
|
||
|
extern QTranslator QtBaseAppTranslator;
|
||
|
|
||
|
void installQtTranslations(QApplication& app, const QString& appName, const QString& resourcesPath);
|
||
|
}
|
||
|
|
||
|
#endif // COMPONENTS_L10N_QTTRANSLATIONS_H
|