mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
443 B
C++
17 lines
443 B
C++
11 months ago
|
#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
|