SMAPI - Stardew Modding API

SMAPI - Stardew Modding API

971k Downloads

The translation API should always return Translation values

Pathoschild opened this issue ยท 1 comments

commented

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.

commented

Done in develop for the upcoming release.