launcher/locales.h
2026-03-06 18:57:42 +03:00

14 lines
286 B
C++

#ifndef LOCALES_H
#define LOCALES_H
#include <map>
#include <string>
#include <QLocale>
using LocaleMap = std::map<const std::string, const std::string>;
extern std::map<const std::string, LocaleMap*> locales;
extern void initLocales ();
LocaleMap* getLocale ();
#endif // LOCALES_H