mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 17:29:55 +00:00
16 lines
443 B
C++
16 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
|