2016-01-05 09:53:16 +00:00
|
|
|
#ifndef URDE_LOCALE_HPP
|
|
|
|
#define URDE_LOCALE_HPP
|
2015-12-06 01:27:02 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
#include <specter/Translator.hpp>
|
2015-12-06 01:27:02 +00:00
|
|
|
|
2016-03-05 00:03:41 +00:00
|
|
|
namespace urde
|
2015-12-06 01:27:02 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
std::vector<std::pair<const std::string*, const std::string*>> ListLocales();
|
2016-03-04 23:04:53 +00:00
|
|
|
const specter::Locale* LookupLocale(const std::string& name);
|
|
|
|
const specter::Locale* SystemLocaleOrEnglish();
|
2015-12-06 01:27:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-05 09:53:16 +00:00
|
|
|
#endif // URDE_LOCALE_HPP
|