We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e63835 commit c27f3c7Copy full SHA for c27f3c7
test/language_for_testing.cpp
@@ -8,4 +8,7 @@ void LanguageInitialize() { }
8
std::string_view LanguageTranslate(const char *key) { return key; }
9
std::string_view LanguagePluralTranslate(const char *singular, std::string_view plural, int count) { return count == 1 ? singular : plural; }
10
std::string_view LanguageParticularTranslate(std::string_view context, std::string_view message) { return message; }
11
+
12
+namespace devilution {
13
std::vector<std::string> GetLocales() { return {}; }
14
+} // namespace devilution
0 commit comments