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
|
|
|
{
|
|
|
|
|
2017-11-13 06:19:18 +00:00
|
|
|
std::vector<std::pair<std::string_view, std::string_view>> ListLocales();
|
|
|
|
const specter::Locale* LookupLocale(std::string_view name);
|
2016-03-04 23:04:53 +00:00
|
|
|
const specter::Locale* SystemLocaleOrEnglish();
|
2015-12-06 01:27:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-05 09:53:16 +00:00
|
|
|
#endif // URDE_LOCALE_HPP
|