Browse Source

language_for_testing: Fix GetLocales namespace

pull/7670/head
Gleb Mazovetskiy 1 year ago
parent
commit
254181f7b8
  1. 3
      test/language_for_testing.cpp

3
test/language_for_testing.cpp

@ -8,4 +8,7 @@ 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; }
namespace devilution {
std::vector<std::string> GetLocales() { return {}; }
} // namespace devilution

Loading…
Cancel
Save