The translation API should always return Translation values
Pathoschild opened this issue ยท 1 comments
The helper.Translation.GetTranslations()
method returns IDictionary<string, string>
, which is awkward since mods have no way to create Translation
instances themselves. Change it to return IEnumerable<Translation>
instead, and make the translation Key
property public.