5 changed files with 27 additions and 9 deletions
@ -0,0 +1,9 @@ |
|||||||
|
#include <string> |
||||||
|
#include <string_view> |
||||||
|
|
||||||
|
std::string_view GetLanguageCode() { return "en"; } |
||||||
|
bool HasTranslation(const std::string &locale) { return true; } |
||||||
|
void LanguageInitialize() { } |
||||||
|
std::string_view LanguageTranslate(const char *key) { return key; } |
||||||
|
std::string_view LanguagePluralTranslate(const char *singular, std::string_view plural, int count) { return count == 1 ? singular : plural; } |
||||||
|
std::string_view LanguageParticularTranslate(std::string_view context, std::string_view message) { return message; } |
||||||
Loading…
Reference in new issue