One can remedy that temporarly, if not wanting to wait for an update, by adding an "override"-xml for the language you want to support to your editors. My EpiserverOverrides.xml:
Another heads up if using interfaces for AllowedTypes
For grouping common blocks for AllowedTypes one needs to make sure that the interface used inherits from IContentData since the Select Content-feature calls GetChildren which has a generic constraint on IContentData. As an example, also applied to IHeroBlock as in image from above:
public interface IStandardBlock : IReadOnly<BlockData>, IContentData
{
}
The feature "Select Content", Release note - CMS-21131 (optimizely.com), is not currently translated it seems.
One can remedy that temporarly, if not wanting to wait for an update, by adding an "override"-xml for the language you want to support to your editors. My EpiserverOverrides.xml:
Another heads up if using interfaces for AllowedTypes
For grouping common blocks for AllowedTypes one needs to make sure that the interface used inherits from IContentData since the Select Content-feature calls GetChildren which has a generic constraint on IContentData. As an example, also applied to IHeroBlock as in image from above: