metaforce/Editor/locale/locale.hpp

16 lines
320 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
{
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();
}
2016-01-05 09:53:16 +00:00
#endif // URDE_LOCALE_HPP