[Suggestion] unlocalized name support for descriptions and titles.
Trinsdar opened this issue ยท 1 comments
It would basically be 2 new methods like this:
@ZenMethod
public ResearchBuilder setUnlocalizedTitle(@Nonnull String unlocTitle)
{
this.title = I18n.format(unlocTitle);
return this;
}
@ZenMethod
public ResearchBuilder setUnlocalizedDescription(@Nonnull String unlocDescription)
{
this.description = I18n.format(unlocDescription);
return this;
}