Skip to content

Commit

Permalink
language_for_testing: Fix GetLocales namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed Jan 22, 2025
1 parent 3bb1d68 commit 254181f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/language_for_testing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 254181f

Please sign in to comment.