mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 14:09:06 +00:00
13 lines
377 B
C++
13 lines
377 B
C++
#ifndef LOCALIZATION_H
|
|
#define LOCALIZATION_H
|
|
|
|
#include "Base.h"
|
|
|
|
void setUsedLocale(const std::string& s);
|
|
const char *getUsedLocale();
|
|
void setLocalisationModPath(const std::string& s);
|
|
std::string localisePath(const std::string &path, const std::string& modpath = "");
|
|
std::string localisePathInternalModpath(const std::string &path);
|
|
std::string getSystemLocale();
|
|
|
|
#endif
|