metaforce/Editor/locale/locale.hpp

16 lines
314 B
C++
Raw Normal View History

2016-01-05 09:53:16 +00:00
#ifndef URDE_LOCALE_HPP
#define URDE_LOCALE_HPP
2016-03-04 23:04:53 +00:00
#include <specter/Translator.hpp>
2016-03-05 00:03:41 +00:00
namespace urde
{
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();
}
2016-01-05 09:53:16 +00:00
#endif // URDE_LOCALE_HPP